maxdoesch commited on
Commit
edbb33b
·
verified ·
1 Parent(s): 9396e57

Upload README.md with huggingface_hub

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