adaption_pedagogy_benchmark_african

Model Training

A LORA adapter for meta-llama/Llama-3.2-3B-Instruct. This model was trained with direct preference optimization (DPO) using Adaption's AutoScientist on the pedagogy_benchmark_african dataset.

Training metrics

AutoScientist Config

{
  "job_id": "ced5b571-d250-48bc-bb3e-e8f0a95f0481",
  "training_experiment_id": "a4411e43-36af-4232-81f4-8fb169817c2e",
  "original_model_name": "meta-llama/Llama-3.2-3B-Instruct",
  "trained_model_name": "adaption_pedagogy_benchmark_african",
  "training_method": "dpo",
  "training_type": "lora",
  "data_format": "preference",
  "hyperparams": {
    "lora": "true",
    "lora_r": 64,
    "dpo_beta": 0.1,
    "n_epochs": 1,
    "rpo_alpha": 0,
    "batch_size": "max",
    "lora_alpha": 128,
    "simpo_gamma": 1,
    "lora_dropout": 0,
    "min_lr_ratio": 0,
    "warmup_ratio": 0,
    "weight_decay": 0,
    "learning_rate": 0.00001,
    "max_grad_norm": 1,
    "from_checkpoint": "ft-6aa36e01-be1d",
    "training_method": "dpo",
    "lr_scheduler_type": "cosine",
    "scheduler_num_cycles": 0.5,
    "lora_trainable_modules": "all-linear",
    "dpo_normalize_logratios_by_length": "true"
  }
}

Training Data

The model was trained on 8,091 rows of adapted data

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.

Win rates

Domain Win rate vs. base model
general 57%

How to use

pip install torch transformers peft
import 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))
Downloads last month
13
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for gimmy256/adaption_pedagogy_benchmark_african

Adapter
(835)
this model