jadechoghari commited on
Commit
2e98211
·
verified ·
1 Parent(s): 77256fa

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +156 -0
README.md ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "panda",
29
+ "total_episodes": 1693,
30
+ "total_frames": 273465,
31
+ "total_tasks": 40,
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:1693"
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
+ "observation.images.image": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 256,
46
+ 256,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "fps": 10.0,
55
+ "info": {
56
+ "video.height": 256,
57
+ "video.width": 256,
58
+ "video.codec": "av1",
59
+ "video.pix_fmt": "yuv420p",
60
+ "video.is_depth_map": false,
61
+ "video.fps": 10,
62
+ "video.channels": 3,
63
+ "has_audio": false
64
+ }
65
+ },
66
+ "observation.images.image2": {
67
+ "dtype": "video",
68
+ "shape": [
69
+ 256,
70
+ 256,
71
+ 3
72
+ ],
73
+ "names": [
74
+ "height",
75
+ "width",
76
+ "channel"
77
+ ],
78
+ "fps": 10.0,
79
+ "info": {
80
+ "video.height": 256,
81
+ "video.width": 256,
82
+ "video.codec": "av1",
83
+ "video.pix_fmt": "yuv420p",
84
+ "video.is_depth_map": false,
85
+ "video.fps": 10,
86
+ "video.channels": 3,
87
+ "has_audio": false
88
+ }
89
+ },
90
+ "observation.state": {
91
+ "dtype": "float32",
92
+ "shape": [
93
+ 8
94
+ ],
95
+ "names": [
96
+ "state"
97
+ ],
98
+ "fps": 10.0
99
+ },
100
+ "action": {
101
+ "dtype": "float32",
102
+ "shape": [
103
+ 7
104
+ ],
105
+ "names": [
106
+ "actions"
107
+ ],
108
+ "fps": 10.0
109
+ },
110
+ "timestamp": {
111
+ "dtype": "float32",
112
+ "shape": [
113
+ 1
114
+ ],
115
+ "names": null
116
+ },
117
+ "frame_index": {
118
+ "dtype": "int64",
119
+ "shape": [
120
+ 1
121
+ ],
122
+ "names": null
123
+ },
124
+ "episode_index": {
125
+ "dtype": "int64",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ },
138
+ "task_index": {
139
+ "dtype": "int64",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ }
145
+ }
146
+ }
147
+ ```
148
+
149
+
150
+ ## Citation
151
+
152
+ **BibTeX:**
153
+
154
+ ```bibtex
155
+ [More Information Needed]
156
+ ```