aposadasn commited on
Commit
fe3dc36
·
verified ·
1 Parent(s): 15bf0f9

Upload README.md with huggingface_hub

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