tmeynier commited on
Commit
9d3337c
·
verified ·
1 Parent(s): e1ab1bb

Upload README.md with huggingface_hub

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