xyaoNV commited on
Commit
e617d24
·
verified ·
1 Parent(s): a68908d

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +104 -0
README.md ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - robotics
7
+ ---
8
+ ## Dataset Description:
9
+
10
+ This dataset is multimodal collections of trajectories generated in Isaac Lab. It supports humanoid (GR1) manipulation task in IsaacLab-Arena enviorment. Each entry provides the full context (state, vision, language, action) needed to train and evaluate generalist robot policies for opening microwave task.
11
+
12
+ | Dataset Name | # Trajectories |
13
+ |-----------------------|----------------|
14
+ | GR1 Manipulation Task | 50 |
15
+
16
+ This dataset is ideal for behavior cloning, policy learning, and generalist robotic manipulation research. It has been for post-training GR00T N1.5 model.
17
+
18
+ This dataset is ready for commercial use.
19
+
20
+ ## Dataset Owner
21
+ NVIDIA Corporation
22
+
23
+ ## Dataset Creation Date:
24
+ 10/10/2025
25
+
26
+ ## License/Terms of Use:
27
+ This dataset is governed by the Creative Commons Attribution 4.0 International License (CC-BY-4.0).
28
+
29
+ ## Intended Usage:
30
+ This dataset is intended for:
31
+
32
+ - Training robot manipulation policies using behavior cloning.
33
+ - Research in generalist robotics and task-conditioned agents.
34
+ - Sim-to-real / Sim-to-Sim transfer studies.
35
+
36
+ ## Dataset Characterization:
37
+ ### Data Collection Method
38
+
39
+ - Automated
40
+ - Automatic/Sensors
41
+ - Synthetic
42
+
43
+ 10 human teleoperated demonstrations are collected through a depth camera and keyboard in Isaac Lab. All 50 demos are generated automatically using a synthetic motion trajectory generation framework, Mimicgen [1]. Each demo is generated at 50 Hz.
44
+
45
+ ### Labeling Method
46
+
47
+ Not Applicable
48
+
49
+ ## Dataset Format:
50
+ We provide a few dataset files, including
51
+ - a human-annoated 10 demonstrations in HDF5 dataset file (`arena_gr1_manipulation_dataset_annotated.hdf5`)
52
+ - a Mimic-generated 50 demonstrations in HDF5 dataset file (`arena_gr1_manipulation_dataset_generated.hdf5`)
53
+ - a GR00T-Lerobot formatted dataset converted from the Mimic-generated HDF5 dataset file (`lerobot`)
54
+ -
55
+ Each demo in GR00T-Lerobot datasets consists of a time-indexed sequence of the following modalities:
56
+
57
+ ### Actions
58
+ - action (FP64): joint desired positions for all body joints (36 DoF)
59
+
60
+ ### Observations
61
+ - observation.state (FP64): joint positions for all body joints (54 DoF)
62
+
63
+ ### Task-specific
64
+ - timestamp (FP64): simulation time in seconds of each recorded data entry.
65
+ - annotation.human.action.task_description (INT64): index referring to the language instruction recorded in the metadata
66
+ - annotation.human.action.valid (INT64): index indicating validity of annotaion recorded in the metadata
67
+ - episode_index (INT64): index indicating the order of each demo
68
+ - task_index (INT64): index used in multi-task data loader. Not applicable to Gr00t-N1 post training, always set to 0.
69
+
70
+
71
+ ### Videos
72
+ - 256 x 256 RGB videos in mp4 format from first-person-view camera
73
+
74
+ In additional, a set of metadata describing the followings is provided,
75
+ - `episodes.jsonl` contains a list of all the episodes in the entire dataset. Each episode contains a list of tasks and the length of the episode.
76
+ - `tasks.jsonl` contains a list of all the tasks in the entire dataset.
77
+ - `modality.json` contains the modality configuration.
78
+ - `info.json` contains the dataset information.
79
+
80
+
81
+ ## Dataset Quantification:
82
+
83
+ ### Record Count
84
+
85
+ #### GR1 Manipulation Task
86
+ - Number of demonstrations/trajectories: 50
87
+ - Number of RGB videos: 50
88
+
89
+ ### Total Storage
90
+
91
+ 5.16 GB
92
+
93
+ ## Ethical Considerations:
94
+ NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with our terms of service, developers should work with their internal model team to ensure this model meets requirements for the relevant industry and use case and addresses unforeseen product misuse.
95
+
96
+ Please report security vulnerabilities or NVIDIA AI Concerns [here](https://www.nvidia.com/en-us/support/submit-security-vulnerability/).
97
+
98
+ ## Reference(s):
99
+ [1] @inproceedings{mandlekar2023mimicgen,
100
+ title={MimicGen: A Data Generation System for Scalable Robot Learning using Human Demonstrations},
101
+ author={Mandlekar, Ajay and Nasiriany, Soroush and Wen, Bowen and Akinola, Iretiayo and Narang, Yashraj and Fan, Linxi and Zhu, Yuke and Fox, Dieter},
102
+ booktitle={7th Annual Conference on Robot Learning},
103
+ year={2023}
104
+ }