RobotisSW commited on
Commit
ce943c5
·
verified ·
1 Parent(s): fab8324

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +160 -0
README.md ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - tutorial
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:** apache-2.0
22
+
23
+ ## Dataset Structure
24
+
25
+ [meta/info.json](meta/info.json):
26
+ ```json
27
+ {
28
+ "codebase_version": "v2.1",
29
+ "robot_type": "ffw",
30
+ "total_episodes": 2,
31
+ "total_frames": 211,
32
+ "total_tasks": 1,
33
+ "total_videos": 2,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 30,
37
+ "splits": {
38
+ "train": "0:2"
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
+ "action": {
44
+ "dtype": "float32",
45
+ "shape": [
46
+ 16
47
+ ],
48
+ "names": [
49
+ "arm_right_waist",
50
+ "arm_right_shoulder",
51
+ "arm_right_shoulder_shadow",
52
+ "arm_right_elbow",
53
+ "arm_right_elbow_shadow",
54
+ "arm_right_forearm_roll",
55
+ "arm_right_wrist_angle",
56
+ "arm_right_gripper",
57
+ "arm_left_waist",
58
+ "arm_left_shoulder",
59
+ "arm_left_shoulder_shadow",
60
+ "arm_left_elbow",
61
+ "arm_left_elbow_shadow",
62
+ "arm_left_forearm_roll",
63
+ "arm_left_wrist_angle",
64
+ "arm_left_gripper"
65
+ ]
66
+ },
67
+ "observation.state": {
68
+ "dtype": "float32",
69
+ "shape": [
70
+ 16
71
+ ],
72
+ "names": [
73
+ "arm_right_waist",
74
+ "arm_right_shoulder",
75
+ "arm_right_shoulder_shadow",
76
+ "arm_right_elbow",
77
+ "arm_right_elbow_shadow",
78
+ "arm_right_forearm_roll",
79
+ "arm_right_wrist_angle",
80
+ "arm_right_gripper",
81
+ "arm_left_waist",
82
+ "arm_left_shoulder",
83
+ "arm_left_shoulder_shadow",
84
+ "arm_left_elbow",
85
+ "arm_left_elbow_shadow",
86
+ "arm_left_forearm_roll",
87
+ "arm_left_wrist_angle",
88
+ "arm_left_gripper"
89
+ ]
90
+ },
91
+ "observation.images.cam_head": {
92
+ "dtype": "video",
93
+ "shape": [
94
+ 480,
95
+ 640,
96
+ 3
97
+ ],
98
+ "names": [
99
+ "height",
100
+ "width",
101
+ "channels"
102
+ ],
103
+ "info": {
104
+ "video.fps": 30.0,
105
+ "video.height": 480,
106
+ "video.width": 640,
107
+ "video.channels": 3,
108
+ "video.codec": "h264",
109
+ "video.pix_fmt": "yuv420p",
110
+ "video.is_depth_map": false,
111
+ "has_audio": false
112
+ }
113
+ },
114
+ "timestamp": {
115
+ "dtype": "float32",
116
+ "shape": [
117
+ 1
118
+ ],
119
+ "names": null
120
+ },
121
+ "frame_index": {
122
+ "dtype": "int64",
123
+ "shape": [
124
+ 1
125
+ ],
126
+ "names": null
127
+ },
128
+ "episode_index": {
129
+ "dtype": "int64",
130
+ "shape": [
131
+ 1
132
+ ],
133
+ "names": null
134
+ },
135
+ "index": {
136
+ "dtype": "int64",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ },
142
+ "task_index": {
143
+ "dtype": "int64",
144
+ "shape": [
145
+ 1
146
+ ],
147
+ "names": null
148
+ }
149
+ }
150
+ }
151
+ ```
152
+
153
+
154
+ ## Citation
155
+
156
+ **BibTeX:**
157
+
158
+ ```bibtex
159
+ [More Information Needed]
160
+ ```