aadarshram commited on
Commit
83c0ce5
·
verified ·
1 Parent(s): cd370bc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +147 -0
README.md ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - metaworld
8
+ - robotics
9
+ configs:
10
+ - config_name: default
11
+ data_files: data/*/*.parquet
12
+ ---
13
+
14
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
15
+
16
+ ## Dataset Description
17
+
18
+
19
+
20
+ - **Homepage:** [More Information Needed]
21
+ - **Paper:** [More Information Needed]
22
+ - **License:** apache-2.0
23
+
24
+ ## Dataset Structure
25
+
26
+ [meta/info.json](meta/info.json):
27
+ ```json
28
+ {
29
+ "codebase_version": "v3.0",
30
+ "robot_type": "metaworld",
31
+ "total_episodes": 50,
32
+ "total_frames": 4362,
33
+ "total_tasks": 1,
34
+ "chunks_size": 1000,
35
+ "data_files_size_in_mb": 100,
36
+ "video_files_size_in_mb": 200,
37
+ "fps": 80,
38
+ "splits": {
39
+ "train": "0:50"
40
+ },
41
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
42
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
43
+ "features": {
44
+ "observation.image": {
45
+ "dtype": "image",
46
+ "shape": [
47
+ 480,
48
+ 480,
49
+ 3
50
+ ],
51
+ "names": [
52
+ "height",
53
+ "width",
54
+ "channels"
55
+ ]
56
+ },
57
+ "observation.state": {
58
+ "dtype": "float32",
59
+ "shape": [
60
+ 4
61
+ ],
62
+ "names": {
63
+ "axes": [
64
+ "x",
65
+ "y",
66
+ "z",
67
+ "gripper"
68
+ ]
69
+ }
70
+ },
71
+ "observation.environment_state": {
72
+ "dtype": "float32",
73
+ "shape": [
74
+ 39
75
+ ],
76
+ "names": [
77
+ "keypoints"
78
+ ]
79
+ },
80
+ "action": {
81
+ "dtype": "float32",
82
+ "shape": [
83
+ 4
84
+ ],
85
+ "names": {
86
+ "axes": [
87
+ "x",
88
+ "y",
89
+ "z",
90
+ "gripper"
91
+ ]
92
+ }
93
+ },
94
+ "task_id": {
95
+ "dtype": "int16",
96
+ "shape": [
97
+ 1
98
+ ],
99
+ "names": null
100
+ },
101
+ "timestamp": {
102
+ "dtype": "float32",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "names": null
107
+ },
108
+ "frame_index": {
109
+ "dtype": "int64",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "names": null
114
+ },
115
+ "episode_index": {
116
+ "dtype": "int64",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "names": null
121
+ },
122
+ "index": {
123
+ "dtype": "int64",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": null
128
+ },
129
+ "task_index": {
130
+ "dtype": "int64",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null
135
+ }
136
+ }
137
+ }
138
+ ```
139
+
140
+
141
+ ## Citation
142
+
143
+ **BibTeX:**
144
+
145
+ ```bibtex
146
+ [More Information Needed]
147
+ ```