k1000dai commited on
Commit
c2a9ed0
·
verified ·
1 Parent(s): 15aec08

Upload README.md with huggingface_hub

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