tmeynier commited on
Commit
15e9c79
·
verified ·
1 Parent(s): b623be9

Upload README.md with huggingface_hub

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