shivakanthsujit commited on
Commit
ea8cc1c
·
verified ·
1 Parent(s): 305da51

Upload README.md with huggingface_hub

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