mattmazzola commited on
Commit
52083cd
·
verified ·
1 Parent(s): bfd5343

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +134 -0
README.md ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - ur3e
8
+ - rlds
9
+ configs:
10
+ - config_name: default
11
+ data_files: data/*/*.parquet
12
+ ---
13
+
14
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
15
+
16
+ ## Dataset Description
17
+
18
+
19
+
20
+ - **Homepage:** [More Information Needed]
21
+ - **Paper:** [More Information Needed]
22
+ - **License:** apache-2.0
23
+
24
+ ## Dataset Structure
25
+
26
+ [meta/info.json](meta/info.json):
27
+ ```json
28
+ {
29
+ "codebase_version": "v2.0",
30
+ "robot_type": "ur3e",
31
+ "total_episodes": 193,
32
+ "total_frames": 5829,
33
+ "total_tasks": 13,
34
+ "total_videos": 0,
35
+ "total_chunks": 1,
36
+ "chunks_size": 1000,
37
+ "fps": 5,
38
+ "splits": {
39
+ "train": "0:193"
40
+ },
41
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
42
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
43
+ "features": {
44
+ "images.main": {
45
+ "dtype": "image",
46
+ "shape": [
47
+ 512,
48
+ 910,
49
+ 3
50
+ ],
51
+ "names": [
52
+ "height",
53
+ "width",
54
+ "channel"
55
+ ]
56
+ },
57
+ "images.arm_right": {
58
+ "dtype": "image",
59
+ "shape": [
60
+ 512,
61
+ 910,
62
+ 3
63
+ ],
64
+ "names": [
65
+ "height",
66
+ "width",
67
+ "channel"
68
+ ]
69
+ },
70
+ "state": {
71
+ "dtype": "float32",
72
+ "shape": [
73
+ 7
74
+ ],
75
+ "names": [
76
+ "state"
77
+ ]
78
+ },
79
+ "action": {
80
+ "dtype": "float32",
81
+ "shape": [
82
+ 7
83
+ ],
84
+ "names": [
85
+ "action"
86
+ ]
87
+ },
88
+ "timestamp": {
89
+ "dtype": "float32",
90
+ "shape": [
91
+ 1
92
+ ],
93
+ "names": null
94
+ },
95
+ "frame_index": {
96
+ "dtype": "int64",
97
+ "shape": [
98
+ 1
99
+ ],
100
+ "names": null
101
+ },
102
+ "episode_index": {
103
+ "dtype": "int64",
104
+ "shape": [
105
+ 1
106
+ ],
107
+ "names": null
108
+ },
109
+ "index": {
110
+ "dtype": "int64",
111
+ "shape": [
112
+ 1
113
+ ],
114
+ "names": null
115
+ },
116
+ "task_index": {
117
+ "dtype": "int64",
118
+ "shape": [
119
+ 1
120
+ ],
121
+ "names": null
122
+ }
123
+ }
124
+ }
125
+ ```
126
+
127
+
128
+ ## Citation
129
+
130
+ **BibTeX:**
131
+
132
+ ```bibtex
133
+ [More Information Needed]
134
+ ```