takuzennn commited on
Commit
3c73a07
·
verified ·
1 Parent(s): d10cba2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +140 -0
README.md ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v2.0",
28
+ "robot_type": "aloha-stationary",
29
+ "total_episodes": 200,
30
+ "total_frames": 200,
31
+ "total_tasks": 1,
32
+ "total_videos": 400,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:200"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "action": {
43
+ "dtype": "float64",
44
+ "shape": [
45
+ 7
46
+ ],
47
+ "names": null
48
+ },
49
+ "observations.images.agentview": {
50
+ "dtype": "video",
51
+ "shape": [
52
+ 3,
53
+ 84,
54
+ 84
55
+ ],
56
+ "names": null,
57
+ "info": {
58
+ "video.fps": 10.0,
59
+ "video.height": 84,
60
+ "video.width": 84,
61
+ "video.channels": 3,
62
+ "video.codec": "h264",
63
+ "video.pix_fmt": "yuv420p",
64
+ "video.is_depth_map": false,
65
+ "has_audio": false
66
+ }
67
+ },
68
+ "observations.images.robot0_eye_in_hand": {
69
+ "dtype": "video",
70
+ "shape": [
71
+ 3,
72
+ 84,
73
+ 84
74
+ ],
75
+ "names": null,
76
+ "info": {
77
+ "video.fps": 10.0,
78
+ "video.height": 84,
79
+ "video.width": 84,
80
+ "video.channels": 3,
81
+ "video.codec": "h264",
82
+ "video.pix_fmt": "yuv420p",
83
+ "video.is_depth_map": false,
84
+ "has_audio": false
85
+ }
86
+ },
87
+ "observations.qpos": {
88
+ "dtype": "float32",
89
+ "shape": [
90
+ 9
91
+ ],
92
+ "names": null
93
+ },
94
+ "timestamp": {
95
+ "dtype": "float32",
96
+ "shape": [
97
+ 1
98
+ ],
99
+ "names": null
100
+ },
101
+ "frame_index": {
102
+ "dtype": "int64",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "names": null
107
+ },
108
+ "episode_index": {
109
+ "dtype": "int64",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "names": null
114
+ },
115
+ "index": {
116
+ "dtype": "int64",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "names": null
121
+ },
122
+ "task_index": {
123
+ "dtype": "int64",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": null
128
+ }
129
+ }
130
+ }
131
+ ```
132
+
133
+
134
+ ## Citation
135
+
136
+ **BibTeX:**
137
+
138
+ ```bibtex
139
+ [More Information Needed]
140
+ ```