shreyasgite commited on
Commit
c33833a
·
verified ·
1 Parent(s): 53770fb

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +170 -0
README.md ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "so100_follower",
29
+ "total_episodes": 2,
30
+ "total_frames": 2805,
31
+ "total_tasks": 9,
32
+ "total_videos": 4,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:2"
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
+ 6
46
+ ],
47
+ "names": [
48
+ "shoulder_pan.pos",
49
+ "shoulder_lift.pos",
50
+ "elbow_flex.pos",
51
+ "wrist_flex.pos",
52
+ "wrist_roll.pos",
53
+ "gripper.pos"
54
+ ]
55
+ },
56
+ "observation.state": {
57
+ "dtype": "float32",
58
+ "shape": [
59
+ 14
60
+ ],
61
+ "names": [
62
+ "shoulder_pan.pos",
63
+ "shoulder_lift.pos",
64
+ "elbow_flex.pos",
65
+ "wrist_flex.pos",
66
+ "wrist_roll.pos",
67
+ "gripper.pos",
68
+ "pick_y1",
69
+ "pick_x1",
70
+ "pick_y2",
71
+ "pick_x2",
72
+ "place_y1",
73
+ "place_x1",
74
+ "place_y2",
75
+ "place_x2"
76
+ ]
77
+ },
78
+ "observation.images.top": {
79
+ "dtype": "video",
80
+ "shape": [
81
+ 480,
82
+ 640,
83
+ 3
84
+ ],
85
+ "names": [
86
+ "height",
87
+ "width",
88
+ "channels"
89
+ ],
90
+ "info": {
91
+ "video.height": 480,
92
+ "video.width": 640,
93
+ "video.codec": "av1",
94
+ "video.pix_fmt": "yuv420p",
95
+ "video.is_depth_map": false,
96
+ "video.fps": 30,
97
+ "video.channels": 3,
98
+ "has_audio": false
99
+ }
100
+ },
101
+ "observation.images.wrist": {
102
+ "dtype": "video",
103
+ "shape": [
104
+ 480,
105
+ 640,
106
+ 3
107
+ ],
108
+ "names": [
109
+ "height",
110
+ "width",
111
+ "channels"
112
+ ],
113
+ "info": {
114
+ "video.height": 480,
115
+ "video.width": 640,
116
+ "video.codec": "av1",
117
+ "video.pix_fmt": "yuv420p",
118
+ "video.is_depth_map": false,
119
+ "video.fps": 30,
120
+ "video.channels": 3,
121
+ "has_audio": false
122
+ }
123
+ },
124
+ "timestamp": {
125
+ "dtype": "float32",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "frame_index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ },
138
+ "episode_index": {
139
+ "dtype": "int64",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ },
145
+ "index": {
146
+ "dtype": "int64",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ },
152
+ "task_index": {
153
+ "dtype": "int64",
154
+ "shape": [
155
+ 1
156
+ ],
157
+ "names": null
158
+ }
159
+ }
160
+ }
161
+ ```
162
+
163
+
164
+ ## Citation
165
+
166
+ **BibTeX:**
167
+
168
+ ```bibtex
169
+ [More Information Needed]
170
+ ```