iantc104 commited on
Commit
7e7d72d
·
verified ·
1 Parent(s): ed0a53e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +156 -0
README.md ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": null,
29
+ "total_episodes": 1000,
30
+ "total_frames": 370952,
31
+ "total_tasks": 1,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:1000"
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": "float32",
44
+ "shape": [
45
+ 10
46
+ ],
47
+ "names": [
48
+ "eef_pos_x",
49
+ "eef_pos_y",
50
+ "eef_pos_z",
51
+ "eef_rot_0",
52
+ "eef_rot_1",
53
+ "eef_rot_2",
54
+ "eef_rot_3",
55
+ "eef_rot_4",
56
+ "eef_rot_5",
57
+ "gripper_pos"
58
+ ]
59
+ },
60
+ "observation.state": {
61
+ "dtype": "float32",
62
+ "shape": [
63
+ 16
64
+ ],
65
+ "names": [
66
+ "eef_pos_x",
67
+ "eef_pos_y",
68
+ "eef_pos_z",
69
+ "eef_rot_0",
70
+ "eef_rot_1",
71
+ "eef_rot_2",
72
+ "eef_rot_3",
73
+ "eef_rot_4",
74
+ "eef_rot_5",
75
+ "gripper_pos",
76
+ "shoulder_pan_joint",
77
+ "shoulder_lift_joint",
78
+ "elbow_joint",
79
+ "wrist_1_joint",
80
+ "wrist_2_joint",
81
+ "wrist_3_joint"
82
+ ]
83
+ },
84
+ "observation.environment_state": {
85
+ "dtype": "float32",
86
+ "shape": [
87
+ 18
88
+ ],
89
+ "names": [
90
+ "peg_pos_x",
91
+ "peg_pos_y",
92
+ "peg_pos_z",
93
+ "peg_rot_0",
94
+ "peg_rot_1",
95
+ "peg_rot_2",
96
+ "peg_rot_3",
97
+ "peg_rot_4",
98
+ "peg_rot_5",
99
+ "hole_pos_x",
100
+ "hole_pos_y",
101
+ "hole_pos_z",
102
+ "hole_rot_0",
103
+ "hole_rot_1",
104
+ "hole_rot_2",
105
+ "hole_rot_3",
106
+ "hole_rot_4",
107
+ "hole_rot_5"
108
+ ]
109
+ },
110
+ "timestamp": {
111
+ "dtype": "float32",
112
+ "shape": [
113
+ 1
114
+ ],
115
+ "names": null
116
+ },
117
+ "frame_index": {
118
+ "dtype": "int64",
119
+ "shape": [
120
+ 1
121
+ ],
122
+ "names": null
123
+ },
124
+ "episode_index": {
125
+ "dtype": "int64",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ },
138
+ "task_index": {
139
+ "dtype": "int64",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ }
145
+ }
146
+ }
147
+ ```
148
+
149
+
150
+ ## Citation
151
+
152
+ **BibTeX:**
153
+
154
+ ```bibtex
155
+ [More Information Needed]
156
+ ```