kumarhans commited on
Commit
ba65dea
·
verified ·
1 Parent(s): 41ba492

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +168 -0
README.md ADDED
@@ -0,0 +1,168 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 579,
33
+ "total_tasks": 1,
34
+ "total_videos": 4,
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
+ "observation.images.base_camera": {
45
+ "dtype": "video",
46
+ "shape": [
47
+ 480,
48
+ 640,
49
+ 3
50
+ ],
51
+ "names": [
52
+ "height",
53
+ "width",
54
+ "rgb"
55
+ ],
56
+ "info": {
57
+ "video.fps": 30.0,
58
+ "video.height": 480,
59
+ "video.width": 640,
60
+ "video.channels": 3,
61
+ "video.codec": "h264",
62
+ "video.pix_fmt": "yuv420p",
63
+ "video.is_depth_map": false,
64
+ "has_audio": false
65
+ }
66
+ },
67
+ "observation.images.hand_camera": {
68
+ "dtype": "video",
69
+ "shape": [
70
+ 480,
71
+ 640,
72
+ 3
73
+ ],
74
+ "names": [
75
+ "height",
76
+ "width",
77
+ "rgb"
78
+ ],
79
+ "info": {
80
+ "video.fps": 30.0,
81
+ "video.height": 480,
82
+ "video.width": 640,
83
+ "video.channels": 3,
84
+ "video.codec": "h264",
85
+ "video.pix_fmt": "yuv420p",
86
+ "video.is_depth_map": false,
87
+ "has_audio": false
88
+ }
89
+ },
90
+ "observation.state": {
91
+ "dtype": "float32",
92
+ "shape": [
93
+ 6
94
+ ],
95
+ "names": {
96
+ "motors": [
97
+ "motor_0",
98
+ "motor_1",
99
+ "motor_2",
100
+ "motor_3",
101
+ "motor_4",
102
+ "motor_5"
103
+ ]
104
+ }
105
+ },
106
+ "action": {
107
+ "dtype": "float32",
108
+ "shape": [
109
+ 6
110
+ ],
111
+ "names": {
112
+ "motors": [
113
+ "motor_0",
114
+ "motor_1",
115
+ "motor_2",
116
+ "motor_3",
117
+ "motor_4",
118
+ "motor_5"
119
+ ]
120
+ }
121
+ },
122
+ "timestamp": {
123
+ "dtype": "float32",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": null
128
+ },
129
+ "frame_index": {
130
+ "dtype": "int64",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null
135
+ },
136
+ "episode_index": {
137
+ "dtype": "int64",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "names": null
142
+ },
143
+ "index": {
144
+ "dtype": "int64",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "names": null
149
+ },
150
+ "task_index": {
151
+ "dtype": "int64",
152
+ "shape": [
153
+ 1
154
+ ],
155
+ "names": null
156
+ }
157
+ }
158
+ }
159
+ ```
160
+
161
+
162
+ ## Citation
163
+
164
+ **BibTeX:**
165
+
166
+ ```bibtex
167
+ [More Information Needed]
168
+ ```