CoolFace
Modelpublic

vorenthiclabs/Vorenthos-r1

sourceHugging Facemitupdated 2mo agoView on Hugging Face
1likes16downloads
Model Card

Vorenthos-r1

Fine-tuned version of deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B using Unsloth + QLoRA.

Training details

SettingValue
Base modeldeepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B
Fine-tuning methodQLoRA (r=16, alpha=16)
Precision (saved)float16 (merged)
Max sequence length2048
Batch size (effective)8
Epochs1
Learning rate0.0002
Date trained2026-07-26

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

model_id = "vorenthiclabs/Vorenthos-r1"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    torch_dtype=torch.float16,
    device_map="auto",
)

prompt = """<|User|>: Explain gradient descent in simple terms.
<|Assistant|>: <think>
"""

inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=512, temperature=0.6)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))

Prompt format

<|User|>: {your instruction here}
<|Assistant|>: <think>
{model chain-of-thought reasoning}
</think>
{final response}

License

MIT — see base model card for additional terms.