davidtao212 commited on
Commit
9784a72
·
verified ·
1 Parent(s): 19196c8

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +182 -0
README.md ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v2.1",
28
+ "robot_type": "deerbaby",
29
+ "total_episodes": 62,
30
+ "total_frames": 31000,
31
+ "total_tasks": 1,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 50,
36
+ "splits": {
37
+ "train": "0:62"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 7
46
+ ],
47
+ "names": [
48
+ [
49
+ "waist",
50
+ "shoulder",
51
+ "elbow",
52
+ "forearm_roll",
53
+ "wrist_angle",
54
+ "wrist_rotate",
55
+ "gripper"
56
+ ]
57
+ ]
58
+ },
59
+ "action": {
60
+ "dtype": "float32",
61
+ "shape": [
62
+ 7
63
+ ],
64
+ "names": [
65
+ [
66
+ "waist",
67
+ "shoulder",
68
+ "elbow",
69
+ "forearm_roll",
70
+ "wrist_angle",
71
+ "wrist_rotate",
72
+ "gripper"
73
+ ]
74
+ ]
75
+ },
76
+ "observation.velocity": {
77
+ "dtype": "float32",
78
+ "shape": [
79
+ 7
80
+ ],
81
+ "names": [
82
+ [
83
+ "waist",
84
+ "shoulder",
85
+ "elbow",
86
+ "forearm_roll",
87
+ "wrist_angle",
88
+ "wrist_rotate",
89
+ "gripper"
90
+ ]
91
+ ]
92
+ },
93
+ "observation.effort": {
94
+ "dtype": "float32",
95
+ "shape": [
96
+ 7
97
+ ],
98
+ "names": [
99
+ [
100
+ "waist",
101
+ "shoulder",
102
+ "elbow",
103
+ "forearm_roll",
104
+ "wrist_angle",
105
+ "wrist_rotate",
106
+ "gripper"
107
+ ]
108
+ ]
109
+ },
110
+ "observation.images.camera_front": {
111
+ "dtype": "image",
112
+ "shape": [
113
+ 3,
114
+ 480,
115
+ 640
116
+ ],
117
+ "names": [
118
+ "channels",
119
+ "height",
120
+ "width"
121
+ ]
122
+ },
123
+ "observation.images.camera_wrist": {
124
+ "dtype": "image",
125
+ "shape": [
126
+ 3,
127
+ 480,
128
+ 640
129
+ ],
130
+ "names": [
131
+ "channels",
132
+ "height",
133
+ "width"
134
+ ]
135
+ },
136
+ "timestamp": {
137
+ "dtype": "float32",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "names": null
142
+ },
143
+ "frame_index": {
144
+ "dtype": "int64",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "names": null
149
+ },
150
+ "episode_index": {
151
+ "dtype": "int64",
152
+ "shape": [
153
+ 1
154
+ ],
155
+ "names": null
156
+ },
157
+ "index": {
158
+ "dtype": "int64",
159
+ "shape": [
160
+ 1
161
+ ],
162
+ "names": null
163
+ },
164
+ "task_index": {
165
+ "dtype": "int64",
166
+ "shape": [
167
+ 1
168
+ ],
169
+ "names": null
170
+ }
171
+ }
172
+ }
173
+ ```
174
+
175
+
176
+ ## Citation
177
+
178
+ **BibTeX:**
179
+
180
+ ```bibtex
181
+ [More Information Needed]
182
+ ```