daixianjie commited on
Commit
9f74700
·
verified ·
1 Parent(s): 82ffc2d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +179 -0
README.md ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - rlbench
8
+ - panda
9
+ - rlds
10
+ configs:
11
+ - config_name: default
12
+ data_files: data/*/*.parquet
13
+ ---
14
+
15
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
16
+
17
+ ## Dataset Description
18
+
19
+
20
+
21
+ - **Homepage:** [More Information Needed]
22
+ - **Paper:** [More Information Needed]
23
+ - **License:** apache-2.0
24
+
25
+ ## Dataset Structure
26
+
27
+ [meta/info.json](meta/info.json):
28
+ ```json
29
+ {
30
+ "codebase_version": "v2.0",
31
+ "robot_type": "panda",
32
+ "total_episodes": 1720,
33
+ "total_frames": 280007,
34
+ "total_tasks": 40,
35
+ "total_videos": 0,
36
+ "total_chunks": 2,
37
+ "chunks_size": 1000,
38
+ "fps": 10,
39
+ "splits": {
40
+ "train": "0:1720"
41
+ },
42
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
43
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
44
+ "features": {
45
+ "image": {
46
+ "dtype": "image",
47
+ "shape": [
48
+ 256,
49
+ 256,
50
+ 3
51
+ ],
52
+ "names": [
53
+ "height",
54
+ "width",
55
+ "channel"
56
+ ]
57
+ },
58
+ "wrist_image": {
59
+ "dtype": "image",
60
+ "shape": [
61
+ 256,
62
+ 256,
63
+ 3
64
+ ],
65
+ "names": [
66
+ "height",
67
+ "width",
68
+ "channel"
69
+ ]
70
+ },
71
+ "agentview_depth_images": {
72
+ "dtype": "float32",
73
+ "shape": [
74
+ 65536
75
+ ],
76
+ "names": [
77
+ "height",
78
+ "width",
79
+ "1"
80
+ ]
81
+ },
82
+ "agentview_real_depth_images": {
83
+ "dtype": "float32",
84
+ "shape": [
85
+ 65536
86
+ ],
87
+ "names": [
88
+ "height",
89
+ "width",
90
+ "1"
91
+ ]
92
+ },
93
+ "wrist_depth_images": {
94
+ "dtype": "float32",
95
+ "shape": [
96
+ 65536
97
+ ],
98
+ "names": [
99
+ "height",
100
+ "width",
101
+ "1"
102
+ ]
103
+ },
104
+ "wrist_real_depth_images": {
105
+ "dtype": "float32",
106
+ "shape": [
107
+ 65536
108
+ ],
109
+ "names": [
110
+ "height",
111
+ "width",
112
+ "1"
113
+ ]
114
+ },
115
+ "state": {
116
+ "dtype": "float32",
117
+ "shape": [
118
+ 8
119
+ ],
120
+ "names": [
121
+ "state"
122
+ ]
123
+ },
124
+ "actions": {
125
+ "dtype": "float32",
126
+ "shape": [
127
+ 7
128
+ ],
129
+ "names": [
130
+ "actions"
131
+ ]
132
+ },
133
+ "timestamp": {
134
+ "dtype": "float32",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ },
140
+ "frame_index": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ },
147
+ "episode_index": {
148
+ "dtype": "int64",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ },
154
+ "index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
+ },
161
+ "task_index": {
162
+ "dtype": "int64",
163
+ "shape": [
164
+ 1
165
+ ],
166
+ "names": null
167
+ }
168
+ }
169
+ }
170
+ ```
171
+
172
+
173
+ ## Citation
174
+
175
+ **BibTeX:**
176
+
177
+ ```bibtex
178
+ [More Information Needed]
179
+ ```