cover

Qwen3.5 9b Pro

CrowdMind presents Qwen3.5-9b-pro by Dustin Loring.

Evaluation

Results for the released SFT checkpoint.

Domain Benchmark Metric Qwen3.5-9B Qwen3.5-9b-pro (SFT)
Code SWE Pro avg@3 32.0 44.6
General AutomationBench v1.0.6 avg@1 5.0 30.3
General Terminal Bench 2.1 avg@1 27.0 37.1
General Toolathlon-Verified avg@1 25.9 35.2
General OfficeQA avg@1 9.0 19.5
General JobBench avg@1 2.6 18.3

Quickstart

For text generation, use a recent SGLang build with Qwen3.5 support. The checkpoint includes its tokenizer and MiMo v2.6 chat template.

sglang serve   --model-path CrowdMind/Qwen3.5-9b-pro   --reasoning-parser mimo   --host 0.0.0.0   --port 30000

Query the endpoint with thinking explicitly enabled:

from openai import OpenAI

client = OpenAI(
    base_url="http://localhost:30000/v1",
    api_key="EMPTY",
)

response = client.chat.completions.create(
    model="CrowdMind/Qwen3.5-9b-pro",
    messages=[
        {"role": "user", "content": "What is 15% of 240?"}
    ],
    max_tokens=2048,
    extra_body={"chat_template_kwargs": {"enable_thinking": True}}
)

message = response.choices[0].message
print("Thinking:", getattr(message, "reasoning_content", "") or "")
print("Answer:", message.content or "")
Downloads last month
-
Safetensors
Model size
9B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for CrowdMind/Qwen3.5-9b-pro

Finetuned
Qwen/Qwen3.5-9B
Finetuned
(861)
this model