francescocrivelli commited on
Commit
50f7294
1 Parent(s): f523c14

Upload README.md with huggingface_hub

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