pepijn223 HF Staff commited on
Commit
7aa757b
·
verified ·
1 Parent(s): 2f7ec13

Upload README.md with huggingface_hub

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