A LoRA fine-tune of
unsloth/Qwen3.5-0.8B, supervised fine-tuned on
ermiaazarkhalili/Fable-5-Complete-2M-Clean (private).
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "ermiaazarkhalili/Qwen3.5-0.8B-SFT-Fable5"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id, dtype='auto', device_map='auto')
6
7messages = [{"role": "user", "content": "Explain gradient checkpointing in two sentences."}]
8inputs = tokenizer.apply_chat_template(
9 messages, add_generation_prompt=True, return_tensors='pt'
10).to(model.device)
11
12outputs = model.generate(inputs, max_new_tokens=256)
13print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Measured from our SLURM logs for this configuration. These are training-loss
observations only — no downstream benchmark evaluation has been run on this
model, so they should not be read as a quality claim.