jchun commited on
Commit
b0154fb
·
verified ·
1 Parent(s): 6fecb00

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +143 -0
README.md ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - cleaning
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.1",
29
+ "robot_type": "so100",
30
+ "total_episodes": 0,
31
+ "total_frames": 0,
32
+ "total_tasks": 0,
33
+ "total_videos": 0,
34
+ "total_chunks": 0,
35
+ "chunks_size": 1000,
36
+ "fps": 30,
37
+ "splits": {},
38
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
39
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
40
+ "features": {
41
+ "action": {
42
+ "dtype": "float32",
43
+ "shape": [
44
+ 6
45
+ ],
46
+ "names": [
47
+ "main_shoulder_pan",
48
+ "main_shoulder_lift",
49
+ "main_elbow_flex",
50
+ "main_wrist_flex",
51
+ "main_wrist_roll",
52
+ "main_gripper"
53
+ ]
54
+ },
55
+ "observation.state": {
56
+ "dtype": "float32",
57
+ "shape": [
58
+ 6
59
+ ],
60
+ "names": [
61
+ "main_shoulder_pan",
62
+ "main_shoulder_lift",
63
+ "main_elbow_flex",
64
+ "main_wrist_flex",
65
+ "main_wrist_roll",
66
+ "main_gripper"
67
+ ]
68
+ },
69
+ "observation.images.main": {
70
+ "dtype": "video",
71
+ "shape": [
72
+ 480,
73
+ 640,
74
+ 3
75
+ ],
76
+ "names": [
77
+ "height",
78
+ "width",
79
+ "channels"
80
+ ],
81
+ "info": null
82
+ },
83
+ "observation.images.webcam": {
84
+ "dtype": "video",
85
+ "shape": [
86
+ 480,
87
+ 640,
88
+ 3
89
+ ],
90
+ "names": [
91
+ "height",
92
+ "width",
93
+ "channels"
94
+ ],
95
+ "info": null
96
+ },
97
+ "timestamp": {
98
+ "dtype": "float32",
99
+ "shape": [
100
+ 1
101
+ ],
102
+ "names": null
103
+ },
104
+ "frame_index": {
105
+ "dtype": "int64",
106
+ "shape": [
107
+ 1
108
+ ],
109
+ "names": null
110
+ },
111
+ "episode_index": {
112
+ "dtype": "int64",
113
+ "shape": [
114
+ 1
115
+ ],
116
+ "names": null
117
+ },
118
+ "index": {
119
+ "dtype": "int64",
120
+ "shape": [
121
+ 1
122
+ ],
123
+ "names": null
124
+ },
125
+ "task_index": {
126
+ "dtype": "int64",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null
131
+ }
132
+ }
133
+ }
134
+ ```
135
+
136
+
137
+ ## Citation
138
+
139
+ **BibTeX:**
140
+
141
+ ```bibtex
142
+ [More Information Needed]
143
+ ```