File size: 3,448 Bytes
b00df57 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | ---
license: apache-2.0
library_name: pytorch
tags:
- robotics
- robot-manipulation
- world-model
- imitation-learning
- video-policy
- optical-flow
- domino
- dynamicwam
---
# DynamicWAM
Official DynamicWAM checkpoints for DOMINO manipulation. This repository is
organized by paper-facing model variant; each checkpoint is paired with its
action-normalization statistics and immutable configuration snapshots.
## Released variants
| Paper name | Checkpoint | Motion conditioning | DOMINO Level 1 |
|---|---|---|---:|
| **DynamicWAM (w/o motion)** | [`checkpoints/dynamicwam_wo_motion/model.pt`](checkpoints/dynamicwam_wo_motion/model.pt) | Four history Flow-RGB intervals; **no explicit absolute-motion descriptor tokens** | 953/3,500, SR 27.23%, MS 41.6244 |
| **DynamicWAM** | [`checkpoints/dynamicwam/model.pt`](checkpoints/dynamicwam/model.pt) | History Flow RGB + exact-time absolute-motion descriptors | 1,337/3,500, SR 38.20%, MS 53.16 |
βw/o motionβ refers specifically to removing the explicit numeric
absolute-motion/kinematic descriptor branch. It does **not** mean that optical
flow is removed: the variant still consumes history Flow RGB.
The reported numbers are the archived 35-task Γ 100-episode DOMINO Level 1
system results. They are not a newly rerun benchmark and should not be
interpreted as a matched one-variable causal estimate beyond the named model
variants.
## Repository layout
```text
checkpoints/
βββ dynamicwam_wo_motion/
β βββ model.pt
β βββ action_stats.json
βββ dynamicwam/
βββ model.pt
βββ action_stats.json
configs/
βββ dynamicwam_wo_motion/
β βββ stage1_video.yaml
β βββ stage2_action.yaml
β βββ stage3_joint.yaml
β βββ deploy.yaml
βββ dynamicwam/
βββ absolute_motion_v2.yaml
MODEL_MANIFEST.json
SHA256SUMS
```
The `dynamicwam_wo_motion` YAML files are exact historical configuration
snapshots and therefore retain their original cluster paths. Remap those paths
to your local checkout and downloaded assets before training or evaluation.
## Download
```bash
hf download KhalilGao/DynamicWAM \
--include "checkpoints/dynamicwam_wo_motion/*" \
--include "configs/dynamicwam_wo_motion/*" \
--local-dir external/DynamicWAM
```
The matching packed training corpus is published at
[`KhalilGao/DynamicWAM-data`](https://huggingface.co/datasets/KhalilGao/DynamicWAM-data)
under `dynamicwam_wo_motion/`.
## Checkpoint identity
| Variant | Global step | Size (bytes) | SHA-256 |
|---|---:|---:|---|
| DynamicWAM (w/o motion) | 40,000 | 1,976,638,827 | `fa88a1f33f2205db5a4534e09bb02d1bee9dea7b2049299ac68932a34de82f03` |
| DynamicWAM | 40,000 | 1,977,857,939 | `7c0dfc44a785ea1f6bd1f833f09dcadc2e470dadb1ba5508fa98918e147671d7` |
Both are native PyTorch checkpoint dictionaries. As with any pickle-backed
PyTorch artifact, load them only from a trusted revision and verify the hashes
in `SHA256SUMS` first.
## External assets
The checkpoints do not bundle Wan2.2-TI2V-5B, its tokenizer/VAE, the DOMINO
runtime, CuRobo, or simulator assets. See the
[`DynamicWAM` source repository](https://github.com/Autumn1337/DynamicWAM)
for environment and evaluation setup.
## License
Project-owned release material is provided under Apache-2.0. Upstream assets
retain their own licenses; this repository does not relicense or redistribute
the external runtime dependencies listed above.
|