TreeePlanter commited on
Commit
d6c19e4
·
verified ·
1 Parent(s): b5fdad4

Upload README.md with huggingface_hub

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