bluephysi01 commited on
Commit
d61f66c
·
verified ·
1 Parent(s): a73ef5d

Upload README.md with huggingface_hub

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