Add dataset card for EgoVCP

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - robotics
4
+ tags:
5
+ - humanoid
6
+ - world-model
7
+ - contact-planning
8
+ - ego-vision
9
+ ---
10
+
11
+ # EgoVCP Dataset
12
+
13
+ This repository contains the dataset for the paper [Ego-Vision World Model for Humanoid Contact Planning](https://huggingface.co/papers/2510.11682).
14
+
15
+ [**Project Page**](https://ego-vcp.github.io/) | [**GitHub**](https://github.com/HybridRobotics/Ego-VCP) | [**arXiv**](https://arxiv.org/abs/2510.11682)
16
+
17
+ The EgoVCP dataset is a demonstration-free offline dataset used to train a learned world model for humanoid contact planning. It features data collected from a G1 humanoid robot in the Isaac Lab simulation environment, enabling the robot to predict outcomes in a compressed latent space for contact-aware tasks.
18
+
19
+ ## Dataset Tasks
20
+ The dataset includes rollouts for three primary manipulation and navigation scenarios:
21
+ - **Wall Support (`wall`)**: Supporting the robot against a wall after a perturbation.
22
+ - **Ball Blocking (`ball`)**: Interacting with and blocking incoming objects (e.g., a yoga ball).
23
+ - **Tunnel Traversal (`tunnel`)**: Traversing height-limited arches or tunnels.
24
+
25
+ ## Dataset Structure
26
+ The dataset contains:
27
+ - **Ego-centric Depth Images**: Captured from the robot's perspective.
28
+ - **Proprioception Data**: Internal robot state information.
29
+ - **Actions and Rewards**: For offline world model training.
30
+
31
+ The data is organized by task into subdirectories: `wall`, `ball`, and `tunnel`.
32
+
33
+ ## Usage
34
+ To use this dataset with the official implementation, you can clone it directly into your project directory:
35
+
36
+ ```bash
37
+ cd Ego-VCP
38
+ mkdir dataset
39
+ git clone https://huggingface.co/datasets/Hang917/EgoVCP_Dataset.git dataset
40
+ ```
41
+
42
+ ## Citation
43
+ If you use this dataset in your research, please cite the following paper:
44
+ ```bibtex
45
+ @article{liu2025egovcp,
46
+ title={Ego-Vision World Model for Humanoid Contact Planning},
47
+ author={Liu, Hang and others},
48
+ journal={arXiv preprint arXiv:2510.11682},
49
+ year={2025}
50
+ }
51
+ ```