Sraghvi commited on
Commit
242b8c4
·
verified ·
1 Parent(s): 97a47bf

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +176 -0
README.md ADDED
@@ -0,0 +1,176 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.1",
28
+ "robot_type": "dual_arm_robot",
29
+ "total_episodes": 1,
30
+ "total_frames": 7553,
31
+ "total_tasks": 1,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:1"
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
+ 14
46
+ ],
47
+ "names": [
48
+ "arm1_shoulder_pan_joint",
49
+ "arm1_shoulder_lift_joint",
50
+ "arm1_elbow_joint",
51
+ "arm1_wrist_1_joint",
52
+ "arm1_wrist_2_joint",
53
+ "arm1_wrist_3_joint",
54
+ "arm1_robotiq_85_left_knuckle_joint",
55
+ "arm2_shoulder_pan_joint",
56
+ "arm2_shoulder_lift_joint",
57
+ "arm2_elbow_joint",
58
+ "arm2_wrist_1_joint",
59
+ "arm2_wrist_2_joint",
60
+ "arm2_wrist_3_joint",
61
+ "arm2_robotiq_85_left_knuckle_joint"
62
+ ]
63
+ },
64
+ "action": {
65
+ "dtype": "float32",
66
+ "shape": [
67
+ 14
68
+ ],
69
+ "names": [
70
+ "arm1_shoulder_pan_joint",
71
+ "arm1_shoulder_lift_joint",
72
+ "arm1_elbow_joint",
73
+ "arm1_wrist_1_joint",
74
+ "arm1_wrist_2_joint",
75
+ "arm1_wrist_3_joint",
76
+ "arm1_robotiq_85_left_knuckle_joint",
77
+ "arm2_shoulder_pan_joint",
78
+ "arm2_shoulder_lift_joint",
79
+ "arm2_elbow_joint",
80
+ "arm2_wrist_1_joint",
81
+ "arm2_wrist_2_joint",
82
+ "arm2_wrist_3_joint",
83
+ "arm2_robotiq_85_left_knuckle_joint"
84
+ ]
85
+ },
86
+ "observation.velocity": {
87
+ "dtype": "float32",
88
+ "shape": [
89
+ 14
90
+ ],
91
+ "names": [
92
+ "arm1_shoulder_pan_joint_vel",
93
+ "arm1_shoulder_lift_joint_vel",
94
+ "arm1_elbow_joint_vel",
95
+ "arm1_wrist_1_joint_vel",
96
+ "arm1_wrist_2_joint_vel",
97
+ "arm1_wrist_3_joint_vel",
98
+ "arm1_robotiq_85_left_knuckle_joint_vel",
99
+ "arm2_shoulder_pan_joint_vel",
100
+ "arm2_shoulder_lift_joint_vel",
101
+ "arm2_elbow_joint_vel",
102
+ "arm2_wrist_1_joint_vel",
103
+ "arm2_wrist_2_joint_vel",
104
+ "arm2_wrist_3_joint_vel",
105
+ "arm2_robotiq_85_left_knuckle_joint_vel"
106
+ ]
107
+ },
108
+ "observation.effort": {
109
+ "dtype": "float32",
110
+ "shape": [
111
+ 14
112
+ ],
113
+ "names": [
114
+ "arm1_shoulder_pan_joint_effort",
115
+ "arm1_shoulder_lift_joint_effort",
116
+ "arm1_elbow_joint_effort",
117
+ "arm1_wrist_1_joint_effort",
118
+ "arm1_wrist_2_joint_effort",
119
+ "arm1_wrist_3_joint_effort",
120
+ "arm1_robotiq_85_left_knuckle_joint_effort",
121
+ "arm2_shoulder_pan_joint_effort",
122
+ "arm2_shoulder_lift_joint_effort",
123
+ "arm2_elbow_joint_effort",
124
+ "arm2_wrist_1_joint_effort",
125
+ "arm2_wrist_2_joint_effort",
126
+ "arm2_wrist_3_joint_effort",
127
+ "arm2_robotiq_85_left_knuckle_joint_effort"
128
+ ]
129
+ },
130
+ "timestamp": {
131
+ "dtype": "float32",
132
+ "shape": [
133
+ 1
134
+ ],
135
+ "names": null
136
+ },
137
+ "frame_index": {
138
+ "dtype": "int64",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null
143
+ },
144
+ "episode_index": {
145
+ "dtype": "int64",
146
+ "shape": [
147
+ 1
148
+ ],
149
+ "names": null
150
+ },
151
+ "index": {
152
+ "dtype": "int64",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
+ },
158
+ "task_index": {
159
+ "dtype": "int64",
160
+ "shape": [
161
+ 1
162
+ ],
163
+ "names": null
164
+ }
165
+ }
166
+ }
167
+ ```
168
+
169
+
170
+ ## Citation
171
+
172
+ **BibTeX:**
173
+
174
+ ```bibtex
175
+ [More Information Needed]
176
+ ```