jclinton1 commited on
Commit
4910723
·
verified ·
1 Parent(s): 1df029c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +147 -9
README.md CHANGED
@@ -1,9 +1,147 @@
1
- ---
2
- task_categories:
3
- - robotics
4
- tags:
5
- - LeRobot
6
- - so100 wedgit stack
7
- ---
8
- This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
9
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v2.0",
28
+ "robot_type": "unknown",
29
+ "total_episodes": 50,
30
+ "total_frames": 29612,
31
+ "total_tasks": 1,
32
+ "total_videos": 50,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:50"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 6
46
+ ],
47
+ "names": {
48
+ "motors": [
49
+ "motor_0",
50
+ "motor_1",
51
+ "motor_2",
52
+ "motor_3",
53
+ "motor_4",
54
+ "motor_5"
55
+ ]
56
+ }
57
+ },
58
+ "observation.images.webcam": {
59
+ "dtype": "video",
60
+ "shape": [
61
+ 480,
62
+ 640,
63
+ 3
64
+ ],
65
+ "names": [
66
+ "height",
67
+ "width",
68
+ "channel"
69
+ ],
70
+ "video_info": {
71
+ "video.fps": 30.0,
72
+ "video.codec": "av1",
73
+ "video.pix_fmt": "yuv420p",
74
+ "video.is_depth_map": false,
75
+ "has_audio": false
76
+ }
77
+ },
78
+ "action": {
79
+ "dtype": "float32",
80
+ "shape": [
81
+ 6
82
+ ],
83
+ "names": {
84
+ "motors": [
85
+ "motor_0",
86
+ "motor_1",
87
+ "motor_2",
88
+ "motor_3",
89
+ "motor_4",
90
+ "motor_5"
91
+ ]
92
+ }
93
+ },
94
+ "episode_index": {
95
+ "dtype": "int64",
96
+ "shape": [
97
+ 1
98
+ ],
99
+ "names": null
100
+ },
101
+ "frame_index": {
102
+ "dtype": "int64",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "names": null
107
+ },
108
+ "timestamp": {
109
+ "dtype": "float32",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "names": null
114
+ },
115
+ "next.done": {
116
+ "dtype": "bool",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "names": null
121
+ },
122
+ "index": {
123
+ "dtype": "int64",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": null
128
+ },
129
+ "task_index": {
130
+ "dtype": "int64",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null
135
+ }
136
+ }
137
+ }
138
+ ```
139
+
140
+
141
+ ## Citation
142
+
143
+ **BibTeX:**
144
+
145
+ ```bibtex
146
+ [More Information Needed]
147
+ ```