csuvla commited on
Commit
1c4d68a
·
verified ·
1 Parent(s): 1bf700f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +152 -0
README.md ADDED
@@ -0,0 +1,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - rlbench
8
+ - franka
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": "panda",
31
+ "total_episodes": 2,
32
+ "total_frames": 4,
33
+ "total_tasks": 1,
34
+ "total_videos": 0,
35
+ "total_chunks": 1,
36
+ "chunks_size": 1000,
37
+ "fps": 10,
38
+ "splits": {
39
+ "train": "0:2"
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
+ "image": {
45
+ "dtype": "image",
46
+ "shape": [
47
+ 224,
48
+ 224,
49
+ 3
50
+ ],
51
+ "names": [
52
+ "height",
53
+ "width",
54
+ "channel"
55
+ ]
56
+ },
57
+ "wrist_image": {
58
+ "dtype": "image",
59
+ "shape": [
60
+ 224,
61
+ 224,
62
+ 3
63
+ ],
64
+ "names": [
65
+ "height",
66
+ "width",
67
+ "channel"
68
+ ]
69
+ },
70
+ "state": {
71
+ "dtype": "float32",
72
+ "shape": [
73
+ 9
74
+ ],
75
+ "names": [
76
+ "state"
77
+ ]
78
+ },
79
+ "actions": {
80
+ "dtype": "float32",
81
+ "shape": [
82
+ 8
83
+ ],
84
+ "names": [
85
+ "actions"
86
+ ]
87
+ },
88
+ "running_state": {
89
+ "dtype": "int8",
90
+ "shape": [
91
+ 1
92
+ ],
93
+ "names": [
94
+ "running_state"
95
+ ]
96
+ },
97
+ "thought": {
98
+ "dtype": "string",
99
+ "shape": [
100
+ 1
101
+ ],
102
+ "names": [
103
+ "thought"
104
+ ]
105
+ },
106
+ "timestamp": {
107
+ "dtype": "float32",
108
+ "shape": [
109
+ 1
110
+ ],
111
+ "names": null
112
+ },
113
+ "frame_index": {
114
+ "dtype": "int64",
115
+ "shape": [
116
+ 1
117
+ ],
118
+ "names": null
119
+ },
120
+ "episode_index": {
121
+ "dtype": "int64",
122
+ "shape": [
123
+ 1
124
+ ],
125
+ "names": null
126
+ },
127
+ "index": {
128
+ "dtype": "int64",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": null
133
+ },
134
+ "task_index": {
135
+ "dtype": "int64",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
140
+ }
141
+ }
142
+ }
143
+ ```
144
+
145
+
146
+ ## Citation
147
+
148
+ **BibTeX:**
149
+
150
+ ```bibtex
151
+ [More Information Needed]
152
+ ```