RaspberryVitriol commited on
Commit
e101f88
·
verified ·
1 Parent(s): 91fe56f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +143 -0
README.md ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - robotics
8
+ - manipulation
9
+ - so101
10
+ - imitation-learning
11
+ configs:
12
+ - config_name: default
13
+ data_files: data/*/*.parquet
14
+ ---
15
+
16
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
17
+
18
+ ## Dataset Description
19
+
20
+
21
+
22
+ - **Homepage:** [More Information Needed]
23
+ - **Paper:** [More Information Needed]
24
+ - **License:** apache-2.0
25
+
26
+ ## Dataset Structure
27
+
28
+ [meta/info.json](meta/info.json):
29
+ ```json
30
+ {
31
+ "codebase_version": "v3.0",
32
+ "robot_type": "so101_follower",
33
+ "total_episodes": 2,
34
+ "total_frames": 593,
35
+ "total_tasks": 1,
36
+ "chunks_size": 1000,
37
+ "data_files_size_in_mb": 100,
38
+ "video_files_size_in_mb": 500,
39
+ "fps": 30,
40
+ "splits": {
41
+ "train": "0:2"
42
+ },
43
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
44
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
45
+ "features": {
46
+ "action": {
47
+ "dtype": "float32",
48
+ "names": [
49
+ "shoulder_pan.pos",
50
+ "shoulder_lift.pos",
51
+ "elbow_flex.pos",
52
+ "wrist_flex.pos",
53
+ "wrist_roll.pos",
54
+ "gripper.pos"
55
+ ],
56
+ "shape": [
57
+ 6
58
+ ]
59
+ },
60
+ "observation.state": {
61
+ "dtype": "float32",
62
+ "names": [
63
+ "shoulder_pan.pos",
64
+ "shoulder_lift.pos",
65
+ "elbow_flex.pos",
66
+ "wrist_flex.pos",
67
+ "wrist_roll.pos",
68
+ "gripper.pos"
69
+ ],
70
+ "shape": [
71
+ 6
72
+ ]
73
+ },
74
+ "observation.images.wrist": {
75
+ "dtype": "video",
76
+ "shape": [
77
+ 480,
78
+ 640,
79
+ 3
80
+ ],
81
+ "names": [
82
+ "height",
83
+ "width",
84
+ "channels"
85
+ ],
86
+ "info": {
87
+ "video.height": 480,
88
+ "video.width": 640,
89
+ "video.codec": "av1",
90
+ "video.pix_fmt": "yuv420p",
91
+ "video.is_depth_map": false,
92
+ "video.fps": 30,
93
+ "video.channels": 3,
94
+ "has_audio": false
95
+ }
96
+ },
97
+ "timestamp": {
98
+ "dtype": "float32",
99
+ "shape": [
100
+ 1
101
+ ],
102
+ "names": null
103
+ },
104
+ "frame_index": {
105
+ "dtype": "int64",
106
+ "shape": [
107
+ 1
108
+ ],
109
+ "names": null
110
+ },
111
+ "episode_index": {
112
+ "dtype": "int64",
113
+ "shape": [
114
+ 1
115
+ ],
116
+ "names": null
117
+ },
118
+ "index": {
119
+ "dtype": "int64",
120
+ "shape": [
121
+ 1
122
+ ],
123
+ "names": null
124
+ },
125
+ "task_index": {
126
+ "dtype": "int64",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null
131
+ }
132
+ }
133
+ }
134
+ ```
135
+
136
+
137
+ ## Citation
138
+
139
+ **BibTeX:**
140
+
141
+ ```bibtex
142
+ [More Information Needed]
143
+ ```