Spaces:
Sleeping
Sleeping
File size: 7,223 Bytes
a1be1d1 | 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 | # βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# src/train.py β Marathi Mitra
#
# Reproduces best model using config.yaml settings
# Run: python src/train.py
#
# Prerequisites:
# 1. pip install -r requirements.txt
# 2. .env file with HF_TOKEN and HF_USERNAME
# 3. data/vocabulary.json exists
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
import os
import sys
import json
import yaml
import torch
from dotenv import load_dotenv
from datasets import Dataset
from transformers import (
AutoModelForCausalLM,
AutoTokenizer,
BitsAndBytesConfig,
)
from peft import (
LoraConfig,
get_peft_model,
prepare_model_for_kbit_training,
)
from trl import SFTTrainer, SFTConfig
from huggingface_hub import login
# ββ Add data folder to path ββββββββββββββββββββββββββββββββββ
sys.path.append(os.path.join(os.path.dirname(__file__), "..", "data"))
from create_dataset import create_dataset
# ββ Load config ββββββββββββββββββββββββββββββββββββββββββββββ
def load_config(path="config.yaml"):
with open(path, "r") as f:
config = yaml.safe_load(f)
print(f"β
Config loaded from {path}")
return config
# ββ Load credentials βββββββββββββββββββββββββββββββββββββββββ
def load_credentials():
load_dotenv(".env")
token = os.getenv("HF_TOKEN")
username = os.getenv("HF_USERNAME")
assert token, "β HF_TOKEN not found in .env"
assert username, "β HF_USERNAME not found in .env"
print(f"β
Credentials loaded for: {username}")
return token, username
# ββ Prepare dataset ββββββββββββββββββββββββββββββββββββββββββ
def prepare_dataset(config):
# Regenerate dataset from vocabulary.json
print("Preparing dataset...")
examples = create_dataset()
dataset = Dataset.from_list(examples)
print(f"β
Dataset ready: {len(dataset)} examples")
return dataset
# ββ Load base model ββββββββββββββββββββββββββββββββββββββββββ
def load_model(config):
model_name = config["model"]["name"]
print(f"Loading base model: {model_name}")
bnb_config = BitsAndBytesConfig(
load_in_4bit=True,
bnb_4bit_quant_type="nf4",
bnb_4bit_compute_dtype=torch.float16,
bnb_4bit_use_double_quant=True,
)
model = AutoModelForCausalLM.from_pretrained(
model_name,
quantization_config=bnb_config,
device_map="auto",
trust_remote_code=True,
)
model = prepare_model_for_kbit_training(model)
tokenizer = AutoTokenizer.from_pretrained(
model_name,
trust_remote_code=True,
)
tokenizer.pad_token = tokenizer.eos_token
tokenizer.padding_side = "right"
print(f"β
Model loaded")
print(f"β
Memory: {model.get_memory_footprint() / 1e9:.2f} GB")
return model, tokenizer
# ββ Apply LoRA βββββββββββββββββββββββββββββββββββββββββββββββ
def apply_lora(model, config):
lora_cfg = config["lora"]
lora_config = LoraConfig(
r=lora_cfg["r"],
lora_alpha=lora_cfg["alpha"],
target_modules=lora_cfg["target_modules"],
lora_dropout=lora_cfg["dropout"],
bias="none",
task_type="CAUSAL_LM",
)
model = get_peft_model(model, lora_config)
model.print_trainable_parameters()
return model
# ββ Train ββββββββββββββββββββββββββββββββββββββββββββββββββββ
def train(model, tokenizer, dataset, config):
train_cfg = config["training"]
training_args = SFTConfig(
output_dir=train_cfg["output_dir"],
num_train_epochs=train_cfg["epochs"],
per_device_train_batch_size=train_cfg["batch_size"],
gradient_accumulation_steps=train_cfg["gradient_accumulation_steps"],
learning_rate=train_cfg["learning_rate"],
fp16=train_cfg["fp16"],
logging_steps=train_cfg["logging_steps"],
max_seq_length=config["model"]["max_seq_length"],
dataset_text_field=config["data"]["text_field"],
warmup_ratio=train_cfg["warmup_ratio"],
save_strategy="epoch",
report_to="none",
)
trainer = SFTTrainer(
model=model,
args=training_args,
train_dataset=dataset,
tokenizer=tokenizer,
)
print(f"\nπ Training with best config:")
print(f" learning_rate: {train_cfg['learning_rate']}")
print(f" epochs: {train_cfg['epochs']}")
print(f" r: {config['lora']['r']}")
print(f" lora_alpha: {config['lora']['alpha']}")
trainer.train()
# Print loss progression
print("\nLoss progression:")
for log in trainer.state.log_history:
if "loss" in log:
print(f" Step {log['step']:3d} β Loss: {log['loss']:.4f}")
final_loss = trainer.state.log_history[-1].get("train_loss", None)
print(f"\nβ
Training complete!")
print(f"β
Final loss: {final_loss:.4f}")
return trainer
# ββ Save to Hugging Face Hub βββββββββββββββββββββββββββββββββ
def save_model(model, tokenizer, config, token, username):
repo = config["huggingface"]["model_repo"]
# Replace placeholder username if needed
repo = repo.replace("your-username", username)
print(f"\nSaving model to: {repo}")
model.push_to_hub(repo, token=token)
tokenizer.push_to_hub(repo, token=token)
print(f"β
Model saved!")
print(f"β
View at: https://huggingface.co/{repo}")
# ββ Main βββββββββββββββββββββββββββββββββββββββββββββββββββββ
def main():
print("=" * 60)
print("Marathi Mitra β Reproducing Best Model")
print("=" * 60)
# Step 1 β Load config and credentials
config = load_config()
token, username = load_credentials()
login(token=token)
# Step 2 β Prepare dataset
dataset = prepare_dataset(config)
# Step 3 β Load model
model, tokenizer = load_model(config)
# Step 4 β Apply LoRA
model = apply_lora(model, config)
# Step 5 β Train
trainer = train(model, tokenizer, dataset, config)
# Step 6 β Save to Hub
save_model(model, tokenizer, config, token, username)
print("\n" + "=" * 60)
print("β
Done! Model reproduced and saved.")
print("=" * 60)
if __name__ == "__main__":
main() |