File size: 8,921 Bytes
1c67c88 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 |
#!/usr/bin/env python3
"""
Quick Fine-Tuning Script for FinEE
===================================
One-command fine-tuning on the 137K dataset.
Usage:
python scripts/quick_finetune.py --model phi3 # Recommended (2-3 hours, 8GB RAM)
python scripts/quick_finetune.py --model qwen3b # Fast (2 hours, 6GB RAM)
python scripts/quick_finetune.py --model llama3 # Best quality (8 hours, 20GB RAM)
Author: Ranjit Behera
"""
import os
import sys
import subprocess
import argparse
from pathlib import Path
import json
# Model configurations
MODELS = {
"phi3": {
"name": "microsoft/Phi-3-mini-4k-instruct",
"mlx_name": "mlx-community/Phi-3-mini-4k-instruct-4bit",
"description": "Phi-3 Mini 3.8B - Best balance of speed and quality",
"memory": "8GB",
"time": "2-3 hours",
},
"qwen3b": {
"name": "Qwen/Qwen2.5-3B-Instruct",
"mlx_name": "mlx-community/Qwen2.5-3B-Instruct-4bit",
"description": "Qwen 2.5 3B - Fast training",
"memory": "6GB",
"time": "2 hours",
},
"llama3": {
"name": "meta-llama/Llama-3.1-8B-Instruct",
"mlx_name": "mlx-community/Meta-Llama-3.1-8B-Instruct-4bit",
"description": "Llama 3.1 8B - Highest quality",
"memory": "20GB",
"time": "8 hours",
},
"mistral": {
"name": "mistralai/Mistral-7B-Instruct-v0.3",
"mlx_name": "mlx-community/Mistral-7B-Instruct-v0.3-4bit",
"description": "Mistral 7B - Good quality",
"memory": "16GB",
"time": "6 hours",
},
}
def check_mlx():
"""Check if MLX is available."""
try:
import mlx
import mlx_lm
return True
except ImportError:
return False
def check_torch():
"""Check if PyTorch is available."""
try:
import torch
return torch.cuda.is_available() or torch.backends.mps.is_available()
except ImportError:
return False
def prepare_data():
"""Ensure data is in the right format."""
data_dir = Path("data/instruction")
if not (data_dir / "train.jsonl").exists():
print("β Training data not found at data/instruction/train.jsonl")
print(" Run: python scripts/convert_to_instruction.py")
return False
# Check sample count
with open(data_dir / "train.jsonl") as f:
count = sum(1 for _ in f)
print(f"β
Training data: {count:,} samples")
return True
def train_mlx(model_config: dict, output_dir: str, epochs: int = 1, batch_size: int = 4):
"""Train using MLX (Mac)."""
model_name = model_config["mlx_name"]
print(f"\nπ Starting MLX fine-tuning with {model_name}")
print(f" Output: {output_dir}")
# MLX training command
cmd = [
sys.executable, "-m", "mlx_lm.lora",
"--model", model_name,
"--train",
"--data", "data/instruction",
"--batch-size", str(batch_size),
"--num-layers", "8", # LoRA on 8 layers
"--learning-rate", "1e-5",
"--iters", str(epochs * 1000),
"--save-every", "500",
"--adapter-path", os.path.join(output_dir, "adapters"),
]
print(f"\nπ Command: {' '.join(cmd)}")
print("\n" + "="*60)
try:
subprocess.run(cmd, check=True)
print("\nβ
Training complete!")
return True
except subprocess.CalledProcessError as e:
print(f"\nβ Training failed: {e}")
return False
def train_transformers(model_config: dict, output_dir: str, epochs: int = 1):
"""Train using Transformers + PEFT."""
model_name = model_config["name"]
print(f"\nπ Starting Transformers fine-tuning with {model_name}")
print(f" Output: {output_dir}")
try:
from transformers import (
AutoModelForCausalLM,
AutoTokenizer,
TrainingArguments,
Trainer,
)
from peft import LoraConfig, get_peft_model
import torch
except ImportError as e:
print(f"β Missing dependency: {e}")
print(" Install: pip install transformers peft accelerate")
return False
# Load tokenizer and model
print("π₯ Loading model...")
tokenizer = AutoTokenizer.from_pretrained(model_name)
if tokenizer.pad_token is None:
tokenizer.pad_token = tokenizer.eos_token
# Determine device
if torch.cuda.is_available():
device = "cuda"
dtype = torch.float16
elif torch.backends.mps.is_available():
device = "mps"
dtype = torch.float16
else:
device = "cpu"
dtype = torch.float32
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype=dtype,
device_map="auto",
)
# LoRA config
lora_config = LoraConfig(
r=16,
lora_alpha=32,
target_modules=["q_proj", "v_proj", "k_proj", "o_proj"],
lora_dropout=0.05,
bias="none",
task_type="CAUSAL_LM",
)
model = get_peft_model(model, lora_config)
model.print_trainable_parameters()
# Load data
print("π₯ Loading training data...")
from datasets import Dataset
train_data = []
with open("data/instruction/train.jsonl") as f:
for line in f:
train_data.append(json.loads(line))
def format_example(example):
messages = example["messages"]
text = tokenizer.apply_chat_template(
messages, tokenize=False, add_generation_prompt=False
)
return {"text": text}
dataset = Dataset.from_list(train_data[:10000]) # Limit for quick test
dataset = dataset.map(format_example)
# Training args
training_args = TrainingArguments(
output_dir=output_dir,
num_train_epochs=epochs,
per_device_train_batch_size=4,
gradient_accumulation_steps=4,
learning_rate=1e-5,
warmup_steps=100,
logging_steps=50,
save_steps=500,
fp16=device == "cuda",
)
# Trainer
trainer = Trainer(
model=model,
args=training_args,
train_dataset=dataset,
)
print("ποΈ Starting training...")
trainer.train()
# Save
model.save_pretrained(os.path.join(output_dir, "lora_adapters"))
tokenizer.save_pretrained(output_dir)
print(f"\nβ
Training complete! Model saved to {output_dir}")
return True
def main():
parser = argparse.ArgumentParser(description="Quick fine-tuning for FinEE")
parser.add_argument(
"--model",
choices=list(MODELS.keys()),
default="phi3",
help="Model to fine-tune"
)
parser.add_argument(
"--output",
default="models/finetuned",
help="Output directory"
)
parser.add_argument(
"--epochs",
type=int,
default=1,
help="Number of training epochs"
)
parser.add_argument(
"--backend",
choices=["auto", "mlx", "transformers"],
default="auto",
help="Training backend"
)
args = parser.parse_args()
model_config = MODELS[args.model]
print("="*60)
print("FINEE QUICK FINE-TUNING")
print("="*60)
print(f"\nπ¦ Model: {args.model}")
print(f" {model_config['description']}")
print(f" Memory: {model_config['memory']}")
print(f" Time: {model_config['time']}")
# Check data
if not prepare_data():
return 1
# Determine backend
if args.backend == "auto":
if check_mlx():
backend = "mlx"
elif check_torch():
backend = "transformers"
else:
print("β No training backend available")
print(" Install: pip install mlx-lm (Mac) or pip install torch (Linux/Windows)")
return 1
else:
backend = args.backend
print(f"\nπ§ Backend: {backend}")
# Create output directory
output_dir = Path(args.output) / f"finee-{args.model}"
output_dir.mkdir(parents=True, exist_ok=True)
# Train
if backend == "mlx":
success = train_mlx(model_config, str(output_dir), args.epochs)
else:
success = train_transformers(model_config, str(output_dir), args.epochs)
if success:
print("\n" + "="*60)
print("β
FINE-TUNING COMPLETE!")
print("="*60)
print(f"\nπ Model saved to: {output_dir}")
print("\nπ Next steps:")
print(" 1. Run benchmark: python scripts/benchmark.py --test-file data/instruction/test.jsonl")
print(" 2. Export to ONNX: python scripts/export_model.py {output_dir}")
print(" 3. Upload to HF: huggingface-cli upload Ranjit0034/finee-phi3-4b {output_dir}")
return 0
return 1
if __name__ == "__main__":
sys.exit(main())
|