mhyatt000 commited on
Commit
78682af
·
verified ·
1 Parent(s): 0cc1459

Upload README.md with huggingface_hub

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