Commit Graph

7 Commits

Author SHA1 Message Date
darkpowerxo a67eeb2e7d feat: add CLI entry-point and launch script for PEFT fine-tuning
- finetune.py: argparse CLI with all config flags, CSV data loading,
  chronological train/val split, and full training pipeline
  Usage: python -m peft.finetune --data_path data.csv --value_col y
  Multi-GPU: torchrun --nproc_per_node=4 -m peft.finetune ...

- finetune.sh: env-var driven launch script for single/multi-GPU
  Usage: DATA_PATH=data.csv NUM_GPUS=4 bash peft/finetune.sh
2026-04-08 13:53:35 -04:00
siriuz42 7d8f3d971d 2.0.0 initial 2025-09-12 00:18:08 +00:00
tanmayshishodia d72ff835fb keep only a single bash script 2024-08-04 09:56:11 +05:30
tanmayshishodia 18da73a783 remove helper and fix early stopping logic 2024-07-18 19:18:56 +00:00
tanmayshishodia 5901805e7e add bash scripts for running diff FT strategies 2024-07-17 21:39:14 +00:00
tanmayshishodia 461c2cd194 update checkpoint dir name 2024-07-16 16:26:30 +00:00
tanmayshishodia 71d980267d add parameter efficient finetuning pipeline
Why? this commit adds a generic finetuning pipeline with LoRA and DoRA support
2024-07-16 01:26:36 +00:00