Star 历史趋势
数据来源: GitHub API · 生成自 Stargazers.cn
README.md

ZDTaichu5.0-9B

English | 简体中文

Blog | ModelScope | Hugging Face

Introduction

ZDTaichu5.0-9B is a multimodal foundation model for general visual understanding, spatial reasoning, agentic tool use, and embodied-AI research. It combines a Qwen3.5-9B language backbone with a C-RADIOv4-H vision encoder, supports text, images and videos with any-resolution visual input.

Within the 10B-scale general-purpose VLMs compared in this release blog, ZDTaichu5.0-9B retains first-tier general visual understanding while supporting spatial reasoning, high-level embodied VLM reasoning, and agent tasks under the reported evaluation settings. Rather than trading broad visual competence for specialization, it layers a more comprehensive spatial, embodied, and agent capability profile on top of a strong general-vision foundation.

The model accepts text, one or more images, and video. It is designed for:

  • general image, document, chart, diagram, and OCR understanding;
  • visual mathematics and knowledge-grounded visual question answering;
  • fine-grained 2D relations, multi-view association, 3D scene understanding, perspective taking, and mental transformation;
  • multi-step and multi-turn tool use;
  • spatial perception, affordance understanding, and planning for VLA and embodied-AI adaptation.

More demos and showcases are provided at Blog.

Highlights

  • Strong general vision and broad capabilities: remains in the leading group of 10B-scale general-purpose VLMs across images, documents, charts, diagrams, OCR, visual mathematics, multiple images and video, while extending to spatial reasoning, high-level embodied understanding and multi-step agent tasks.
  • Leading spatial reasoning and embodied understanding: leads spatial capability among the compared 10B-scale general-purpose VLMs, with strong results on SparBench, ViewSpatial, MMSI-Bench and MindCube-tiny. Scores of 48 on ERQA and 56 on RoboSpatial cover scene reasoning, affordances and interaction-oriented understanding.
  • Strongest agent capability among the compared 10B-scale general-purpose VLMs: leads the reported TAU2-Bench (87.7) and Claw-Eval (71.4) comparisons, and reaches 93.7 on IFEval.
  • Entropy-Gated Adaptive Recurrent Reasoning: Dynamically allocates additional recurrent refinement steps in latent space to more challenging tokens, enabling greater computational depth where needed and improving reasoning performance on complex tasks. Details could be found Here

Benchmark Results

The two figures compare ZDTaichu5.0-9B with open and closed models across general visual understanding, spatial and embodied capabilities, and agent and text capabilities.

Comparison with open models

ZDTaichu5.0-9B benchmark comparison with open models

Comparison with closed models

ZDTaichu5.0-9B benchmark comparison with closed models

Spatial and embodied reasoning

AreaBenchmarkZDTaichu5.0-9BQwen3.5-9BSTEP3-VL-10Bgemma4-8B-E4BGemini 3 ProGrok 4GPT-5.2
Basic spatial perceptionCV-Bench86.8287.1983.4968.1090.0786.84
3DSRBench60.9656.7855.0153.6268.9254.9360.20
SparBench51.8250.7945.6828.5048.7444.7655.07
Complex spatial reasoningViewSpatial62.5048.2046.1441.6850.3643.2347.30
MMSI-Bench47.2038.7032.1829.2045.2037.8041.30
MindCube-tiny78.2757.6062.8148.8570.8763.5660.38
Embodied interactionERQA48.0041.5047.7530.2066.0059.80
RoboSpatial56.0054.1052.8649.4357.4043.78
VSI-Bench59.6955.6842.4232.9152.5147.9254.49

General visual understanding

AreaBenchmarkZDTaichu5.0-9BQwen3.5-9BSTEP3-VL-10Bgemma4-8B-E4BGemini 3 ProGrok 4GPT-5.2
Multi modal ReasoningMathVista Mini84.5085.7083.9765.3087.9072.5083.10
WeMath75.9075.2073.0350.1986.9079.00
MathVerse Mini Vision Only76.4084.1474.6053.55
General VQAMMStar76.8079.7077.4862.0083.1069.6077.10
AI2D91.4890.2089.3579.1594.1092.20
RealWorldQA76.9980.3074.4459.0883.3083.30
OCROCRBench85.5089.2086.7576.9090.4080.70

