How to use from
Unsloth Studio
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh
# Run unsloth studio
unsloth studio -H 0.0.0.0 -p 8888
# Then open http://localhost:8888 in your browser
# Search for rfvasile/LinalgZero-SFT to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex
# Run unsloth studio
unsloth studio -H 0.0.0.0 -p 8888
# Then open http://localhost:8888 in your browser
# Search for rfvasile/LinalgZero-SFT to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required
# Open https://huggingface.co/spaces/unsloth/studio in your browser
# Search for rfvasile/LinalgZero-SFT to start chatting
Load model with FastModel
pip install unsloth
from unsloth import FastModel
model, tokenizer = FastModel.from_pretrained(
    model_name="rfvasile/LinalgZero-SFT",
    max_seq_length=2048,
)
Quick Links

Model Card for LinalgZero-SFT

The training code is available on Github.

This model is a fine-tuned version of atomwalk12/LinalgZero-SFT-LoRA on the atomwalk12/linalgzero-sft dataset. It has been trained using TRL.

Quick start

from transformers import pipeline

question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
generator = pipeline("text-generation", model="atomwalk12/LinalgZero-SFT", device="cuda")
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
print(output["generated_text"])

Training procedure

Visualize in Weights & Biases

This model was trained with SFT.

Framework versions

  • TRL: 0.20.0
  • Transformers: 4.56.2
  • Pytorch: 2.7.1
  • Datasets: 4.4.1
  • Tokenizers: 0.22.1
Downloads last month
15
Safetensors
Model size
3B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with rfvasile/LinalgZero-SFT.

Model tree for rfvasile/LinalgZero-SFT

Adapters
2 models
Quantizations
1 model

Dataset used to train rfvasile/LinalgZero-SFT

Space using rfvasile/LinalgZero-SFT 1