jadechoghari commited on
Commit
66a4f67
·
verified ·
1 Parent(s): 4c6d967

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +172 -0
README.md ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v3.0",
28
+ "robot_type": "libero_panda",
29
+ "total_episodes": 500,
30
+ "total_frames": 138090,
31
+ "total_tasks": 10,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 10.0,
36
+ "splits": {
37
+ "train": "0:500"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
41
+ "features": {
42
+ "timestamp": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 1
46
+ ],
47
+ "names": null
48
+ },
49
+ "frame_index": {
50
+ "dtype": "int64",
51
+ "shape": [
52
+ 1
53
+ ],
54
+ "names": null
55
+ },
56
+ "episode_index": {
57
+ "dtype": "int64",
58
+ "shape": [
59
+ 1
60
+ ],
61
+ "names": null
62
+ },
63
+ "index": {
64
+ "dtype": "int64",
65
+ "shape": [
66
+ 1
67
+ ],
68
+ "names": null
69
+ },
70
+ "task_index": {
71
+ "dtype": "int64",
72
+ "shape": [
73
+ 1
74
+ ],
75
+ "names": null
76
+ },
77
+ "subtask_index": {
78
+ "dtype": "int64",
79
+ "shape": [
80
+ 1
81
+ ],
82
+ "names": null
83
+ },
84
+ "observation.state": {
85
+ "dtype": "float32",
86
+ "shape": [
87
+ 8
88
+ ],
89
+ "names": [
90
+ "state_dim_0",
91
+ "state_dim_1",
92
+ "state_dim_2",
93
+ "state_dim_3",
94
+ "state_dim_4",
95
+ "state_dim_5",
96
+ "state_dim_6",
97
+ "state_dim_7"
98
+ ]
99
+ },
100
+ "observation.images.image": {
101
+ "dtype": "video",
102
+ "shape": [
103
+ 3,
104
+ 256,
105
+ 256
106
+ ],
107
+ "names": [
108
+ "channel",
109
+ "height",
110
+ "width"
111
+ ],
112
+ "info": {
113
+ "video.height": 256,
114
+ "video.width": 256,
115
+ "video.codec": "av1",
116
+ "video.pix_fmt": "yuv420p",
117
+ "video.is_depth_map": false,
118
+ "video.fps": 10,
119
+ "video.channels": 3,
120
+ "has_audio": false
121
+ }
122
+ },
123
+ "observation.images.image2": {
124
+ "dtype": "video",
125
+ "shape": [
126
+ 3,
127
+ 256,
128
+ 256
129
+ ],
130
+ "names": [
131
+ "channel",
132
+ "height",
133
+ "width"
134
+ ],
135
+ "info": {
136
+ "video.height": 256,
137
+ "video.width": 256,
138
+ "video.codec": "av1",
139
+ "video.pix_fmt": "yuv420p",
140
+ "video.is_depth_map": false,
141
+ "video.fps": 10,
142
+ "video.channels": 3,
143
+ "has_audio": false
144
+ }
145
+ },
146
+ "action": {
147
+ "dtype": "float32",
148
+ "shape": [
149
+ 7
150
+ ],
151
+ "names": [
152
+ "action_dim_0",
153
+ "action_dim_1",
154
+ "action_dim_2",
155
+ "action_dim_3",
156
+ "action_dim_4",
157
+ "action_dim_5",
158
+ "action_dim_6"
159
+ ]
160
+ }
161
+ }
162
+ }
163
+ ```
164
+
165
+
166
+ ## Citation
167
+
168
+ **BibTeX:**
169
+
170
+ ```bibtex
171
+ [More Information Needed]
172
+ ```