stevex0 commited on
Commit
2c03991
·
verified ·
1 Parent(s): dc92d4e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +157 -1
README.md CHANGED
@@ -1,8 +1,164 @@
1
  ---
 
2
  task_categories:
3
  - robotics
4
  tags:
5
  - LeRobot
 
 
 
 
6
  ---
7
- This dataset was created using [🤗 LeRobot](https://github.com/huggingface/lerobot).
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
  task_categories:
4
  - robotics
5
  tags:
6
  - LeRobot
7
+ - aloha
8
+ configs:
9
+ - config_name: default
10
+ data_files: data/*/*.parquet
11
  ---
 
12
 
13
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
14
+
15
+ ## Dataset Description
16
+
17
+
18
+
19
+ - **Homepage:** [More Information Needed]
20
+ - **Paper:** [More Information Needed]
21
+ - **License:** apache-2.0
22
+
23
+ ## Dataset Structure
24
+
25
+ [meta/info.json](meta/info.json):
26
+ ```json
27
+ {
28
+ "codebase_version": "v2.0",
29
+ "robot_type": "aloha",
30
+ "total_episodes": 100,
31
+ "total_frames": 40000,
32
+ "total_tasks": 1,
33
+ "total_videos": 100,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 50,
37
+ "splits": {
38
+ "train": "0:100"
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
+ "observation.images.top": {
44
+ "dtype": "video",
45
+ "shape": [
46
+ 480,
47
+ 640,
48
+ 3
49
+ ],
50
+ "names": [
51
+ "height",
52
+ "width",
53
+ "channel"
54
+ ],
55
+ "video_info": {
56
+ "video.fps": 50.0,
57
+ "video.codec": "av1",
58
+ "video.pix_fmt": "yuv420p",
59
+ "video.is_depth_map": false,
60
+ "has_audio": false
61
+ }
62
+ },
63
+ "observation.state": {
64
+ "dtype": "float32",
65
+ "shape": [
66
+ 14
67
+ ],
68
+ "names": {
69
+ "motors": [
70
+ "left_waist",
71
+ "left_shoulder",
72
+ "left_elbow",
73
+ "left_forearm_roll",
74
+ "left_wrist_angle",
75
+ "left_wrist_rotate",
76
+ "left_gripper",
77
+ "right_waist",
78
+ "right_shoulder",
79
+ "right_elbow",
80
+ "right_forearm_roll",
81
+ "right_wrist_angle",
82
+ "right_wrist_rotate",
83
+ "right_gripper"
84
+ ]
85
+ }
86
+ },
87
+ "action": {
88
+ "dtype": "float32",
89
+ "shape": [
90
+ 14
91
+ ],
92
+ "names": {
93
+ "motors": [
94
+ "left_waist",
95
+ "left_shoulder",
96
+ "left_elbow",
97
+ "left_forearm_roll",
98
+ "left_wrist_angle",
99
+ "left_wrist_rotate",
100
+ "left_gripper",
101
+ "right_waist",
102
+ "right_shoulder",
103
+ "right_elbow",
104
+ "right_forearm_roll",
105
+ "right_wrist_angle",
106
+ "right_wrist_rotate",
107
+ "right_gripper"
108
+ ]
109
+ }
110
+ },
111
+ "episode_index": {
112
+ "dtype": "int64",
113
+ "shape": [
114
+ 1
115
+ ],
116
+ "names": null
117
+ },
118
+ "frame_index": {
119
+ "dtype": "int64",
120
+ "shape": [
121
+ 1
122
+ ],
123
+ "names": null
124
+ },
125
+ "timestamp": {
126
+ "dtype": "float32",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null
131
+ },
132
+ "next.done": {
133
+ "dtype": "bool",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null
138
+ },
139
+ "index": {
140
+ "dtype": "int64",
141
+ "shape": [
142
+ 1
143
+ ],
144
+ "names": null
145
+ },
146
+ "task_index": {
147
+ "dtype": "int64",
148
+ "shape": [
149
+ 1
150
+ ],
151
+ "names": null
152
+ }
153
+ }
154
+ }
155
+ ```
156
+
157
+
158
+ ## Citation
159
+
160
+ **BibTeX:**
161
+
162
+ ```bibtex
163
+ [More Information Needed]
164
+ ```