tailong-wu commited on
Commit
d54542e
·
verified ·
1 Parent(s): 4135f7f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +153 -0
README.md ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "xarm",
29
+ "total_episodes": 442226,
30
+ "total_frames": 7045476,
31
+ "total_tasks": 127605,
32
+ "chunks_size": 1000,
33
+ "fps": 10,
34
+ "splits": {
35
+ "train": "0:442226"
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
+ "observation.images.rgb": {
41
+ "dtype": "video",
42
+ "shape": [
43
+ 256,
44
+ 256,
45
+ 3
46
+ ],
47
+ "names": [
48
+ "height",
49
+ "width",
50
+ "rgb"
51
+ ],
52
+ "info": {
53
+ "video.fps": 10.0,
54
+ "video.height": 256,
55
+ "video.width": 256,
56
+ "video.channels": 3,
57
+ "video.codec": "h264",
58
+ "video.pix_fmt": "yuv420p",
59
+ "video.is_depth_map": false,
60
+ "has_audio": false
61
+ }
62
+ },
63
+ "observation.state": {
64
+ "dtype": "float32",
65
+ "shape": [
66
+ 8
67
+ ],
68
+ "names": {
69
+ "motors": [
70
+ "x",
71
+ "y",
72
+ "z",
73
+ "roll",
74
+ "pitch",
75
+ "yaw",
76
+ "pad",
77
+ "gripper"
78
+ ]
79
+ },
80
+ "fps": 10
81
+ },
82
+ "action": {
83
+ "dtype": "float32",
84
+ "shape": [
85
+ 7
86
+ ],
87
+ "names": {
88
+ "motors": [
89
+ "x",
90
+ "y",
91
+ "z",
92
+ "roll",
93
+ "pitch",
94
+ "yaw",
95
+ "gripper"
96
+ ]
97
+ },
98
+ "fps": 10
99
+ },
100
+ "timestamp": {
101
+ "dtype": "float32",
102
+ "shape": [
103
+ 1
104
+ ],
105
+ "names": null,
106
+ "fps": 10
107
+ },
108
+ "frame_index": {
109
+ "dtype": "int64",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "names": null,
114
+ "fps": 10
115
+ },
116
+ "episode_index": {
117
+ "dtype": "int64",
118
+ "shape": [
119
+ 1
120
+ ],
121
+ "names": null,
122
+ "fps": 10
123
+ },
124
+ "index": {
125
+ "dtype": "int64",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null,
130
+ "fps": 10
131
+ },
132
+ "task_index": {
133
+ "dtype": "int64",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null,
138
+ "fps": 10
139
+ }
140
+ },
141
+ "data_files_size_in_mb": 100,
142
+ "video_files_size_in_mb": 200
143
+ }
144
+ ```
145
+
146
+
147
+ ## Citation
148
+
149
+ **BibTeX:**
150
+
151
+ ```bibtex
152
+ [More Information Needed]
153
+ ```