dancher00 commited on
Commit
0bea320
·
verified ·
1 Parent(s): 28a03b4

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +161 -0
README.md ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - ManiSkill
8
+ configs:
9
+ - config_name: default
10
+ data_files: data/*/*.parquet
11
+ ---
12
+
13
+ This dataset was created using [ManiSkill](https://maniskill.ai/).
14
+
15
+ ## Dataset Description
16
+
17
+
18
+
19
+ - **Homepage:** [More Information Needed]
20
+ - **Paper:** [More Information Needed]
21
+ - **License:** apache-2.0
22
+
23
+ ## Dataset Structure
24
+
25
+ [meta/info.json](meta/info.json):
26
+ ```json
27
+ {
28
+ "codebase_version": "v3.0",
29
+ "robot_type": "panda",
30
+ "total_episodes": 10,
31
+ "total_frames": 726,
32
+ "total_tasks": 1,
33
+ "total_videos": 10,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 30,
37
+ "data_files_size_in_mb": 0,
38
+ "splits": {
39
+ "train": "0:10"
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
+ "action": {
45
+ "dtype": "float32",
46
+ "shape": [
47
+ 8
48
+ ],
49
+ "names": [
50
+ "action_0",
51
+ "action_1",
52
+ "action_2",
53
+ "action_3",
54
+ "action_4",
55
+ "action_5",
56
+ "action_6",
57
+ "action_7"
58
+ ],
59
+ "fps": 30.0
60
+ },
61
+ "observation.state": {
62
+ "dtype": "float32",
63
+ "shape": [
64
+ 9
65
+ ],
66
+ "names": [
67
+ "joint_0",
68
+ "joint_1",
69
+ "joint_2",
70
+ "joint_3",
71
+ "joint_4",
72
+ "joint_5",
73
+ "joint_6",
74
+ "joint_7",
75
+ "joint_8"
76
+ ],
77
+ "fps": 30.0
78
+ },
79
+ "timestamp": {
80
+ "dtype": "float32",
81
+ "shape": [
82
+ 1
83
+ ],
84
+ "names": null,
85
+ "fps": 30.0
86
+ },
87
+ "frame_index": {
88
+ "dtype": "int64",
89
+ "shape": [
90
+ 1
91
+ ],
92
+ "names": null,
93
+ "fps": 30.0
94
+ },
95
+ "episode_index": {
96
+ "dtype": "int64",
97
+ "shape": [
98
+ 1
99
+ ],
100
+ "names": null,
101
+ "fps": 30.0
102
+ },
103
+ "index": {
104
+ "dtype": "int64",
105
+ "shape": [
106
+ 1
107
+ ],
108
+ "names": null,
109
+ "fps": 30.0
110
+ },
111
+ "task_index": {
112
+ "dtype": "int64",
113
+ "shape": [
114
+ 1
115
+ ],
116
+ "names": null,
117
+ "fps": 30.0
118
+ },
119
+ "task": {
120
+ "dtype": "string",
121
+ "shape": [
122
+ 1
123
+ ],
124
+ "names": null,
125
+ "fps": 30.0
126
+ },
127
+ "observation.images.base_camera": {
128
+ "dtype": "video",
129
+ "shape": [
130
+ 480,
131
+ 640,
132
+ 3
133
+ ],
134
+ "names": [
135
+ "height",
136
+ "width",
137
+ "channels"
138
+ ],
139
+ "info": {
140
+ "video.fps": 30.0,
141
+ "video.height": 480,
142
+ "video.width": 640,
143
+ "video.channels": 3,
144
+ "video.codec": "mp4v",
145
+ "video.pix_fmt": "yuv420p",
146
+ "video.is_depth_map": false,
147
+ "has_audio": false
148
+ }
149
+ }
150
+ }
151
+ }
152
+ ```
153
+
154
+
155
+ ## Citation
156
+
157
+ **BibTeX:**
158
+
159
+ ```bibtex
160
+ [More Information Needed]
161
+ ```