swarajgosavi commited on
Commit
8f8f2e5
·
verified ·
1 Parent(s): 9d99b0e

Upload README.md with huggingface_hub

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