mshukor HF staff commited on
Commit
94dc7d3
·
verified ·
1 Parent(s): 194aa85

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.0",
28
+ "robot_type": "metaworld",
29
+ "total_episodes": 100,
30
+ "total_frames": 6125,
31
+ "total_tasks": 1,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 80,
36
+ "splits": {
37
+ "train": "0:100"
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
+ "axes": null
49
+ }
50
+ },
51
+ "action": {
52
+ "dtype": "float32",
53
+ "shape": [
54
+ 4
55
+ ],
56
+ "names": {
57
+ "axes": [
58
+ "x",
59
+ "y",
60
+ "z",
61
+ "gripper"
62
+ ]
63
+ }
64
+ },
65
+ "next.reward": {
66
+ "dtype": "float32",
67
+ "shape": [
68
+ 1
69
+ ],
70
+ "names": null
71
+ },
72
+ "next.success": {
73
+ "dtype": "bool",
74
+ "shape": [
75
+ 1
76
+ ],
77
+ "names": null
78
+ },
79
+ "observation.environment_state": {
80
+ "dtype": "float32",
81
+ "shape": [
82
+ 39
83
+ ],
84
+ "names": [
85
+ "keypoints"
86
+ ]
87
+ },
88
+ "observation.image": {
89
+ "dtype": "image",
90
+ "shape": [
91
+ 3,
92
+ 480,
93
+ 480
94
+ ],
95
+ "names": [
96
+ "channels",
97
+ "height",
98
+ "width"
99
+ ]
100
+ },
101
+ "task_id": {
102
+ "dtype": "int16",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "names": null
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
+ ```