RobotisSW commited on
Commit
2f06f4e
·
verified ·
1 Parent(s): 7f52ec4

Upload README.md with huggingface_hub

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