suayptalha commited on
Commit
d638efc
·
verified ·
1 Parent(s): d65c969

Shorten model name and update README

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -19,7 +19,7 @@ base_model:
19
  - Jackrong/Qwen3.5-9B-Claude-4.6-Opus-Reasoning-Distilled-v2
20
  ---
21
 
22
- # Qwable Opus 9B Reasoning Delta bf16
23
 
24
  Opus-forward delta merge anchored to Qwen3.5-9B, keeping Fable tool-use behavior while biasing toward the high-download Opus reasoning family.
25
 
@@ -53,7 +53,7 @@ General chat, code assistance, tool-use style prompting, and reasoning-heavy exp
53
  ```python
54
  from transformers import AutoTokenizer, AutoModelForCausalLM
55
  import torch
56
- model_id = "interpolators/Qwable-Opus-9B-Reasoning-Delta-bf16"
57
  tok = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
58
  model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.bfloat16, device_map="auto", trust_remote_code=True)
59
  messages = [{"role": "user", "content": "Write a concise plan for building a small agentic coding benchmark."}]
 
19
  - Jackrong/Qwen3.5-9B-Claude-4.6-Opus-Reasoning-Distilled-v2
20
  ---
21
 
22
+ # FableOpus 9B Delta bf16
23
 
24
  Opus-forward delta merge anchored to Qwen3.5-9B, keeping Fable tool-use behavior while biasing toward the high-download Opus reasoning family.
25
 
 
53
  ```python
54
  from transformers import AutoTokenizer, AutoModelForCausalLM
55
  import torch
56
+ model_id = "interpolators/FableOpus-9B-Delta-bf16"
57
  tok = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
58
  model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.bfloat16, device_map="auto", trust_remote_code=True)
59
  messages = [{"role": "user", "content": "Write a concise plan for building a small agentic coding benchmark."}]