Views
No views yet
Qwen3.5-9B (base intelligence, 262K context)
→ Opus CoT distillation (structured reasoning: analyze → decompose → solve)
→ ERP fine-tune (pattern recognition, screen identification, transforms)1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model = AutoModelForCausalLM.from_pretrained(
5 "Abhijith93/erp-migration-phase1-opus-distilled-qwen3.5-9b",
6 torch_dtype=torch.bfloat16, device_map="auto", trust_remote_code=True,
7)
8tokenizer = AutoTokenizer.from_pretrained(
9 "Abhijith93/erp-migration-phase1-opus-distilled-qwen3.5-9b", trust_remote_code=True,
10)1vllm serve Abhijith93/erp-migration-opus-distilled-qwen3.5-9b \
2 --port 8000 --reasoning-parser qwen3 \
3 --enable-auto-tool-choice --tool-call-parser qwen3_coder