lhr0616 commited on
Commit
194dbd8
·
verified ·
1 Parent(s): 9a4f572

Upload README.md with huggingface_hub

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