BENVBAI commited on
Commit
de05fcd
·
verified ·
1 Parent(s): 42c570c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +149 -0
README.md ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - so100
8
+ - tutorial
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": "so100",
31
+ "total_episodes": 2,
32
+ "total_frames": 1770,
33
+ "total_tasks": 1,
34
+ "total_videos": 2,
35
+ "total_chunks": 1,
36
+ "chunks_size": 1000,
37
+ "fps": 30,
38
+ "splits": {
39
+ "train": "0:2"
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
+ "action": {
45
+ "dtype": "float32",
46
+ "shape": [
47
+ 6
48
+ ],
49
+ "names": [
50
+ "main_shoulder_pan",
51
+ "main_shoulder_lift",
52
+ "main_elbow_flex",
53
+ "main_wrist_flex",
54
+ "main_wrist_roll",
55
+ "main_gripper"
56
+ ]
57
+ },
58
+ "observation.state": {
59
+ "dtype": "float32",
60
+ "shape": [
61
+ 14
62
+ ],
63
+ "names": [
64
+ "main_shoulder_pan",
65
+ "main_shoulder_lift",
66
+ "main_elbow_flex",
67
+ "main_wrist_flex",
68
+ "main_wrist_roll",
69
+ "main_gripper",
70
+ "pick_x1",
71
+ "pick_y1",
72
+ "pick_x2",
73
+ "pick_y2",
74
+ "place_x1",
75
+ "place_y1",
76
+ "place_x2",
77
+ "place_y2"
78
+ ]
79
+ },
80
+ "observation.images.laptop": {
81
+ "dtype": "video",
82
+ "shape": [
83
+ 480,
84
+ 640,
85
+ 3
86
+ ],
87
+ "names": [
88
+ "height",
89
+ "width",
90
+ "channels"
91
+ ],
92
+ "info": {
93
+ "video.fps": 30.0,
94
+ "video.height": 480,
95
+ "video.width": 640,
96
+ "video.channels": 3,
97
+ "video.codec": "h264",
98
+ "video.pix_fmt": "yuv420p",
99
+ "video.is_depth_map": false,
100
+ "has_audio": false
101
+ }
102
+ },
103
+ "timestamp": {
104
+ "dtype": "float32",
105
+ "shape": [
106
+ 1
107
+ ],
108
+ "names": null
109
+ },
110
+ "frame_index": {
111
+ "dtype": "int64",
112
+ "shape": [
113
+ 1
114
+ ],
115
+ "names": null
116
+ },
117
+ "episode_index": {
118
+ "dtype": "int64",
119
+ "shape": [
120
+ 1
121
+ ],
122
+ "names": null
123
+ },
124
+ "index": {
125
+ "dtype": "int64",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "task_index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ }
138
+ }
139
+ }
140
+ ```
141
+
142
+
143
+ ## Citation
144
+
145
+ **BibTeX:**
146
+
147
+ ```bibtex
148
+ [More Information Needed]
149
+ ```