aractingi HF Staff commited on
Commit
12c8dc4
·
verified ·
1 Parent(s): f4fb049

Upload README.md with huggingface_hub

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