Robomaster commited on
Commit
8fe5f92
·
verified ·
1 Parent(s): 12eb903

Upload README.md with huggingface_hub

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