1g0rrr commited on
Commit
c821c06
·
verified ·
1 Parent(s): 6f12f90

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +143 -0
README.md ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - moss
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.0",
30
+ "robot_type": "moss",
31
+ "total_episodes": 5,
32
+ "total_frames": 1500,
33
+ "total_tasks": 1,
34
+ "total_videos": 5,
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
+ 7
48
+ ],
49
+ "names": [
50
+ "main_shoulder_pan",
51
+ "main_shoulder_lift",
52
+ "main_elbow_flex",
53
+ "main_wrist_flex",
54
+ "main_wrist_side",
55
+ "main_wrist_roll",
56
+ "main_gripper"
57
+ ]
58
+ },
59
+ "observation.state": {
60
+ "dtype": "float32",
61
+ "shape": [
62
+ 7
63
+ ],
64
+ "names": [
65
+ "main_shoulder_pan",
66
+ "main_shoulder_lift",
67
+ "main_elbow_flex",
68
+ "main_wrist_flex",
69
+ "main_wrist_side",
70
+ "main_wrist_roll",
71
+ "main_gripper"
72
+ ]
73
+ },
74
+ "observation.images.laptop": {
75
+ "dtype": "video",
76
+ "shape": [
77
+ 480,
78
+ 640,
79
+ 3
80
+ ],
81
+ "names": [
82
+ "height",
83
+ "width",
84
+ "channels"
85
+ ],
86
+ "info": {
87
+ "video.fps": 30.0,
88
+ "video.height": 480,
89
+ "video.width": 640,
90
+ "video.channels": 3,
91
+ "video.codec": "av1",
92
+ "video.pix_fmt": "yuv420p",
93
+ "video.is_depth_map": false,
94
+ "has_audio": false
95
+ }
96
+ },
97
+ "timestamp": {
98
+ "dtype": "float32",
99
+ "shape": [
100
+ 1
101
+ ],
102
+ "names": null
103
+ },
104
+ "frame_index": {
105
+ "dtype": "int64",
106
+ "shape": [
107
+ 1
108
+ ],
109
+ "names": null
110
+ },
111
+ "episode_index": {
112
+ "dtype": "int64",
113
+ "shape": [
114
+ 1
115
+ ],
116
+ "names": null
117
+ },
118
+ "index": {
119
+ "dtype": "int64",
120
+ "shape": [
121
+ 1
122
+ ],
123
+ "names": null
124
+ },
125
+ "task_index": {
126
+ "dtype": "int64",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null
131
+ }
132
+ }
133
+ }
134
+ ```
135
+
136
+
137
+ ## Citation
138
+
139
+ **BibTeX:**
140
+
141
+ ```bibtex
142
+ [More Information Needed]
143
+ ```