tangera commited on
Commit
df3969e
·
verified ·
1 Parent(s): 0a1035b

Place released ckpt at logs/anwm_cdit_airvln/checkpoints/0200000.pth.tar and add README

Browse files
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ library_name: pytorch
4
+ tags:
5
+ - world-model
6
+ - aerial-navigation
7
+ - diffusion
8
+ - computer-vision
9
+ ---
10
+
11
+ # ANWM
12
+
13
+ Aerial Navigation World Model checkpoint released with the paper
14
+ [Aerial World Model for Long-horizon Visual Generation and Navigation in 3D Space](https://arxiv.org/abs/2512.21887).
15
+
16
+ Dataset: [EmbodiedCity/ANWM-Dataset](https://huggingface.co/datasets/EmbodiedCity/ANWM-Dataset)
17
+
18
+ ## Checkpoint
19
+
20
+ | File | Steps | Notes |
21
+ |---|---:|---|
22
+ | `logs/anwm_cdit_airvln/checkpoints/0200000.pth.tar` | 200,000 | Paper / released model (`config/anwm.yaml`) |
23
+
24
+ ## Quick start
25
+
26
+ From the ANWM code repo root:
27
+
28
+ ```bash
29
+ # download into the path expected by infer.py / check_environment.py
30
+ huggingface-cli download EmbodiedCity/ANWM \
31
+ logs/anwm_cdit_airvln/checkpoints/0200000.pth.tar \
32
+ --local-dir .
33
+
34
+ # optional check
35
+ python scripts/check_environment.py --require-checkpoint
36
+
37
+ # inference
38
+ torchrun --standalone --nproc_per_node=1 infer.py \
39
+ --exp config/anwm.yaml \
40
+ --ckp 0200000 \
41
+ --datasets airvln_16 \
42
+ --eval_type rollout \
43
+ --rollout_fps_values 1,4
44
+ ```
45
+
46
+ The downloaded layout matches the documented local path:
47
+
48
+ ```text
49
+ logs/anwm_cdit_airvln/checkpoints/0200000.pth.tar
50
+ ```
51
+
52
+ ## Related
53
+
54
+ - Dataset: https://huggingface.co/datasets/EmbodiedCity/ANWM-Dataset
55
+ - Paper: https://arxiv.org/abs/2512.21887
{checkpoints/nwm_cdit_airvln_v5_3 → logs/anwm_cdit_airvln/checkpoints}/0200000.pth.tar RENAMED
File without changes