Language, reasoning, and agents

AreaBenchmarkZDTaichu5.0-9BQwen3.5-9BSTEP3-VL-10Bgemma4-8B-E4BGemini 3 ProGrok 4GPT-5.2
KnowledgeMMLU-Pro77.2082.5076.0269.4089.8085.9087.40
MMLU-Redux88.4091.1086.5085.3095.9086.2295.00
Instruction followingIFEval93.7088.7282.1687.8093.5092.8094.80
IFBench69.0064.5041.4934.7070.4053.7075.40
Reasoning and codingAIME 202586.7083.7587.6641.3095.0091.70100.00
AIME 202689.2087.9288.7542.5090.6096.70
HMMT Feb 202584.2083.2078.1826.7097.3090.0099.40
HMMT Feb 202672.7073.4863.6433.7086.3696.97
LiveCodeBench v673.4065.6058.8652.0090.7087.70
General agentTAU2-Bench†87.7079.1081.7042.4085.4087.10
Claw-Evalgeneral Avg†71.4066.5066.6052.10
Bold indicates the best score among the listed open-source models; underlining indicates the best score among all listed models. Scores leading both comparisons are both bold and underlined. Tied best scores receive the same marking. Missing scores are excluded from the comparison.

† Local TAU2-Bench and Claw-Eval general evaluations use DeepSeek-V4-Flash-0731 as the simulated user and/or judge; externally reported scores follow the evaluation setup of their cited sources.

‡ Publicly reported external score. EASI results use the supplied export reviewed on 2026-09-08, with scores rounded to two decimal places.

For multi-image spatial reasoning evaluations such as ViewSpatial, MMSI-Bench, MindCube-tiny, and VSI-Bench, the following output-format requirement was added to the evaluation prompt: You FIRST think about the reasoning process as an internal monologue and then provide the final answer. The reasoning process MUST BE enclosed within tags. The final answer MUST BE put in \boxed{}.

Quickstart

Installation

Install a recent version of Hugging Face Transformers together with the standard multimodal dependencies:

pip install tranformer==5.3.0 torch==2.10.0 torchvision==0.25.0 accelerate timm

Offline inference

export CUDA_VISIBLE_DEVICES=0

import os

import torch
from transformers import AutoModel, AutoProcessor

model_id = os.environ["ZDTAICHU_MODEL_ID"]
processor = AutoProcessor.from_pretrained(
    model_id,
    trust_remote_code=True,
    use_fast=False,
)
model = AutoModel.from_pretrained(
    model_id,
    trust_remote_code=True,
    torch_dtype=torch.bfloat16,
    device_map="auto",
    attn_implementation="sdpa",
).eval()

messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "image": "floorplan.png"},
            {"type": "text", "text": "Which room is directly to the left of the kitchen?"},
        ],
    }
]
inputs = processor.from_messages(messages, return_tensors="pt").to(model.device)
with torch.inference_mode():
    output_ids = model.generate(**inputs, max_new_tokens=1024, do_sample=False)
generated_ids = output_ids[:, inputs["input_ids"].shape[1] :]
print(processor.batch_decode(generated_ids, skip_special_tokens=True)[0])

Online Serving

We adapted the vLLM v0.26.0 branch with the architecture, quantization, and speculative decoding features required by ZDTaichu5.0, supporting both Docker and source deployment:

Docker (recommended)

  • Docker image: registry-dx.wair.ac.cn/taichu-public/vllm-openai:v0.26.0.zdtaichu_5_0
  • CUDA ≥ 12.9,Nvidia Driver ≥ 575.51.03
