lqs2015 commited on
Commit
67dadcc
·
verified ·
1 Parent(s): 4e5733e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +120 -0
README.md ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - manipulation
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": "panda",
30
+ "total_episodes": 1779,
31
+ "total_frames": 1030041,
32
+ "total_tasks": 1,
33
+ "total_videos": 0,
34
+ "total_chunks": 2,
35
+ "chunks_size": 1000,
36
+ "fps": 20,
37
+ "splits": {
38
+ "train": "0:1779"
39
+ },
40
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
41
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
42
+ "features": {
43
+ "image": {
44
+ "dtype": "image",
45
+ "shape": [
46
+ 224,
47
+ 224,
48
+ 3
49
+ ],
50
+ "names": [
51
+ "height",
52
+ "width",
53
+ "channel"
54
+ ]
55
+ },
56
+ "state": {
57
+ "dtype": "float32",
58
+ "shape": [
59
+ 10
60
+ ],
61
+ "names": [
62
+ "state"
63
+ ]
64
+ },
65
+ "actions": {
66
+ "dtype": "float32",
67
+ "shape": [
68
+ 10
69
+ ],
70
+ "names": [
71
+ "actions"
72
+ ]
73
+ },
74
+ "timestamp": {
75
+ "dtype": "float32",
76
+ "shape": [
77
+ 1
78
+ ],
79
+ "names": null
80
+ },
81
+ "frame_index": {
82
+ "dtype": "int64",
83
+ "shape": [
84
+ 1
85
+ ],
86
+ "names": null
87
+ },
88
+ "episode_index": {
89
+ "dtype": "int64",
90
+ "shape": [
91
+ 1
92
+ ],
93
+ "names": null
94
+ },
95
+ "index": {
96
+ "dtype": "int64",
97
+ "shape": [
98
+ 1
99
+ ],
100
+ "names": null
101
+ },
102
+ "task_index": {
103
+ "dtype": "int64",
104
+ "shape": [
105
+ 1
106
+ ],
107
+ "names": null
108
+ }
109
+ }
110
+ }
111
+ ```
112
+
113
+
114
+ ## Citation
115
+
116
+ **BibTeX:**
117
+
118
+ ```bibtex
119
+ [More Information Needed]
120
+ ```