jonyshaik commited on
Commit
d36dbae
·
verified ·
1 Parent(s): a9ba293

Upload README.md with huggingface_hub

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