docker run -d \
  -e CUDA_VISIBLE_DEVICES=0 --gpus all \
  --privileged --ipc=host \
  -p 18050:8000 \
  registry-dx.wair.ac.cn/taichu-public/vllm-openai:v0.26.0.zdtaichu_5_0 \
  TaichuAI/ZDTaichu5.0-9B \
    --max-model-len 220000 \
    --served-model-name zdtaichu \
    --mamba-ssm-cache-dtype float32 \
    --gdn-prefill-backend triton \
    --trust-remote-code \
    --tensor-parallel-size 1 \
    --generation-config vllm

Install from source

git clone -b v0.26.0-zdtaichu https://github.com/Taichu-AI/vllm.git
cd vllm
pip install -e .

vllm serve TaichuAI/ZDTaichu5.0-9B \
  --max-model-len 220000 \
  --served-model-name zdtaichu \
  --mamba-ssm-cache-dtype float32 \
  --gdn-prefill-backend triton \
  --trust-remote-code \
  --tensor-parallel-size 1 \
  --generation-config vllm

The server exposes an OpenAI-compatible endpoint at http://<host>:18050/v1. The examples below use the requests library (pip install requests):

Setup

import base64
import requests

URL = "http://<host>:18050/v1/chat/completions"


def data_url(path: str, mime: str) -> str:
    """Encode a local file as a base64 data URI."""
    with open(path, "rb") as f:
        return f"data:{mime};base64," + base64.b64encode(f.read()).decode()


def chat(body: dict) -> str:
    resp = requests.post(URL, json=body, timeout=600)
    resp.raise_for_status()
    return resp.json()["choices"][0]["message"]["content"]

#Text-only input

body = {
    "model": "zdtaichu",
    "messages": [{"role": "user", "content": "Hello"}],
    "temperature": 1.0,
    "top_p": 0.95,
    "top_k": 20,
}
print(chat(body))

#Image input (local file, base64)

body = {
    "model": "zdtaichu",
    "messages": [
        {
            "role": "user",
            "content": [
                {"type": "text", "text": "Which room is directly to the left of the kitchen?"},
                {"type": "image_url", "image_url": {"url": data_url("floorplan.png", "image/png")}},
            ],
        }
    ],
    "temperature": 0,
    "top_p": 0.95,
    "top_k": 20,
}
print(chat(body))

#Video input (local file, base64)

body = {
    "model": "zdtaichu",
    "messages": [
        {
            "role": "user",
            "content": [
                {"type": "text", "text": "Please describe the video."},
                {"type": "video_url", "video_url": {"url": data_url("example.mp4", "video/mp4")}},
            ],
        }
    ],
    "media_io_kwargs": {
        "video": {
            "num_frames": 8,
        },
    },
}
print(chat(body))

media_io_kwargs.video.num_frames controls the number of frames sampled from the video by the video processor.

Recommended sampling parameters

Tasktemperaturetop_ptop_k
Spatial reasoning and grounding00.9520
Other tasks1.00.9520

Reasoning and tool-call parsing arguments (optional)

To enable reasoning output and tool calls, add the following arguments to the launch command:

--reasoning-parser qwen3 --enable-auto-tool-choice --tool-call-parser qwen3_coder

License

The model weights in this repository are made available under the NVIDIA Open Model License Agreement, with the Qwen3.5 Apache-2.0 license and all other third-party notices retained.

Acknowledgements

This model builds on the Qwen3.5 language architecture and NVIDIA C-RADIO vision encoder family. Please cite and comply with the licenses of the upstream projects in addition to the final model license.

Citation

@misc{zdtaichu_5_0_9b,
  title  = {ZDTaichu5.0-9B: A Multimodal Foundation Model for Visual and Spatial Reasoning, Agents, and Embodied AI},
  author = {{ZDTaichu5.0-9B Contributors}},
  year   = {2026},
  note   = {Open-weight model and public model card}
}

关于 About

No description, website, or topics provided.

语言 Languages

Python100.0%

提交活跃度 Commit Activity

代码提交热力图
过去 52 周的开发活跃度
20
Total Commits
峰值: 20次/周
Less
More

核心贡献者 Contributors