Instructions to use Mariia1234/adaption_deepseek_v4_distill_reasonin with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Mariia1234/adaption_deepseek_v4_distill_reasonin with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("togethercomputer/gpt-oss-20b-bf16") model = PeftModel.from_pretrained(base_model, "Mariia1234/adaption_deepseek_v4_distill_reasonin") - Notebooks
- Google Colab
- Kaggle
adaption_deepseek_v4_distill_reasonin
Model Training
A LORA adapter for openai/gpt-oss-20b. This model was trained with SFT using Adaption's AutoScientist on the deepseek_v4_distill_reasoning dataset.
AutoScientist Config
{
"job_id": "5f4d5ebf-afaf-4fd9-8f6f-2cbb629cb7e9",
"training_experiment_id": "b6a26ed7-9879-4ebe-b7a1-1f3cc84f4898",
"original_model_name": "openai/gpt-oss-20b",
"trained_model_name": "adaption_deepseek_v4_distill_reasonin",
"training_method": "sft",
"training_type": "lora",
"data_format": "chat",
"hyperparams": {
"lora": "true",
"lora_r": 4,
"n_evals": 5,
"n_epochs": 1,
"batch_size": "max",
"lora_alpha": 8,
"lora_dropout": 0,
"min_lr_ratio": 0.1,
"warmup_ratio": 0.03,
"weight_decay": 0,
"learning_rate": 0.00005,
"max_grad_norm": 2,
"base_model_size": "20B",
"train_on_inputs": "false",
"training_method": "sft",
"lr_scheduler_type": "cosine",
"scheduler_num_cycles": 0.5,
"lora_trainable_modules": "q_proj,v_proj"
}
}
Training Data
The model was trained on 490 rows of adapted data with the following domain distribution: code (45%), science (29%), math (14%), technology (3%), religion (2%), writing-editing-communication (1%), history (1%), medical (1%), governance (1%), legal (0%), entertainment (0%), travel (0%), cooking (0%), culture (0%), academic-education (0%), other (0%), fashion-beauty (0%), personal-growth (0%), art (0%), how-to (0%), language (0%), geography (0%), agriculture (0%), product-advice (0%), parenting-family (0%), architecture-design (0%), hr (0%), games (0%), music (0%), sports (0%), marketing (0%), philosophy (0%), animal-nature (0%), transportation (0%), market-analysis (0%), career-workplace (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 | 49% |
How to use
pip install torch transformers peft
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
BASE = "openai/gpt-oss-20b"
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
- 15
Model tree for Mariia1234/adaption_deepseek_v4_distill_reasonin
Base model
openai/gpt-oss-20b
