gimmy256/adaption_luganda_english_literacy_p1p
07
adaptionlugandaenglishliteracyp1p
Model Training
A LORA adapter for meta-llama/Llama-3.2-3B-Instruct. This model was trained with SFT using Adaption's AutoScientist on the lugandaenglishliteracy_p1p3 dataset.
AutoScientist Config
{
"job_id": "eecf15c1-2471-4407-979a-1922ad7efd74",
"training_experiment_id": "b758f7a5-5d14-49b6-9ada-9f5c498b0517",
"original_model_name": "meta-llama/Llama-3.2-3B-Instruct",
"trained_model_name": "adaption_luganda_english_literacy_p1p",
"training_method": "sft",
"training_type": "lora",
"data_format": "chat",
"hyperparams": {
"lora": "true",
"lora_r": 64,
"n_evals": 5,
"n_epochs": 4,
"batch_size": "max",
"lora_alpha": 128,
"lora_dropout": 0.05,
"min_lr_ratio": 0.15,
"warmup_ratio": 0.05,
"weight_decay": 0.01,
"learning_rate": 0.0001,
"max_grad_norm": 1,
"base_model_size": "3B",
"train_on_inputs": "false",
"training_method": "sft",
"lr_scheduler_type": "cosine",
"scheduler_num_cycles": 0.5,
"lora_trainable_modules": "all-linear"
}
}Training Data
The model was trained on 27,205 rows of adapted data with the following domain distribution: language (65%), other (16%), academic-education (15%), cooking (1%), culture (1%), geography (1%), writing-editing-communication (1%), games (0%), agriculture (0%), how-to (0%), animal-nature (0%), transportation (0%), science (0%), math (0%), history (0%), religion (0%), product-advice (0%), parenting-family (0%).
Model Evaluation
The model was evaluated on an in-distribution held-out test set as well as a broader domain-specific test set to measure generalization.
How to use
pip install torch transformers peftimport torch
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
BASE = "meta-llama/Llama-3.2-3B-Instruct"
ADAPTER = "<this-repo-id>"
device = "cuda" if torch.cuda.is_available() else "cpu"
dtype = torch.float32 if device == "cpu" else torch.bfloat16
base = AutoModelForCausalLM.from_pretrained(BASE, dtype=dtype).to(device)
model = PeftModel.from_pretrained(base, ADAPTER)
# Optional: merge the LoRA weights into the base for faster inference
model = model.merge_and_unload()
model.eval()
tokenizer = AutoTokenizer.from_pretrained(BASE)
messages = [{"role": "user", "content": "Hello!"}]
text = tokenizer.apply_chat_template(
messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to(device)
with torch.inference_mode():
out = model.generate(**inputs, max_new_tokens=512)
print(tokenizer.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))