CarolinePascal HF Staff commited on
Commit
ed0597e
·
verified ·
1 Parent(s): 965bb7d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +159 -0
README.md ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v3.0",
28
+ "robot_type": "so100_follower",
29
+ "total_episodes": 3,
30
+ "total_frames": 389,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 1,
35
+ "audio_files_size_in_mb": 1,
36
+ "fps": 30,
37
+ "splits": {
38
+ "train": "0:3"
39
+ },
40
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
41
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
42
+ "audio_path": "audio/{audio_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.m4a",
43
+ "features": {
44
+ "action": {
45
+ "dtype": "float32",
46
+ "names": [
47
+ "shoulder_pan.pos",
48
+ "shoulder_lift.pos",
49
+ "elbow_flex.pos",
50
+ "wrist_flex.pos",
51
+ "wrist_roll.pos",
52
+ "gripper.pos"
53
+ ],
54
+ "shape": [
55
+ 6
56
+ ]
57
+ },
58
+ "observation.state": {
59
+ "dtype": "float32",
60
+ "names": [
61
+ "shoulder_pan.pos",
62
+ "shoulder_lift.pos",
63
+ "elbow_flex.pos",
64
+ "wrist_flex.pos",
65
+ "wrist_roll.pos",
66
+ "gripper.pos"
67
+ ],
68
+ "shape": [
69
+ 6
70
+ ]
71
+ },
72
+ "observation.images.front_cam": {
73
+ "dtype": "video",
74
+ "shape": [
75
+ 1080,
76
+ 1920,
77
+ 3
78
+ ],
79
+ "names": [
80
+ "height",
81
+ "width",
82
+ "channels"
83
+ ],
84
+ "info": {
85
+ "video.height": 1080,
86
+ "video.width": 1920,
87
+ "video.codec": "av1",
88
+ "video.pix_fmt": "yuv420p",
89
+ "video.is_depth_map": false,
90
+ "video.fps": 30,
91
+ "video.channels": 3
92
+ }
93
+ },
94
+ "observation.audio.front_mic": {
95
+ "dtype": "audio",
96
+ "names": [
97
+ "channels"
98
+ ],
99
+ "shape": [
100
+ 1
101
+ ],
102
+ "info": {
103
+ "audio.channels": 1,
104
+ "audio.codec": "aac",
105
+ "audio.bit_rate": 72396,
106
+ "audio.sample_rate": 16000,
107
+ "audio.bit_depth": 32,
108
+ "audio.channel_layout": "mono",
109
+ "has_audio": true,
110
+ "start_time_s": 1.0
111
+ }
112
+ },
113
+ "timestamp": {
114
+ "dtype": "float32",
115
+ "shape": [
116
+ 1
117
+ ],
118
+ "names": null
119
+ },
120
+ "frame_index": {
121
+ "dtype": "int64",
122
+ "shape": [
123
+ 1
124
+ ],
125
+ "names": null
126
+ },
127
+ "episode_index": {
128
+ "dtype": "int64",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": null
133
+ },
134
+ "index": {
135
+ "dtype": "int64",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
140
+ },
141
+ "task_index": {
142
+ "dtype": "int64",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
+ }
148
+ }
149
+ }
150
+ ```
151
+
152
+
153
+ ## Citation
154
+
155
+ **BibTeX:**
156
+
157
+ ```bibtex
158
+ [More Information Needed]
159
+ ```