mengqz9 commited on
Commit
61731db
·
verified ·
1 Parent(s): ae7765c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +99 -0
README.md ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - robotics
5
+ - video-classification
6
+ tags:
7
+ - robotics
8
+ - world-model
9
+ - video-prediction
10
+ - imitation-learning
11
+ - depth-estimation
12
+ - affordance
13
+ - robocasa
14
+ size_categories:
15
+ - 1K<n<10K
16
+ ---
17
+
18
+ # DeVA — RoboCasa (processed)
19
+
20
+ Processed **RoboCasa** data for [DeVA](https://github.com/Mq-Zhang1/deva), a robot
21
+ video-world model with affordance + depth physical guidance. Derived from
22
+ [robocasa/robocasa](https://github.com/robocasa/robocasa) —
23
+ **please cite the original benchmark as well**.
24
+
25
+ | | |
26
+ |---|---|
27
+ | Episodes | 1,199 |
28
+ | Frames | 316,995 |
29
+ | Video | 448 × 448, 16 fps (3 views on a 2×2 grid) |
30
+ | Views | `agentview_left`, `agentview_right`, `eye_in_hand` |
31
+ | Action dim | 7 (absolute) |
32
+ | Proprio state | not included |
33
+ | Size | 56 GB |
34
+
35
+ ## Download
36
+
37
+ ```bash
38
+ hf download mengqz9/deva_robocasa --repo-type dataset --local-dir datasets/deva_robocasa
39
+ ```
40
+
41
+ ## Layout
42
+
43
+ ```
44
+ deva_robocasa/
45
+ ├── dataset_info.json # view names, tile grid, affordance/depth encodings
46
+ ├── videos/ # <episode>.mp4 tiled multi-view RGB
47
+ ├── metas/ # <episode>.txt language instruction
48
+ ├── t5_xxl/ # <episode>.pickle precomputed T5-XXL embedding [n_tok, 1024]
49
+ ├── action.json # {episode: [[a_0..a_6], ...]} len == video frames
50
+ ├── data_mapping.json # episode -> source task
51
+ ├── norm_stats.json # action normalization statistics
52
+ ├── affordance/ # <episode>.npz physical guidance (optional at train time)
53
+ └── depth/ # <episode>.npz physical guidance (optional at train time)
54
+ ```
55
+
56
+ `videos/` tiles the views on the grid given by `dataset_info.json::tile` — the
57
+ bottom-right cell is empty:
58
+
59
+ ```
60
+ [[agentview_left, agentview_right],
61
+ [eye_in_hand, null ]]
62
+ ```
63
+
64
+ ## Affordance / depth `.npz`
65
+
66
+ Both are keyed by **canonical view name** (never by tile position), one array per view:
67
+
68
+ | | affordance | depth |
69
+ |---|---|---|
70
+ | key | `<view>` | `<view>` |
71
+ | dtype | `float16` | `float16` |
72
+ | shape | `[T, 224, 224]` | `[T, 224, 224]` |
73
+ | range | raw, un-normalized | `[0, 1]` |
74
+ | note | loader resizes to 128×128, then per-frame max-normalizes | per-view per-clip min-max applied at export |
75
+
76
+ `T` equals the episode's video frame count, so aux arrays index by absolute frame.
77
+ The validity mask is derived from the tile grid (`null` cells are invalid) and is not stored.
78
+
79
+ **Depth source** — DepthAnything (ViT-L) disparity, converted as `depth = 1 / disparity`;
80
+ **higher value = farther**. No percentile clip is applied: the range is set by the
81
+ farthest pixel, so agentview content occupies roughly the lower half of `[0, 1]` and
82
+ never saturates.
83
+
84
+ **Affordance source** — simulator oracle contacts rendered as Gaussian heatmaps.
85
+
86
+ ## Citation
87
+
88
+ If you use this data, please cite DeVA and RoboCasa:
89
+
90
+ ```bibtex
91
+ @inproceedings{robocasa2024,
92
+ title = {RoboCasa: Large-Scale Simulation of Everyday Tasks for Generalist Robots},
93
+ author = {Nasiriany, Soroush and Maddukuri, Abhiram and Zhang, Lance and
94
+ Parikh, Adeet and Lo, Aaron and Joshi, Abhishek and
95
+ Mandlekar, Ajay and Zhu, Yuke},
96
+ booktitle = {Robotics: Science and Systems (RSS)},
97
+ year = {2024}
98
+ }
99
+ ```