zacapa commited on
Commit
e5a7e3b
·
verified ·
1 Parent(s): 852a4c2

Upload README.md with huggingface_hub

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