IMsubin commited on
Commit
f351bc7
·
verified ·
1 Parent(s): abc89fb

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +163 -0
README.md ADDED
@@ -0,0 +1,163 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "omx_f",
29
+ "total_episodes": 199,
30
+ "total_frames": 187032,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "fps": 30,
34
+ "splits": {
35
+ "train": "0:198"
36
+ },
37
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
38
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
39
+ "features": {
40
+ "timestamp": {
41
+ "dtype": "float32",
42
+ "shape": [
43
+ 1
44
+ ],
45
+ "names": null,
46
+ "fps": 30
47
+ },
48
+ "frame_index": {
49
+ "dtype": "int64",
50
+ "shape": [
51
+ 1
52
+ ],
53
+ "names": null,
54
+ "fps": 30
55
+ },
56
+ "episode_index": {
57
+ "dtype": "int64",
58
+ "shape": [
59
+ 1
60
+ ],
61
+ "names": null,
62
+ "fps": 30
63
+ },
64
+ "index": {
65
+ "dtype": "int64",
66
+ "shape": [
67
+ 1
68
+ ],
69
+ "names": null,
70
+ "fps": 30
71
+ },
72
+ "task_index": {
73
+ "dtype": "int64",
74
+ "shape": [
75
+ 1
76
+ ],
77
+ "names": null,
78
+ "fps": 30
79
+ },
80
+ "observation.images.wrist_cam": {
81
+ "dtype": "video",
82
+ "names": [
83
+ "height",
84
+ "width",
85
+ "channels"
86
+ ],
87
+ "shape": [
88
+ 480,
89
+ 640,
90
+ 3
91
+ ],
92
+ "info": {
93
+ "video.height": 480,
94
+ "video.width": 640,
95
+ "video.channels": 3,
96
+ "video.codec": "libx264",
97
+ "video.pix_fmt": "yuv420p"
98
+ }
99
+ },
100
+ "observation.images.top_cam": {
101
+ "dtype": "video",
102
+ "names": [
103
+ "height",
104
+ "width",
105
+ "channels"
106
+ ],
107
+ "shape": [
108
+ 480,
109
+ 640,
110
+ 3
111
+ ],
112
+ "info": {
113
+ "video.height": 480,
114
+ "video.width": 640,
115
+ "video.channels": 3,
116
+ "video.codec": "libx264",
117
+ "video.pix_fmt": "yuv420p"
118
+ }
119
+ },
120
+ "observation.state": {
121
+ "dtype": "float32",
122
+ "names": [
123
+ "joint1",
124
+ "joint2",
125
+ "joint3",
126
+ "joint4",
127
+ "joint5",
128
+ "gripper_joint_1"
129
+ ],
130
+ "shape": [
131
+ 6
132
+ ],
133
+ "fps": 30
134
+ },
135
+ "action": {
136
+ "dtype": "float32",
137
+ "names": [
138
+ "joint1",
139
+ "joint2",
140
+ "joint3",
141
+ "joint4",
142
+ "joint5",
143
+ "gripper_joint_1"
144
+ ],
145
+ "shape": [
146
+ 6
147
+ ],
148
+ "fps": 30
149
+ }
150
+ },
151
+ "data_files_size_in_mb": 100,
152
+ "video_files_size_in_mb": 500
153
+ }
154
+ ```
155
+
156
+
157
+ ## Citation
158
+
159
+ **BibTeX:**
160
+
161
+ ```bibtex
162
+ [More Information Needed]
163
+ ```