nik658 commited on
Commit
e329bed
·
verified ·
1 Parent(s): 2b68e28

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +146 -0
README.md ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 90,
30
+ "total_frames": 31191,
31
+ "total_tasks": 9,
32
+ "total_videos": 90,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 15,
36
+ "splits": {
37
+ "train": "0:90"
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.image": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 84,
46
+ 84,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "info": {
55
+ "video.height": 84,
56
+ "video.width": 84,
57
+ "video.codec": "av1",
58
+ "video.pix_fmt": "yuv420p",
59
+ "video.is_depth_map": false,
60
+ "video.fps": 15,
61
+ "video.channels": 3,
62
+ "has_audio": false
63
+ }
64
+ },
65
+ "observation.state": {
66
+ "dtype": "float32",
67
+ "shape": [
68
+ 4
69
+ ],
70
+ "names": null
71
+ },
72
+ "action": {
73
+ "dtype": "float32",
74
+ "shape": [
75
+ 4
76
+ ],
77
+ "names": null
78
+ },
79
+ "timestamp": {
80
+ "dtype": "float32",
81
+ "shape": [
82
+ 1
83
+ ],
84
+ "names": null
85
+ },
86
+ "next.reward": {
87
+ "dtype": "float32",
88
+ "shape": [
89
+ 1
90
+ ],
91
+ "names": null
92
+ },
93
+ "next.done": {
94
+ "dtype": "bool",
95
+ "shape": [
96
+ 1
97
+ ],
98
+ "names": null
99
+ },
100
+ "language_instruction": {
101
+ "dtype": "string",
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
+ }
136
+ }
137
+ ```
138
+
139
+
140
+ ## Citation
141
+
142
+ **BibTeX:**
143
+
144
+ ```bibtex
145
+ [More Information Needed]
146
+ ```