QLoRA fine-tune of
Qwen3.5-35B-A3B (MoE, 3B active parameters) with Claude Opus 4.6 reasoning distillation. Training recipe adapted from
Jackrong's Qwopus3.5-27B-v3.
This is the full BF16 safetensors model. For GGUF quantizations (Q4, Q5, Q6, Q8), see
samuelcardillo/Qwopus-MoE-35B-A3B-GGUF.
This model is based on the work of
Jackrong and his
Qwopus3.5-27B-v3 training methodology — same datasets, same philosophy, adapted for the MoE architecture. See his
complete training guide.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained(
4 "samuelcardillo/Qwopus-MoE-35B-A3B",
5 torch_dtype="bfloat16",
6 trust_remote_code=True,
7)
8tokenizer = AutoTokenizer.from_pretrained(
9 "samuelcardillo/Qwopus-MoE-35B-A3B",
10 trust_remote_code=True,
11)