lilkm commited on
Commit
4b3aae4
·
verified ·
1 Parent(s): 520caed

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": "v2.1",
28
+ "robot_type": null,
29
+ "total_episodes": 30,
30
+ "total_frames": 532,
31
+ "total_tasks": 1,
32
+ "total_videos": 60,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:30"
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.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 19
46
+ ],
47
+ "names": null
48
+ },
49
+ "action": {
50
+ "dtype": "float32",
51
+ "shape": [
52
+ 4
53
+ ],
54
+ "names": null
55
+ },
56
+ "next.reward": {
57
+ "dtype": "float32",
58
+ "shape": [
59
+ 1
60
+ ],
61
+ "names": null
62
+ },
63
+ "next.done": {
64
+ "dtype": "bool",
65
+ "shape": [
66
+ 1
67
+ ],
68
+ "names": null
69
+ },
70
+ "complementary_info.gripper_penalty": {
71
+ "dtype": "float32",
72
+ "shape": [
73
+ 1
74
+ ],
75
+ "names": [
76
+ "gripper_penalty"
77
+ ]
78
+ },
79
+ "observation.images.front": {
80
+ "dtype": "video",
81
+ "shape": [
82
+ 3,
83
+ 128,
84
+ 128
85
+ ],
86
+ "names": null,
87
+ "info": {
88
+ "video.fps": 10.0,
89
+ "video.height": 128,
90
+ "video.width": 128,
91
+ "video.channels": 3,
92
+ "video.codec": "av1",
93
+ "video.pix_fmt": "yuv420p",
94
+ "video.is_depth_map": false,
95
+ "has_audio": false
96
+ }
97
+ },
98
+ "observation.images.wrist": {
99
+ "dtype": "video",
100
+ "shape": [
101
+ 3,
102
+ 128,
103
+ 128
104
+ ],
105
+ "names": null,
106
+ "info": {
107
+ "video.fps": 10.0,
108
+ "video.height": 128,
109
+ "video.width": 128,
110
+ "video.channels": 3,
111
+ "video.codec": "av1",
112
+ "video.pix_fmt": "yuv420p",
113
+ "video.is_depth_map": false,
114
+ "has_audio": false
115
+ }
116
+ },
117
+ "timestamp": {
118
+ "dtype": "float32",
119
+ "shape": [
120
+ 1
121
+ ],
122
+ "names": null
123
+ },
124
+ "frame_index": {
125
+ "dtype": "int64",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "episode_index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ },
138
+ "index": {
139
+ "dtype": "int64",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ },
145
+ "task_index": {
146
+ "dtype": "int64",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ }
152
+ }
153
+ }
154
+ ```
155
+
156
+
157
+ ## Citation
158
+
159
+ **BibTeX:**
160
+
161
+ ```bibtex
162
+ [More Information Needed]
163
+ ```