maxdoesch commited on
Commit
3aa6ea9
·
verified ·
1 Parent(s): 7081e43

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +144 -0
README.md ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "franka",
29
+ "total_episodes": 0,
30
+ "total_frames": 0,
31
+ "total_tasks": 0,
32
+ "total_videos": 0,
33
+ "total_chunks": 0,
34
+ "chunks_size": 1000,
35
+ "fps": 10,
36
+ "splits": {},
37
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
38
+ "video_path": null,
39
+ "features": {
40
+ "observation.images.primary": {
41
+ "dtype": "image",
42
+ "shape": [
43
+ 256,
44
+ 256,
45
+ 3
46
+ ],
47
+ "names": [
48
+ "height",
49
+ "width",
50
+ "channels"
51
+ ]
52
+ },
53
+ "observation.images.wrist": {
54
+ "dtype": "image",
55
+ "shape": [
56
+ 256,
57
+ 256,
58
+ 3
59
+ ],
60
+ "names": [
61
+ "height",
62
+ "width",
63
+ "channels"
64
+ ]
65
+ },
66
+ "observation.state": {
67
+ "dtype": "float32",
68
+ "shape": [
69
+ 8
70
+ ],
71
+ "names": [
72
+ "joint_0",
73
+ "joint_1",
74
+ "joint_2",
75
+ "joint_3",
76
+ "joint_4",
77
+ "joint_5",
78
+ "joint_6",
79
+ "gripper"
80
+ ]
81
+ },
82
+ "action": {
83
+ "dtype": "float32",
84
+ "shape": [
85
+ 8
86
+ ],
87
+ "names": [
88
+ "joint_0",
89
+ "joint_1",
90
+ "joint_2",
91
+ "joint_3",
92
+ "joint_4",
93
+ "joint_5",
94
+ "joint_6",
95
+ "gripper"
96
+ ]
97
+ },
98
+ "timestamp": {
99
+ "dtype": "float32",
100
+ "shape": [
101
+ 1
102
+ ],
103
+ "names": null
104
+ },
105
+ "frame_index": {
106
+ "dtype": "int64",
107
+ "shape": [
108
+ 1
109
+ ],
110
+ "names": null
111
+ },
112
+ "episode_index": {
113
+ "dtype": "int64",
114
+ "shape": [
115
+ 1
116
+ ],
117
+ "names": null
118
+ },
119
+ "index": {
120
+ "dtype": "int64",
121
+ "shape": [
122
+ 1
123
+ ],
124
+ "names": null
125
+ },
126
+ "task_index": {
127
+ "dtype": "int64",
128
+ "shape": [
129
+ 1
130
+ ],
131
+ "names": null
132
+ }
133
+ }
134
+ }
135
+ ```
136
+
137
+
138
+ ## Citation
139
+
140
+ **BibTeX:**
141
+
142
+ ```bibtex
143
+ [More Information Needed]
144
+ ```