AdilZtn HF Staff commited on
Commit
39fc73e
·
verified ·
1 Parent(s): 2543b3d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +120 -0
README.md ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - medium
8
+ - demonstration
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": "v2.0",
30
+ "robot_type": null,
31
+ "total_episodes": 500,
32
+ "total_frames": 0,
33
+ "total_tasks": 0,
34
+ "total_videos": 0,
35
+ "total_chunks": 0,
36
+ "chunks_size": 1000,
37
+ "fps": 20,
38
+ "splits": {},
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
+ "index": {
43
+ "dtype": "int64",
44
+ "shape": [
45
+ 1
46
+ ],
47
+ "names": null
48
+ },
49
+ "episode_index": {
50
+ "dtype": "int64",
51
+ "shape": [
52
+ 1
53
+ ],
54
+ "names": null
55
+ },
56
+ "frame_index": {
57
+ "dtype": "int64",
58
+ "shape": [
59
+ 1
60
+ ],
61
+ "names": null
62
+ },
63
+ "timestamp": {
64
+ "dtype": "float32",
65
+ "shape": [
66
+ 1
67
+ ],
68
+ "names": null
69
+ },
70
+ "task_index": {
71
+ "dtype": "int64",
72
+ "shape": [
73
+ 1
74
+ ],
75
+ "names": null
76
+ },
77
+ "action": {
78
+ "dtype": "float32",
79
+ "shape": [
80
+ 7
81
+ ]
82
+ },
83
+ "next.reward": {
84
+ "dtype": "float32",
85
+ "shape": [
86
+ 1
87
+ ]
88
+ },
89
+ "next.done": {
90
+ "dtype": "bool",
91
+ "shape": [
92
+ 1
93
+ ]
94
+ },
95
+ "observation.state": {
96
+ "dtype": "float32",
97
+ "shape": [
98
+ 25
99
+ ]
100
+ },
101
+ "observation.image": {
102
+ "dtype": "image",
103
+ "shape": [
104
+ 3,
105
+ 64,
106
+ 64
107
+ ]
108
+ }
109
+ }
110
+ }
111
+ ```
112
+
113
+
114
+ ## Citation
115
+
116
+ **BibTeX:**
117
+
118
+ ```bibtex
119
+ [More Information Needed]
120
+ ```