DimiSch commited on
Commit
239af62
·
verified ·
1 Parent(s): 6fa41f3

Upload README.md with huggingface_hub

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