cadene HF staff commited on
Commit
5fb9e6d
1 Parent(s): ffa3ea7

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
+ configs:
6
+ - config_name: default
7
+ data_files: data/*/*.parquet
8
+ tags:
9
+ - LeRobot
10
+ ---
11
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
12
+
13
+ ## Info
14
+ [meta/info.json](meta/info.json)
15
+ ```json
16
+ {
17
+ "codebase_version": "v2.0",
18
+ "robot_type": "2d pointer",
19
+ "total_episodes": 2,
20
+ "total_frames": 279,
21
+ "total_tasks": 1,
22
+ "total_videos": 0,
23
+ "total_chunks": 1,
24
+ "chunks_size": 1000,
25
+ "fps": 10,
26
+ "splits": {
27
+ "train": "0:2"
28
+ },
29
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
30
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
31
+ "features": {
32
+ "observation.image": {
33
+ "dtype": "image",
34
+ "shape": [
35
+ 3,
36
+ 96,
37
+ 96
38
+ ],
39
+ "names": [
40
+ "channel",
41
+ "height",
42
+ "width"
43
+ ]
44
+ },
45
+ "observation.state": {
46
+ "dtype": "float32",
47
+ "shape": [
48
+ 2
49
+ ],
50
+ "names": [
51
+ [
52
+ "x",
53
+ "y"
54
+ ]
55
+ ]
56
+ },
57
+ "action": {
58
+ "dtype": "float32",
59
+ "shape": [
60
+ 2
61
+ ],
62
+ "names": [
63
+ [
64
+ "x",
65
+ "y"
66
+ ]
67
+ ]
68
+ },
69
+ "next.reward": {
70
+ "dtype": "float32",
71
+ "shape": [
72
+ 1
73
+ ],
74
+ "names": null
75
+ },
76
+ "next.success": {
77
+ "dtype": "bool",
78
+ "shape": [
79
+ 1
80
+ ],
81
+ "names": null
82
+ },
83
+ "timestamp": {
84
+ "dtype": "float32",
85
+ "shape": [
86
+ 1
87
+ ],
88
+ "names": null
89
+ },
90
+ "frame_index": {
91
+ "dtype": "int64",
92
+ "shape": [
93
+ 1
94
+ ],
95
+ "names": null
96
+ },
97
+ "episode_index": {
98
+ "dtype": "int64",
99
+ "shape": [
100
+ 1
101
+ ],
102
+ "names": null
103
+ },
104
+ "index": {
105
+ "dtype": "int64",
106
+ "shape": [
107
+ 1
108
+ ],
109
+ "names": null
110
+ },
111
+ "task_index": {
112
+ "dtype": "int64",
113
+ "shape": [
114
+ 1
115
+ ],
116
+ "names": null
117
+ }
118
+ }
119
+ }
120
+ ```