lddddl commited on
Commit
4c836ec
·
verified ·
1 Parent(s): ec1db6d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +170 -0
README.md ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - bridge
8
+ - dobot
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.1",
31
+ "robot_type": null,
32
+ "total_episodes": 30,
33
+ "total_frames": 173,
34
+ "total_tasks": 3,
35
+ "total_videos": 0,
36
+ "total_chunks": 1,
37
+ "chunks_size": 1000,
38
+ "fps": 10,
39
+ "splits": {
40
+ "train": "0:30"
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
+ "top_image": {
46
+ "dtype": "image",
47
+ "shape": [
48
+ 3,
49
+ 256,
50
+ 256
51
+ ],
52
+ "names": [
53
+ "channel",
54
+ "height",
55
+ "width"
56
+ ]
57
+ },
58
+ "front_image": {
59
+ "dtype": "image",
60
+ "shape": [
61
+ 3,
62
+ 256,
63
+ 256
64
+ ],
65
+ "names": [
66
+ "channel",
67
+ "height",
68
+ "width"
69
+ ]
70
+ },
71
+ "right_image": {
72
+ "dtype": "image",
73
+ "shape": [
74
+ 3,
75
+ 256,
76
+ 256
77
+ ],
78
+ "names": [
79
+ "channel",
80
+ "height",
81
+ "width"
82
+ ]
83
+ },
84
+ "pcd": {
85
+ "dtype": "float32",
86
+ "shape": [
87
+ 3,
88
+ 256,
89
+ 256
90
+ ],
91
+ "names": [
92
+ "channel",
93
+ "height",
94
+ "width"
95
+ ]
96
+ },
97
+ "state": {
98
+ "dtype": "float32",
99
+ "shape": [
100
+ 8
101
+ ],
102
+ "names": [
103
+ "state"
104
+ ]
105
+ },
106
+ "lang_goal": {
107
+ "dtype": "string",
108
+ "shape": [
109
+ 1
110
+ ],
111
+ "names": [
112
+ "instruction"
113
+ ]
114
+ },
115
+ "action": {
116
+ "dtype": "float32",
117
+ "shape": [
118
+ 8
119
+ ],
120
+ "names": [
121
+ "action"
122
+ ]
123
+ },
124
+ "timestamp": {
125
+ "dtype": "float32",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "frame_index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ },
138
+ "episode_index": {
139
+ "dtype": "int64",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ },
145
+ "index": {
146
+ "dtype": "int64",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ },
152
+ "task_index": {
153
+ "dtype": "int64",
154
+ "shape": [
155
+ 1
156
+ ],
157
+ "names": null
158
+ }
159
+ }
160
+ }
161
+ ```
162
+
163
+
164
+ ## Citation
165
+
166
+ **BibTeX:**
167
+
168
+ ```bibtex
169
+ [More Information Needed]
170
+ ```