RaspberryVitriol commited on
Commit
08a6f83
·
verified ·
1 Parent(s): 97b35c5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +120 -0
README.md ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 598,
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
+ "timestamp": {
75
+ "dtype": "float32",
76
+ "shape": [
77
+ 1
78
+ ],
79
+ "names": null
80
+ },
81
+ "frame_index": {
82
+ "dtype": "int64",
83
+ "shape": [
84
+ 1
85
+ ],
86
+ "names": null
87
+ },
88
+ "episode_index": {
89
+ "dtype": "int64",
90
+ "shape": [
91
+ 1
92
+ ],
93
+ "names": null
94
+ },
95
+ "index": {
96
+ "dtype": "int64",
97
+ "shape": [
98
+ 1
99
+ ],
100
+ "names": null
101
+ },
102
+ "task_index": {
103
+ "dtype": "int64",
104
+ "shape": [
105
+ 1
106
+ ],
107
+ "names": null
108
+ }
109
+ }
110
+ }
111
+ ```
112
+
113
+
114
+ ## Citation
115
+
116
+ **BibTeX:**
117
+
118
+ ```bibtex
119
+ [More Information Needed]
120
+ ```