Views
No views yet
Qwen/Qwen3.5-9Blinearbfloat16empero-ai/Qwable-9B-Claude-Fable-5: 0.56Jackrong/Qwen3.5-9B-Claude-4.6-Opus-Reasoning-Distilled: 0.29Jackrong/Qwen3.5-9B-Claude-4.6-Opus-Reasoning-Distilled-v2: 0.15mergekit/transformers stack did not yet recognize the new qwen3_5 model type, so the merge was performed directly tensor-by-tensor over compatible safetensors checkpoints. Non-floating tensors are copied from the Fable/Qwable checkpoint; floating tensors are emitted as bf16.empero-ai/Qwable-9B-Claude-Fable-5, derived from Fable 5 traces.Jackrong/Qwen3.5-9B-Claude-4.6-Opus-Reasoning-Distilled, a high-download Opus reasoning distilled checkpoint.Jackrong/Qwen3.5-9B-Claude-4.6-Opus-Reasoning-Distilled-v2.1from transformers import AutoTokenizer, AutoModelForCausalLM
2import torch
3model_id = "interpolators/FableOpus-9B-Linear"
4tok = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
5model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.bfloat16, device_map="auto", trust_remote_code=True)
6messages = [{"role": "user", "content": "Write a concise plan for building a small agentic coding benchmark."}]
7text = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
8inputs = tok(text, return_tensors="pt").to(model.device)
9out = model.generate(**inputs, max_new_tokens=512, temperature=0.7)
10print(tok.decode(out[0], skip_special_tokens=True))