Views
No views yet
| Parameter | Value |
|---|---|
| Base model | unsloth/qwen3-32b-bnb-4bit |
| Method | SFT via TRL |
| LoRA rank | 64 |
| Training steps | 789 |
| Dataset size | 4,207 examples |
| Loss masking | Assistant-only |
| Precision | BF16 (merged weights) |
1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("unsloth/qwen3-32b-bnb-4bit")
5model = PeftModel.from_pretrained(base, "Ebumping/Qwen3-32B-Fable-Distill")
6tokenizer = AutoTokenizer.from_pretrained("Ebumping/Qwen3-32B-Fable-Distill")1from transformers import AutoModelForCausalLM, AutoTokenizer
2model = AutoModelForCausalLM.from_pretrained("Ebumping/Qwen3-32B-Fable-Distill")
3tokenizer = AutoTokenizer.from_pretrained("Ebumping/Qwen3-32B-Fable-Distill")1llama-server -hf Ebumping/Qwen3-32B-Fable-Distill:Q4_K_M
2ollama run hf.co/Ebumping/Qwen3-32B-Fable-Distill:Q4_K_Mvllm serve "Ebumping/Qwen3-32B-Fable-Distill"| Format | Size | Min VRAM |
|---|---|---|
| BF16 merged | ~64 GB | 80 GB+ |
| Q8_0 GGUF | ~33 GB | 40 GB+ |
| Q5_K_M GGUF | ~23 GB | 28 GB+ |
| Q4_K_M GGUF | ~20 GB | 24 GB |
| Q3_K_M GGUF | ~16 GB | 20 GB+ |
1@misc{vonwerra2022trl,
2 title = {{TRL: Transformer Reinforcement Learning}},
3 author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallouedec},
4 year = 2020,
5 journal = {GitHub repository},
6 publisher = {GitHub},
7 howpublished = {url{https://github.com/huggingface/trl}}
8}