iantc104 commited on
Commit
15772d3
1 Parent(s): d39b99d

Upload README.md with huggingface_hub

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