CarolinePascal HF Staff commited on
Commit
321ded2
·
verified ·
1 Parent(s): 2bd94a0

Upload README.md with huggingface_hub

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