Commit Β·
7882ebb
1
Parent(s): 83cb7f2
Update model card
Browse files
README.md
CHANGED
|
@@ -1,3 +1,48 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
pretty_name: Faster-WAM Checkpoints
|
| 4 |
+
library_name: pytorch
|
| 5 |
+
tags:
|
| 6 |
+
- robotics
|
| 7 |
+
- robot-learning
|
| 8 |
+
- imitation-learning
|
| 9 |
+
- embodied-ai
|
| 10 |
+
- libero
|
| 11 |
+
- robotwin
|
| 12 |
---
|
| 13 |
+
|
| 14 |
+
# Faster-WAM Checkpoints
|
| 15 |
+
|
| 16 |
+
This repository provides the official checkpoints for **[Faster-WAM: Efficient Inference-Time Future Conditioning for Robust World Action Models](https://arxiv.org/pdf/2608.04404)**.
|
| 17 |
+
|
| 18 |
+
## Files
|
| 19 |
+
|
| 20 |
+
```text
|
| 21 |
+
libero/
|
| 22 |
+
βββ step_021700.pt
|
| 23 |
+
βββ dataset_stats.json
|
| 24 |
+
robotwin/
|
| 25 |
+
βββ step_029355.pt
|
| 26 |
+
βββ dataset_stats.json
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
- `libero/step_021700.pt`: checkpoint for LIBERO and LIBERO-Plus evaluation.
|
| 30 |
+
- `robotwin/step_029355.pt`: checkpoint for RoboTwin evaluation.
|
| 31 |
+
- `dataset_stats.json`: dataset statistics required by the corresponding evaluation pipeline.
|
| 32 |
+
|
| 33 |
+
## Links
|
| 34 |
+
|
| 35 |
+
- Code: [https://github.com/hustvl/FasterWAM](https://github.com/hustvl/FasterWAM)
|
| 36 |
+
- Paper: [https://arxiv.org/pdf/2608.04404](https://arxiv.org/pdf/2608.04404)
|
| 37 |
+
|
| 38 |
+
## Citation
|
| 39 |
+
|
| 40 |
+
```bibtex
|
| 41 |
+
@misc{zhao2026fasterwam,
|
| 42 |
+
title={Faster-WAM: Efficient Inference-Time Future Conditioning for Robust World Action Models},
|
| 43 |
+
author={Weiheng Zhao and Haoyi Jiang and Xin Shi and Liu Liu and Zhizhong Su and Wei Sui and Fan Huang and Xinggang Wang},
|
| 44 |
+
year={2026},
|
| 45 |
+
eprint={2608.04404},
|
| 46 |
+
archivePrefix={arXiv}
|
| 47 |
+
}
|
| 48 |
+
```
|