obfish commited on
Commit
a2fb9ed
·
verified ·
1 Parent(s): 213edd9

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: mit
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - medical
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:** mit
22
+
23
+ ## Dataset Structure
24
+
25
+ [meta/info.json](meta/info.json):
26
+ ```json
27
+ {
28
+ "codebase_version": "v2.0",
29
+ "robot_type": "aloha",
30
+ "total_episodes": 100,
31
+ "total_frames": 49959,
32
+ "total_tasks": 1,
33
+ "total_videos": 200,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 50,
37
+ "splits": {
38
+ "train": "0:100"
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
+ "state": {
44
+ "dtype": "float32",
45
+ "shape": [
46
+ 7
47
+ ],
48
+ "names": [
49
+ "state"
50
+ ]
51
+ },
52
+ "actions": {
53
+ "dtype": "float32",
54
+ "shape": [
55
+ 7
56
+ ],
57
+ "names": [
58
+ "actions"
59
+ ]
60
+ },
61
+ "image": {
62
+ "dtype": "video",
63
+ "shape": [
64
+ 224,
65
+ 224,
66
+ 3
67
+ ],
68
+ "names": [
69
+ "height",
70
+ "width",
71
+ "channel"
72
+ ],
73
+ "info": {
74
+ "video.fps": 50.0,
75
+ "video.height": 224,
76
+ "video.width": 224,
77
+ "video.channels": 3,
78
+ "video.codec": "av1",
79
+ "video.pix_fmt": "yuv420p",
80
+ "video.is_depth_map": false,
81
+ "has_audio": false
82
+ }
83
+ },
84
+ "wrist_image": {
85
+ "dtype": "video",
86
+ "shape": [
87
+ 224,
88
+ 224,
89
+ 3
90
+ ],
91
+ "names": [
92
+ "height",
93
+ "width",
94
+ "channel"
95
+ ],
96
+ "info": {
97
+ "video.fps": 50.0,
98
+ "video.height": 224,
99
+ "video.width": 224,
100
+ "video.channels": 3,
101
+ "video.codec": "av1",
102
+ "video.pix_fmt": "yuv420p",
103
+ "video.is_depth_map": false,
104
+ "has_audio": false
105
+ }
106
+ },
107
+ "timestamp": {
108
+ "dtype": "float32",
109
+ "shape": [
110
+ 1
111
+ ],
112
+ "names": null
113
+ },
114
+ "frame_index": {
115
+ "dtype": "int64",
116
+ "shape": [
117
+ 1
118
+ ],
119
+ "names": null
120
+ },
121
+ "episode_index": {
122
+ "dtype": "int64",
123
+ "shape": [
124
+ 1
125
+ ],
126
+ "names": null
127
+ },
128
+ "index": {
129
+ "dtype": "int64",
130
+ "shape": [
131
+ 1
132
+ ],
133
+ "names": null
134
+ },
135
+ "task_index": {
136
+ "dtype": "int64",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ }
142
+ }
143
+ }
144
+ ```
145
+
146
+
147
+ ## Citation
148
+
149
+ **BibTeX:**
150
+
151
+ ```bibtex
152
+ [More Information Needed]
153
+ ```