mjuarez4 commited on
Commit
c48ae6a
·
verified ·
1 Parent(s): 4c9a674

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +172 -0
README.md ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "xarm",
29
+ "total_episodes": 452,
30
+ "total_frames": 243321,
31
+ "total_tasks": 1,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 50,
36
+ "splits": {
37
+ "train": "0:452"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": null,
41
+ "features": {
42
+ "lang": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 512
46
+ ],
47
+ "names": null
48
+ },
49
+ "observation.image.low": {
50
+ "dtype": "image",
51
+ "shape": [
52
+ 224,
53
+ 224,
54
+ 3
55
+ ],
56
+ "names": [
57
+ "width",
58
+ "height",
59
+ "channels"
60
+ ]
61
+ },
62
+ "observation.image.side": {
63
+ "dtype": "image",
64
+ "shape": [
65
+ 224,
66
+ 224,
67
+ 3
68
+ ],
69
+ "names": [
70
+ "width",
71
+ "height",
72
+ "channels"
73
+ ]
74
+ },
75
+ "observation.image.wrist": {
76
+ "dtype": "image",
77
+ "shape": [
78
+ 224,
79
+ 224,
80
+ 3
81
+ ],
82
+ "names": [
83
+ "width",
84
+ "height",
85
+ "channels"
86
+ ]
87
+ },
88
+ "observation.state.gripper": {
89
+ "dtype": "float32",
90
+ "shape": [
91
+ 1
92
+ ],
93
+ "names": [
94
+ "gripper"
95
+ ]
96
+ },
97
+ "observation.state.joints": {
98
+ "dtype": "float32",
99
+ "shape": [
100
+ 7
101
+ ],
102
+ "names": [
103
+ "joint_1",
104
+ "joint_2",
105
+ "joint_3",
106
+ "joint_4",
107
+ "joint_5",
108
+ "joint_6",
109
+ "joint_7"
110
+ ]
111
+ },
112
+ "observation.state.position": {
113
+ "dtype": "float32",
114
+ "shape": [
115
+ 6
116
+ ],
117
+ "names": [
118
+ "x",
119
+ "y",
120
+ "z",
121
+ "rx",
122
+ "ry",
123
+ "rz"
124
+ ]
125
+ },
126
+ "timestamp": {
127
+ "dtype": "float32",
128
+ "shape": [
129
+ 1
130
+ ],
131
+ "names": null
132
+ },
133
+ "frame_index": {
134
+ "dtype": "int64",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ },
140
+ "episode_index": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ },
147
+ "index": {
148
+ "dtype": "int64",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ },
154
+ "task_index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
+ }
161
+ }
162
+ }
163
+ ```
164
+
165
+
166
+ ## Citation
167
+
168
+ **BibTeX:**
169
+
170
+ ```bibtex
171
+ [More Information Needed]
172
+ ```