nepyope commited on
Commit
dbaac33
·
verified ·
1 Parent(s): 3c0495f

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": null,
29
+ "total_episodes": 16,
30
+ "total_frames": 21697,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:16"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
41
+ "features": {
42
+ "observation.image": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 480,
46
+ 640,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channels"
53
+ ],
54
+ "info": {
55
+ "video.height": 480,
56
+ "video.width": 640,
57
+ "video.codec": "av1",
58
+ "video.pix_fmt": "yuv420p",
59
+ "video.is_depth_map": false,
60
+ "video.fps": 30,
61
+ "video.channels": 3,
62
+ "has_audio": false
63
+ }
64
+ },
65
+ "observation.state": {
66
+ "dtype": "float32",
67
+ "shape": [
68
+ 14
69
+ ],
70
+ "names": [
71
+ "joint_1",
72
+ "joint_2",
73
+ "joint_3",
74
+ "joint_4",
75
+ "joint_5",
76
+ "joint_6",
77
+ "joint_7",
78
+ "joint_8",
79
+ "joint_9",
80
+ "joint_10",
81
+ "joint_11",
82
+ "joint_12",
83
+ "joint_13",
84
+ "joint_14"
85
+ ]
86
+ },
87
+ "action": {
88
+ "dtype": "float32",
89
+ "shape": [
90
+ 14
91
+ ],
92
+ "names": [
93
+ "joint_1",
94
+ "joint_2",
95
+ "joint_3",
96
+ "joint_4",
97
+ "joint_5",
98
+ "joint_6",
99
+ "joint_7",
100
+ "joint_8",
101
+ "joint_9",
102
+ "joint_10",
103
+ "joint_11",
104
+ "joint_12",
105
+ "joint_13",
106
+ "joint_14"
107
+ ]
108
+ },
109
+ "timestamp": {
110
+ "dtype": "float32",
111
+ "shape": [
112
+ 1
113
+ ],
114
+ "names": null
115
+ },
116
+ "frame_index": {
117
+ "dtype": "int64",
118
+ "shape": [
119
+ 1
120
+ ],
121
+ "names": null
122
+ },
123
+ "episode_index": {
124
+ "dtype": "int64",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": null
129
+ },
130
+ "index": {
131
+ "dtype": "int64",
132
+ "shape": [
133
+ 1
134
+ ],
135
+ "names": null
136
+ },
137
+ "task_index": {
138
+ "dtype": "int64",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null
143
+ }
144
+ }
145
+ }
146
+ ```
147
+
148
+
149
+ ## Citation
150
+
151
+ **BibTeX:**
152
+
153
+ ```bibtex
154
+ [More Information Needed]
155
+ ```