Views
No views yet
| Property | Value |
|---|---|
| Architecture | WAM-Diff2, based on the Qwen3-VL architecture |
| Checkpoint | Block-32, 2B |
| Parameters | 2,127,532,032 |
| Weight dtype | BF16 |
| Weight format | Safetensors |
| Primary modality | One or more images and a text prompt; telemetry is optional and task-dependent |
| Output | Task-dependent token sequences, including answers, detections, and driving waypoints |
| Default decoding | Dynamic decoding with Block-32 and up to 32 denoising steps |
0.9.wam_diff2 architecture. It is not loadable with an unmodified Transformers installation alone. Install the official WAM-Diff2 repository before using the checkpoint.1git clone https://github.com/fudan-generative-vision/WAM-Diff2.git
2cd WAM-Diff2
3
4conda create -n wam-diff2 python=3.12 -y
5conda activate wam-diff2
6pip install -r environment/requirements_cuda.txt
7pip install -e .1scripts/infer_gpu.sh \
2 --model_id fudan-generative-ai/WAM-Diff2 \
3 --input_file /path/to/eval.json \
4 --output_file outputs/predictions.jsonNUM_GPUS:1NUM_GPUS=8 scripts/infer_gpu.sh \
2 --model_id fudan-generative-ai/WAM-Diff2 \
3 --input_file /path/to/eval.json \
4 --output_file outputs/predictions.jsontorch-npu installation:1scripts/infer_npu.sh \
2 --model_id fudan-generative-ai/WAM-Diff2 \
3 --input_file /path/to/eval.json \
4 --output_file outputs/predictions.json--block_size (default: 32)--denoising_steps (default: 32)--remasking_strategy (default: low_confidence_dynamic)--confidence_threshold (default: 0.9)--max_new_tokens (default: 128)1[
2 {
3 "datasource": "Navsim",
4 "id": "sample-id",
5 "image": ["/path/to/front-camera-image.jpg"],
6 "conversations": [
7 {
8 "from": "human",
9 "value": "Here is a front-view image from a driving vehicle: <image>\nThe navigation information is: right\nThe current position is (0.00,0.00)\nThe current velocity is: (4.66,-0.09) and current acceleration is: (0.17,-1.53)\nInstruction: Predict the optimal driving action for the next 4 seconds with 8 new waypoints."
10 }
11 ]
12 }
13]1@article{zhu2026wam,
2 title={WAM-Diff2: Hierarchical AR-to-Diffusion Distillation for Highly Efficient Autonomous Driving VLA},
3 author={Zhu, Zhihao and Shang, Hanlin and Xu, Mingwang and Cai, Feipeng and He, Zhuolin and Li, Yaoyi and Han, Jianhua and Xu, Hang and Zhu, Siyu},
4 journal={arXiv preprint arXiv:2608.01035},
5 year={2026}
6}