tangera commited on
Commit
f0fcc70
·
verified ·
1 Parent(s): 9b1547d

Add README with link to EmbodiedCity/ANWM.code

Browse files
Files changed (1) hide show
  1. README.md +58 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ - reinforcement-learning
6
+ tags:
7
+ - aerial-navigation
8
+ - world-model
9
+ - embodied-ai
10
+ - uav
11
+ ---
12
+
13
+ # ANWM-Dataset
14
+
15
+ Training / evaluation trajectories for **ANWM** (Aerial Navigation World Model),
16
+ released with the paper
17
+ [Aerial World Model for Long-horizon Visual Generation and Navigation in 3D Space](https://arxiv.org/abs/2512.21887).
18
+
19
+ - **Code**: [https://github.com/EmbodiedCity/ANWM.code](https://github.com/EmbodiedCity/ANWM.code)
20
+ - **Model**: [EmbodiedCity/ANWM](https://huggingface.co/EmbodiedCity/ANWM)
21
+
22
+ ## Contents
23
+
24
+ Sharded tar archives of AirVLN-16 style trajectories (`airvln_16-*.tar`).
25
+ Each archive preserves the original folder layout (`{ID}_processed/...` with
26
+ images and `traj_data.pkl`).
27
+
28
+ ## Quick start
29
+
30
+ ```bash
31
+ git clone https://github.com/EmbodiedCity/ANWM.code.git
32
+ cd ANWM.code
33
+
34
+ huggingface-cli download EmbodiedCity/ANWM-Dataset --repo-type dataset \
35
+ --local-dir data/airvln_16_shards
36
+ mkdir -p data/airvln_16
37
+ for f in data/airvln_16_shards/airvln_16-*.tar; do
38
+ tar -xf "$f" -C data/airvln_16
39
+ done
40
+ ```
41
+
42
+ After extract, trajectory directories are directly under `data/airvln_16/`.
43
+
44
+ Also download the released checkpoint:
45
+
46
+ ```bash
47
+ huggingface-cli download EmbodiedCity/ANWM 0200000.pth.tar \
48
+ --local-dir logs/anwm_cdit_airvln/checkpoints
49
+ ```
50
+
51
+ See the code repository README for installation, inference, and evaluation.
52
+
53
+ ## Related
54
+
55
+ - Code: https://github.com/EmbodiedCity/ANWM.code
56
+ - Model: https://huggingface.co/EmbodiedCity/ANWM
57
+ - Dataset: https://huggingface.co/datasets/EmbodiedCity/ANWM-Dataset
58
+ - Paper: https://arxiv.org/abs/2512.21887