rli14 commited on
Commit
08e8203
·
verified ·
1 Parent(s): 6d91643

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +133 -0
README.md ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": null,
29
+ "total_episodes": 0,
30
+ "total_frames": 0,
31
+ "total_tasks": 0,
32
+ "total_videos": 0,
33
+ "total_chunks": 0,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {},
37
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
38
+ "video_path": null,
39
+ "features": {
40
+ "observation.image.ego_global": {
41
+ "dtype": "image",
42
+ "names": [
43
+ "channels",
44
+ "height",
45
+ "width"
46
+ ],
47
+ "shape": [
48
+ 3,
49
+ 640,
50
+ 360
51
+ ]
52
+ },
53
+ "observation.image.wrist": {
54
+ "dtype": "image",
55
+ "names": [
56
+ "channels",
57
+ "height",
58
+ "width"
59
+ ],
60
+ "shape": [
61
+ 3,
62
+ 360,
63
+ 640
64
+ ]
65
+ },
66
+ "observation.state": {
67
+ "dtype": "float32",
68
+ "names": null,
69
+ "shape": [
70
+ 10
71
+ ]
72
+ },
73
+ "action": {
74
+ "dtype": "float32",
75
+ "shape": [
76
+ 10
77
+ ],
78
+ "names": null
79
+ },
80
+ "joints": {
81
+ "dtype": "float32",
82
+ "names": null,
83
+ "shape": [
84
+ 6
85
+ ]
86
+ },
87
+ "timestamp": {
88
+ "dtype": "float32",
89
+ "shape": [
90
+ 1
91
+ ],
92
+ "names": null
93
+ },
94
+ "frame_index": {
95
+ "dtype": "int64",
96
+ "shape": [
97
+ 1
98
+ ],
99
+ "names": null
100
+ },
101
+ "episode_index": {
102
+ "dtype": "int64",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "names": null
107
+ },
108
+ "index": {
109
+ "dtype": "int64",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "names": null
114
+ },
115
+ "task_index": {
116
+ "dtype": "int64",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "names": null
121
+ }
122
+ }
123
+ }
124
+ ```
125
+
126
+
127
+ ## Citation
128
+
129
+ **BibTeX:**
130
+
131
+ ```bibtex
132
+ [More Information Needed]
133
+ ```