yongjincho commited on
Commit
a8d2549
·
verified ·
1 Parent(s): 908d195

Upload README.md with huggingface_hub

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