JoSTR commited on
Commit
ecd4112
·
verified ·
1 Parent(s): 121116d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +167 -0
README.md ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "xarm",
30
+ "total_episodes": 31,
31
+ "total_frames": 26423,
32
+ "total_tasks": 1,
33
+ "total_videos": 62,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 30,
37
+ "splits": {
38
+ "train": "0:31"
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
+ 8
47
+ ],
48
+ "names": [
49
+ "J_1",
50
+ "J_2",
51
+ "J_3",
52
+ "J_4",
53
+ "J_5",
54
+ "J_6",
55
+ "J_7",
56
+ "G"
57
+ ]
58
+ },
59
+ "observation.state": {
60
+ "dtype": "float32",
61
+ "shape": [
62
+ 8
63
+ ],
64
+ "names": [
65
+ "J_1",
66
+ "J_2",
67
+ "J_3",
68
+ "J_4",
69
+ "J_5",
70
+ "J_6",
71
+ "J_7",
72
+ "G"
73
+ ]
74
+ },
75
+ "observation.images.gripper": {
76
+ "dtype": "video",
77
+ "shape": [
78
+ 480,
79
+ 640,
80
+ 3
81
+ ],
82
+ "names": [
83
+ "height",
84
+ "width",
85
+ "channels"
86
+ ],
87
+ "info": {
88
+ "video.fps": 30.0,
89
+ "video.height": 480,
90
+ "video.width": 640,
91
+ "video.channels": 3,
92
+ "video.codec": "av1",
93
+ "video.pix_fmt": "yuv420p",
94
+ "video.is_depth_map": false,
95
+ "has_audio": false
96
+ }
97
+ },
98
+ "observation.images.front": {
99
+ "dtype": "video",
100
+ "shape": [
101
+ 480,
102
+ 640,
103
+ 3
104
+ ],
105
+ "names": [
106
+ "height",
107
+ "width",
108
+ "channels"
109
+ ],
110
+ "info": {
111
+ "video.fps": 30.0,
112
+ "video.height": 480,
113
+ "video.width": 640,
114
+ "video.channels": 3,
115
+ "video.codec": "av1",
116
+ "video.pix_fmt": "yuv420p",
117
+ "video.is_depth_map": false,
118
+ "has_audio": false
119
+ }
120
+ },
121
+ "timestamp": {
122
+ "dtype": "float32",
123
+ "shape": [
124
+ 1
125
+ ],
126
+ "names": null
127
+ },
128
+ "frame_index": {
129
+ "dtype": "int64",
130
+ "shape": [
131
+ 1
132
+ ],
133
+ "names": null
134
+ },
135
+ "episode_index": {
136
+ "dtype": "int64",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ },
142
+ "index": {
143
+ "dtype": "int64",
144
+ "shape": [
145
+ 1
146
+ ],
147
+ "names": null
148
+ },
149
+ "task_index": {
150
+ "dtype": "int64",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": null
155
+ }
156
+ }
157
+ }
158
+ ```
159
+
160
+
161
+ ## Citation
162
+
163
+ **BibTeX:**
164
+
165
+ ```bibtex
166
+ [More Information Needed]
167
+ ```