ishika commited on
Commit
eb4fa4b
·
verified ·
1 Parent(s): 2696752

Upload README.md with huggingface_hub

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