fljjoin commited on
Commit
626037f
·
verified ·
1 Parent(s): d1c283a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +180 -0
README.md ADDED
@@ -0,0 +1,180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - sam_bimanual
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": "sam_bimanual",
31
+ "total_episodes": 1,
32
+ "total_frames": 595,
33
+ "total_tasks": 1,
34
+ "total_videos": 2,
35
+ "total_chunks": 1,
36
+ "chunks_size": 1000,
37
+ "fps": 30,
38
+ "splits": {
39
+ "train": "0:1"
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
+ 14
48
+ ],
49
+ "names": [
50
+ "left_shoulder_pan",
51
+ "left_shoulder_lift",
52
+ "left_elbow_flex",
53
+ "left_wrist_flex",
54
+ "left_wrist_pan",
55
+ "left_wrist_roll",
56
+ "left_gripper",
57
+ "right_shoulder_pan",
58
+ "right_shoulder_lift",
59
+ "right_elbow_flex",
60
+ "right_wrist_flex",
61
+ "right_wrist_pan",
62
+ "right_wrist_roll",
63
+ "right_gripper"
64
+ ]
65
+ },
66
+ "observation.state": {
67
+ "dtype": "float32",
68
+ "shape": [
69
+ 14
70
+ ],
71
+ "names": [
72
+ "left_shoulder_pan",
73
+ "left_shoulder_lift",
74
+ "left_elbow_flex",
75
+ "left_wrist_flex",
76
+ "left_wrist_pan",
77
+ "left_wrist_roll",
78
+ "left_gripper",
79
+ "right_shoulder_pan",
80
+ "right_shoulder_lift",
81
+ "right_elbow_flex",
82
+ "right_wrist_flex",
83
+ "right_wrist_pan",
84
+ "right_wrist_roll",
85
+ "right_gripper"
86
+ ]
87
+ },
88
+ "observation.images.laptop": {
89
+ "dtype": "video",
90
+ "shape": [
91
+ 480,
92
+ 640,
93
+ 3
94
+ ],
95
+ "names": [
96
+ "height",
97
+ "width",
98
+ "channels"
99
+ ],
100
+ "info": {
101
+ "video.fps": 30.0,
102
+ "video.height": 480,
103
+ "video.width": 640,
104
+ "video.channels": 3,
105
+ "video.codec": "h264",
106
+ "video.pix_fmt": "yuv420p",
107
+ "video.is_depth_map": false,
108
+ "has_audio": false
109
+ }
110
+ },
111
+ "observation.images.phone": {
112
+ "dtype": "video",
113
+ "shape": [
114
+ 480,
115
+ 640,
116
+ 3
117
+ ],
118
+ "names": [
119
+ "height",
120
+ "width",
121
+ "channels"
122
+ ],
123
+ "info": {
124
+ "video.fps": 30.0,
125
+ "video.height": 480,
126
+ "video.width": 640,
127
+ "video.channels": 3,
128
+ "video.codec": "h264",
129
+ "video.pix_fmt": "yuv420p",
130
+ "video.is_depth_map": false,
131
+ "has_audio": false
132
+ }
133
+ },
134
+ "timestamp": {
135
+ "dtype": "float32",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
140
+ },
141
+ "frame_index": {
142
+ "dtype": "int64",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
+ },
148
+ "episode_index": {
149
+ "dtype": "int64",
150
+ "shape": [
151
+ 1
152
+ ],
153
+ "names": null
154
+ },
155
+ "index": {
156
+ "dtype": "int64",
157
+ "shape": [
158
+ 1
159
+ ],
160
+ "names": null
161
+ },
162
+ "task_index": {
163
+ "dtype": "int64",
164
+ "shape": [
165
+ 1
166
+ ],
167
+ "names": null
168
+ }
169
+ }
170
+ }
171
+ ```
172
+
173
+
174
+ ## Citation
175
+
176
+ **BibTeX:**
177
+
178
+ ```bibtex
179
+ [More Information Needed]
180
+ ```