stevenoh2003 commited on
Commit
a39b2f9
·
verified ·
1 Parent(s): 5dbbe88

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +169 -0
README.md ADDED
@@ -0,0 +1,169 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "my_robot",
29
+ "total_episodes": 2,
30
+ "total_frames": 35,
31
+ "total_tasks": 2,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:2"
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
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 7
46
+ ],
47
+ "names": [
48
+ [
49
+ "elbow_joint",
50
+ "hande_right_finger_joint",
51
+ "shoulder_lift_joint",
52
+ "shoulder_pan_joint",
53
+ "wrist_1_joint",
54
+ "wrist_2_joint",
55
+ "wrist_3_joint"
56
+ ]
57
+ ]
58
+ },
59
+ "action": {
60
+ "dtype": "float32",
61
+ "shape": [
62
+ 7
63
+ ],
64
+ "names": [
65
+ [
66
+ "elbow_joint",
67
+ "hande_right_finger_joint",
68
+ "shoulder_lift_joint",
69
+ "shoulder_pan_joint",
70
+ "wrist_1_joint",
71
+ "wrist_2_joint",
72
+ "wrist_3_joint"
73
+ ]
74
+ ]
75
+ },
76
+ "observation.velocity": {
77
+ "dtype": "float32",
78
+ "shape": [
79
+ 7
80
+ ],
81
+ "names": [
82
+ [
83
+ "elbow_joint",
84
+ "hande_right_finger_joint",
85
+ "shoulder_lift_joint",
86
+ "shoulder_pan_joint",
87
+ "wrist_1_joint",
88
+ "wrist_2_joint",
89
+ "wrist_3_joint"
90
+ ]
91
+ ]
92
+ },
93
+ "observation.effort": {
94
+ "dtype": "float32",
95
+ "shape": [
96
+ 7
97
+ ],
98
+ "names": [
99
+ [
100
+ "elbow_joint",
101
+ "hande_right_finger_joint",
102
+ "shoulder_lift_joint",
103
+ "shoulder_pan_joint",
104
+ "wrist_1_joint",
105
+ "wrist_2_joint",
106
+ "wrist_3_joint"
107
+ ]
108
+ ]
109
+ },
110
+ "observation.images.cam0": {
111
+ "dtype": "image",
112
+ "shape": [
113
+ 3,
114
+ 480,
115
+ 640
116
+ ],
117
+ "names": [
118
+ "channels",
119
+ "height",
120
+ "width"
121
+ ]
122
+ },
123
+ "timestamp": {
124
+ "dtype": "float32",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": null
129
+ },
130
+ "frame_index": {
131
+ "dtype": "int64",
132
+ "shape": [
133
+ 1
134
+ ],
135
+ "names": null
136
+ },
137
+ "episode_index": {
138
+ "dtype": "int64",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null
143
+ },
144
+ "index": {
145
+ "dtype": "int64",
146
+ "shape": [
147
+ 1
148
+ ],
149
+ "names": null
150
+ },
151
+ "task_index": {
152
+ "dtype": "int64",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
+ }
158
+ }
159
+ }
160
+ ```
161
+
162
+
163
+ ## Citation
164
+
165
+ **BibTeX:**
166
+
167
+ ```bibtex
168
+ [More Information Needed]
169
+ ```