the-future-dev commited on
Commit
1083de5
·
verified ·
1 Parent(s): 3311ade

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +159 -0
README.md ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "unknown",
29
+ "total_episodes": 206,
30
+ "total_frames": 25650,
31
+ "total_tasks": 1,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:206"
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.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 2
46
+ ],
47
+ "names": {
48
+ "motors": [
49
+ "motor_0",
50
+ "motor_1"
51
+ ]
52
+ }
53
+ },
54
+ "observation.environment_state": {
55
+ "dtype": "float32",
56
+ "shape": [
57
+ 32
58
+ ],
59
+ "names": {
60
+ "motors": [
61
+ "motor_0",
62
+ "motor_1",
63
+ "motor_2",
64
+ "motor_3",
65
+ "motor_4",
66
+ "motor_5",
67
+ "motor_6",
68
+ "motor_7",
69
+ "motor_8",
70
+ "motor_9",
71
+ "motor_10",
72
+ "motor_11",
73
+ "motor_12",
74
+ "motor_13",
75
+ "motor_14",
76
+ "motor_15"
77
+ ]
78
+ }
79
+ },
80
+ "action": {
81
+ "dtype": "float32",
82
+ "shape": [
83
+ 2
84
+ ],
85
+ "names": {
86
+ "motors": [
87
+ "motor_0",
88
+ "motor_1"
89
+ ]
90
+ }
91
+ },
92
+ "episode_index": {
93
+ "dtype": "int64",
94
+ "shape": [
95
+ 1
96
+ ],
97
+ "names": null
98
+ },
99
+ "frame_index": {
100
+ "dtype": "int64",
101
+ "shape": [
102
+ 1
103
+ ],
104
+ "names": null
105
+ },
106
+ "timestamp": {
107
+ "dtype": "float32",
108
+ "shape": [
109
+ 1
110
+ ],
111
+ "names": null
112
+ },
113
+ "next.reward": {
114
+ "dtype": "float32",
115
+ "shape": [
116
+ 1
117
+ ],
118
+ "names": null
119
+ },
120
+ "next.done": {
121
+ "dtype": "bool",
122
+ "shape": [
123
+ 1
124
+ ],
125
+ "names": null
126
+ },
127
+ "next.success": {
128
+ "dtype": "bool",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": null
133
+ },
134
+ "index": {
135
+ "dtype": "int64",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
140
+ },
141
+ "task_index": {
142
+ "dtype": "int64",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
+ }
148
+ }
149
+ }
150
+ ```
151
+
152
+
153
+ ## Citation
154
+
155
+ **BibTeX:**
156
+
157
+ ```bibtex
158
+ [More Information Needed]
159
+ ```