ishika commited on
Commit
e8f6490
·
verified ·
1 Parent(s): b653945

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +181 -0
README.md ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ configs:
8
+ - config_name: default
9
+ data_files: data/*/*.parquet
10
+ ---
11
+
12
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
13
+
14
+ ## Dataset Description
15
+
16
+
17
+
18
+ - **Homepage:** [More Information Needed]
19
+ - **Paper:** [More Information Needed]
20
+ - **License:** apache-2.0
21
+
22
+ ## Dataset Structure
23
+
24
+ [meta/info.json](meta/info.json):
25
+ ```json
26
+ {
27
+ "codebase_version": "v2.1",
28
+ "robot_type": "robomimic",
29
+ "total_episodes": 2235,
30
+ "total_frames": 552031,
31
+ "total_tasks": 20,
32
+ "total_videos": 2235,
33
+ "total_chunks": 3,
34
+ "chunks_size": 1000,
35
+ "fps": 20,
36
+ "splits": {
37
+ "train": "0:1877",
38
+ "test": "1877:2235"
39
+ },
40
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
41
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
42
+ "features": {
43
+ "action": {
44
+ "dtype": "float32",
45
+ "shape": [
46
+ 24
47
+ ],
48
+ "names": [
49
+ "action_0",
50
+ "action_1",
51
+ "action_2",
52
+ "action_3",
53
+ "action_4",
54
+ "action_5",
55
+ "action_6",
56
+ "action_7",
57
+ "action_8",
58
+ "action_9",
59
+ "action_10",
60
+ "action_11",
61
+ "action_12",
62
+ "action_13",
63
+ "action_14",
64
+ "action_15",
65
+ "action_16",
66
+ "action_17",
67
+ "action_18",
68
+ "action_19",
69
+ "action_20",
70
+ "action_21",
71
+ "action_22",
72
+ "action_23"
73
+ ]
74
+ },
75
+ "next.done": {
76
+ "dtype": "bool",
77
+ "shape": [
78
+ 1
79
+ ],
80
+ "names": [
81
+ "done"
82
+ ]
83
+ },
84
+ "observation.state": {
85
+ "dtype": "float32",
86
+ "shape": [
87
+ 43
88
+ ],
89
+ "names": [
90
+ "robot0_right_eef_pos",
91
+ "robot0_right_eef_quat",
92
+ "robot0_right_gripper_qpos",
93
+ "robot0_left_eef_pos",
94
+ "robot0_left_eef_quat",
95
+ "robot0_left_gripper_qpos",
96
+ "robot0_base_pos",
97
+ "robot0_base_quat"
98
+ ]
99
+ },
100
+ "observation.condition": {
101
+ "dtype": "float32",
102
+ "shape": [
103
+ 14
104
+ ],
105
+ "names": [
106
+ "right_abs_pos_gr1_contact_condition",
107
+ "right_abs_rot_gr1_contact_condition",
108
+ "left_abs_pos_gr1_contact_condition",
109
+ "left_abs_rot_gr1_contact_condition"
110
+ ]
111
+ },
112
+ "observation.images.egoview": {
113
+ "dtype": "video",
114
+ "shape": [
115
+ 256,
116
+ 256,
117
+ 3
118
+ ],
119
+ "names": [
120
+ "height",
121
+ "width",
122
+ "channel"
123
+ ],
124
+ "info": {
125
+ "video.height": 256,
126
+ "video.width": 256,
127
+ "video.codec": "av1",
128
+ "video.pix_fmt": "yuv420p",
129
+ "video.is_depth_map": false,
130
+ "video.fps": 20,
131
+ "video.channels": 3,
132
+ "has_audio": false
133
+ }
134
+ },
135
+ "timestamp": {
136
+ "dtype": "float32",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ },
142
+ "frame_index": {
143
+ "dtype": "int64",
144
+ "shape": [
145
+ 1
146
+ ],
147
+ "names": null
148
+ },
149
+ "episode_index": {
150
+ "dtype": "int64",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": null
155
+ },
156
+ "index": {
157
+ "dtype": "int64",
158
+ "shape": [
159
+ 1
160
+ ],
161
+ "names": null
162
+ },
163
+ "task_index": {
164
+ "dtype": "int64",
165
+ "shape": [
166
+ 1
167
+ ],
168
+ "names": null
169
+ }
170
+ }
171
+ }
172
+ ```
173
+
174
+
175
+ ## Citation
176
+
177
+ **BibTeX:**
178
+
179
+ ```bibtex
180
+ [More Information Needed]
181
+ ```