brandonyang commited on
Commit
111414e
·
verified ·
1 Parent(s): ee0b4b2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +154 -0
README.md ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "metaworld",
29
+ "total_episodes": 24,
30
+ "total_frames": 1707,
31
+ "total_tasks": 6,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 80,
36
+ "splits": {
37
+ "train": "0:24"
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
+ 4
46
+ ],
47
+ "names": [
48
+ "observation_state"
49
+ ]
50
+ },
51
+ "observation.environment_state": {
52
+ "dtype": "float32",
53
+ "shape": [
54
+ 39
55
+ ],
56
+ "names": [
57
+ "environment_state"
58
+ ]
59
+ },
60
+ "corner_image": {
61
+ "dtype": "image",
62
+ "shape": [
63
+ 224,
64
+ 224,
65
+ 3
66
+ ],
67
+ "names": [
68
+ "height",
69
+ "width",
70
+ "channel"
71
+ ]
72
+ },
73
+ "corner4_image": {
74
+ "dtype": "image",
75
+ "shape": [
76
+ 224,
77
+ 224,
78
+ 3
79
+ ],
80
+ "names": [
81
+ "height",
82
+ "width",
83
+ "channel"
84
+ ]
85
+ },
86
+ "gripperPOV_image": {
87
+ "dtype": "image",
88
+ "shape": [
89
+ 224,
90
+ 224,
91
+ 3
92
+ ],
93
+ "names": [
94
+ "height",
95
+ "width",
96
+ "channel"
97
+ ]
98
+ },
99
+ "actions": {
100
+ "dtype": "float32",
101
+ "shape": [
102
+ 4
103
+ ],
104
+ "names": [
105
+ "actions"
106
+ ]
107
+ },
108
+ "timestamp": {
109
+ "dtype": "float32",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "names": null
114
+ },
115
+ "frame_index": {
116
+ "dtype": "int64",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "names": null
121
+ },
122
+ "episode_index": {
123
+ "dtype": "int64",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": null
128
+ },
129
+ "index": {
130
+ "dtype": "int64",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null
135
+ },
136
+ "task_index": {
137
+ "dtype": "int64",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "names": null
142
+ }
143
+ }
144
+ }
145
+ ```
146
+
147
+
148
+ ## Citation
149
+
150
+ **BibTeX:**
151
+
152
+ ```bibtex
153
+ [More Information Needed]
154
+ ```