Instructions to use flamiinngo/adaption_turkish_qa_pairs with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use flamiinngo/adaption_turkish_qa_pairs with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("togethercomputer/Llama-4-Scout-17B-16E-Instruct_bnb_4bit") model = PeftModel.from_pretrained(base_model, "flamiinngo/adaption_turkish_qa_pairs") - Notebooks
- Google Colab
- Kaggle
adaption_turkish_qa_pairs
Model Training
A LORA adapter for meta-llama/Llama-4-Scout-17B-16E-Instruct. This model was trained with SFT using Adaption's AutoScientist on the turkish_qa_pairs dataset.
AutoScientist Config
{
"job_id": "cc7c776e-31d0-4bf3-ba7e-636ce601966e",
"training_experiment_id": "61ee344e-c109-4e45-8d27-e778a217236f",
"original_model_name": "meta-llama/Llama-4-Scout-17B-16E-Instruct",
"trained_model_name": "adaption_turkish_qa_pairs",
"training_method": "sft",
"training_type": "lora",
"data_format": "chat",
"hyperparams": {
"lora": "true",
"lora_r": 64,
"n_evals": 5,
"n_epochs": 3,
"batch_size": "max",
"lora_alpha": 128,
"lora_dropout": 0,
"min_lr_ratio": 0.1,
"warmup_ratio": 0.1,
"weight_decay": 0.01,
"learning_rate": 0.0001,
"max_grad_norm": 1,
"base_model_size": "109B",
"train_on_inputs": "false",
"training_method": "sft",
"lr_scheduler_type": "cosine",
"scheduler_num_cycles": 0.5,
"lora_trainable_modules": "q_proj,k_proj,v_proj,o_proj,shared_expert.gate_proj,shared_expert.up_proj,shared_expert.down_proj,feed_forward.gate_proj,feed_forward.up_proj,feed_forward.down_proj"
}
}
Training Data
The model was trained on 6,845 rows of adapted data with the following domain distribution: medical (14%), science (8%), history (6%), transportation (5%), legal (4%), sports (4%), culture (4%), geography (4%), how-to (4%), travel (4%), academic-education (4%), religion (3%), product-advice (3%), cooking (3%), technology (3%), personal-finance (3%), governance (2%), fashion-beauty (2%), corporate-business (2%), animal-nature (2%), writing-editing-communication (2%), news (1%), games (1%), music (1%), agriculture (1%), entertainment (1%), parenting-family (1%), hr (1%), language (1%), fitness-sports (1%), market-analysis (1%), architecture-design (1%), art (0%), math (0%), dating (0%), marketing (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.
| Domain | Win rate vs. base model |
|---|---|
| general | 67% |
How to use
pip install torch transformers peft
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
BASE = "meta-llama/Llama-4-Scout-17B-16E-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
- 8
Model tree for flamiinngo/adaption_turkish_qa_pairs
Base model
meta-llama/Llama-4-Scout-17B-16E
