maxdoesch commited on
Commit
9470ef7
·
verified ·
1 Parent(s): 34004e3

Upload README.md with huggingface_hub

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