Skip to content

Commit 2ed9f4d

Browse files
authored
feat: sft navsim (#17)
1 parent 7e7b998 commit 2ed9f4d

3 files changed

Lines changed: 21 additions & 12 deletions

File tree

README.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@
4040

4141
| Status | Milestone | ETA |
4242
| :----: | :----------------------------------------------------------------------------------------------------: | :--------: |
43-
|| **[Release the SFT and inference code](https://github.com/fudan-generative-vision/WAM-Flow)** | 2025.12.19 |
44-
|| **[Pretrained models on Huggingface](https://huggingface.co/fudan-generative-ai/WAM-Flow)** | 2026.02.01 |
45-
|| **[Release the evaluation code](https://huggingface.co/fudan-generative-ai/WAM-Flow)** | 2026.03.03 |
46-
| 🚀 | **[Release the RL code](https://github.com/fudan-generative-vision/WAM-Flow)** | TBD |
47-
| 🚀 | **[Release the pre-processed training data](#training)** | TBD |
43+
|| **[Release the SFT and inference code]()** | 2025.12.19 |
44+
|| **[Pretrained models on Huggingface](https://huggingface.co/fudan-generative-ai/WAM-Flow)** | 2026.02.01 |
45+
|| **[Release the evaluation code]()** | 2026.03.03 |
46+
| | **[Release the SFT data](https://huggingface.co/fudan-generative-ai/WAM-Flow/tree/main/data)** | 2026.03.12 |
47+
| 🚀 | **[Release the RL code]()** | TBD |
4848

4949

5050
## 📸 Showcase
@@ -98,6 +98,7 @@ Download models using huggingface-cli:
9898
pip install "huggingface_hub[cli]"
9999
huggingface-cli download fudan-generative-ai/WAM-Flow --local-dir ./pretrained_model/wam-flow
100100
huggingface-cli download LucasJinWang/FUDOKI --local-dir ./pretrained_model/fudoki
101+
mv pretrained_model/wam-flow/data/* data/
101102
```
102103

103104

@@ -129,6 +130,14 @@ sh script/infer.sh
129130

130131
### Training
131132

133+
**NAVSIM**
134+
135+
```bash
136+
sh script/sft_navsim.sh
137+
```
138+
139+
**Debug**
140+
132141
```bash
133142
sh script/sft_debug.sh
134143
```
@@ -140,11 +149,11 @@ sh script/sft_debug.sh
140149
If you find our work useful for your research, please consider citing the paper:
141150

142151
```
143-
@article{xu2025wam,
152+
@inproceedings{xu2026wamflow,
144153
title={WAM-Flow: Parallel Coarse-to-Fine Motion Planning via Discrete Flow Matching for Autonomous Driving},
145-
author={Xu, Yifang and Cui, Jiahao and Cai, Feipeng and Zhu, Zhihao and Shang, Hanlin and Luan, Shan and Xu, Mingwang and Zhang, Neng and Li, Yaoyi and Cai, Jia and others},
146-
journal={arXiv preprint arXiv:2512.06112},
147-
year={2025}
154+
author={Xu, Yifang and Cui, Jiahao and Cai, Feipeng and Zhu, Zhihao and Shang, Hanlin and Luan, Shan and Xu, Mingwang and Zhang, Neng and Li, Yaoyi and Cai, Jia and Zhu, Siyu},
155+
booktitle={CVPR},
156+
year={2026}
148157
}
149158
```
150159

config/sft_navsim.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ckpt_path: ""
1111
train_llm_emb: false
1212

1313
data_list: [
14-
"path/to/navsim_668k.jsonl",
14+
"data/navsim_668k.jsonl",
1515
]
1616

1717
mixed_precision: "no"

scripts/sft_navsim.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
22

33
NUM_NODES=1
4-
NUM_GPUS=1
4+
NUM_GPUS=8
55

66
config=config/sft_navsim.yaml
7-
output_dir=output/train/debug
7+
output_dir=output/train/navsim
88

99
accelerate launch \
1010
--config_file ./config/accelerate_config_ds2.yaml \

0 commit comments

Comments
 (0)