ShockleyWong commited on
Commit
47131bd
·
verified ·
1 Parent(s): be9d252

Upload README.md with huggingface_hub

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