seann999 commited on
Commit
e193e54
·
verified ·
1 Parent(s): c61996a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +128 -0
README.md ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - 2D
8
+ - navigation
9
+ - tutorial
10
+ configs:
11
+ - config_name: default
12
+ data_files: data/*/*.parquet
13
+ ---
14
+
15
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
16
+
17
+ ## Dataset Description
18
+
19
+
20
+
21
+ - **Homepage:** [More Information Needed]
22
+ - **Paper:** [More Information Needed]
23
+ - **License:** apache-2.0
24
+
25
+ ## Dataset Structure
26
+
27
+ [meta/info.json](meta/info.json):
28
+ ```json
29
+ {
30
+ "codebase_version": "v2.1",
31
+ "robot_type": null,
32
+ "total_episodes": 1000,
33
+ "total_frames": 32099,
34
+ "total_tasks": 1,
35
+ "total_videos": 1000,
36
+ "total_chunks": 1,
37
+ "chunks_size": 1000,
38
+ "fps": 10,
39
+ "splits": {
40
+ "train": "0:1000"
41
+ },
42
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
43
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
44
+ "features": {
45
+ "action": {
46
+ "dtype": "float32",
47
+ "shape": [
48
+ 2
49
+ ],
50
+ "names": null
51
+ },
52
+ "observation.state": {
53
+ "dtype": "float32",
54
+ "shape": [
55
+ 2
56
+ ],
57
+ "names": null
58
+ },
59
+ "observation.image": {
60
+ "dtype": "video",
61
+ "shape": [
62
+ 64,
63
+ 64,
64
+ 3
65
+ ],
66
+ "names": [
67
+ "height",
68
+ "width",
69
+ "channels"
70
+ ],
71
+ "info": {
72
+ "video.fps": 10.0,
73
+ "video.height": 64,
74
+ "video.width": 64,
75
+ "video.channels": 3,
76
+ "video.codec": "av1",
77
+ "video.pix_fmt": "yuv420p",
78
+ "video.is_depth_map": false,
79
+ "has_audio": false
80
+ }
81
+ },
82
+ "timestamp": {
83
+ "dtype": "float32",
84
+ "shape": [
85
+ 1
86
+ ],
87
+ "names": null
88
+ },
89
+ "frame_index": {
90
+ "dtype": "int64",
91
+ "shape": [
92
+ 1
93
+ ],
94
+ "names": null
95
+ },
96
+ "episode_index": {
97
+ "dtype": "int64",
98
+ "shape": [
99
+ 1
100
+ ],
101
+ "names": null
102
+ },
103
+ "index": {
104
+ "dtype": "int64",
105
+ "shape": [
106
+ 1
107
+ ],
108
+ "names": null
109
+ },
110
+ "task_index": {
111
+ "dtype": "int64",
112
+ "shape": [
113
+ 1
114
+ ],
115
+ "names": null
116
+ }
117
+ }
118
+ }
119
+ ```
120
+
121
+
122
+ ## Citation
123
+
124
+ **BibTeX:**
125
+
126
+ ```bibtex
127
+ [More Information Needed]
128
+ ```