jackvial commited on
Commit
f18dd98
·
verified ·
1 Parent(s): d94b3ac

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +142 -29
README.md CHANGED
@@ -1,33 +1,146 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: observation.state
5
- sequence: float32
6
- length: 6
7
- - name: action
8
- sequence: float32
9
- length: 6
10
- - name: observation.images.laptop
11
- dtype: video_frame
12
- - name: episode_index
13
- dtype: int64
14
- - name: frame_index
15
- dtype: int64
16
- - name: timestamp
17
- dtype: float32
18
- - name: next.done
19
- dtype: bool
20
- - name: index
21
- dtype: int64
22
- splits:
23
- - name: train
24
- num_bytes: 118910
25
- num_examples: 880
26
- download_size: 36910
27
- dataset_size: 118910
28
  configs:
29
  - config_name: default
30
- data_files:
31
- - split: train
32
- path: data/train-*
33
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.0",
28
+ "robot_type": "koch",
29
+ "total_episodes": 2,
30
+ "total_frames": 1192,
31
+ "total_tasks": 1,
32
+ "total_videos": 2,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:2"
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
+ "next.reward": {
43
+ "dtype": "int64",
44
+ "shape": [
45
+ 1
46
+ ],
47
+ "names": null
48
+ },
49
+ "action": {
50
+ "dtype": "float32",
51
+ "shape": [
52
+ 6
53
+ ],
54
+ "names": [
55
+ "main_shoulder_pan",
56
+ "main_shoulder_lift",
57
+ "main_elbow_flex",
58
+ "main_wrist_flex",
59
+ "main_wrist_roll",
60
+ "main_gripper"
61
+ ]
62
+ },
63
+ "observation.state": {
64
+ "dtype": "float32",
65
+ "shape": [
66
+ 6
67
+ ],
68
+ "names": [
69
+ "main_shoulder_pan",
70
+ "main_shoulder_lift",
71
+ "main_elbow_flex",
72
+ "main_wrist_flex",
73
+ "main_wrist_roll",
74
+ "main_gripper"
75
+ ]
76
+ },
77
+ "observation.images.main": {
78
+ "dtype": "video",
79
+ "shape": [
80
+ 600,
81
+ 800,
82
+ 3
83
+ ],
84
+ "names": [
85
+ "height",
86
+ "width",
87
+ "channels"
88
+ ],
89
+ "info": {
90
+ "video.fps": 30.0,
91
+ "video.height": 600,
92
+ "video.width": 800,
93
+ "video.channels": 3,
94
+ "video.codec": "av1",
95
+ "video.pix_fmt": "yuv420p",
96
+ "video.is_depth_map": false,
97
+ "has_audio": false
98
+ }
99
+ },
100
+ "timestamp": {
101
+ "dtype": "float32",
102
+ "shape": [
103
+ 1
104
+ ],
105
+ "names": null
106
+ },
107
+ "frame_index": {
108
+ "dtype": "int64",
109
+ "shape": [
110
+ 1
111
+ ],
112
+ "names": null
113
+ },
114
+ "episode_index": {
115
+ "dtype": "int64",
116
+ "shape": [
117
+ 1
118
+ ],
119
+ "names": null
120
+ },
121
+ "index": {
122
+ "dtype": "int64",
123
+ "shape": [
124
+ 1
125
+ ],
126
+ "names": null
127
+ },
128
+ "task_index": {
129
+ "dtype": "int64",
130
+ "shape": [
131
+ 1
132
+ ],
133
+ "names": null
134
+ }
135
+ }
136
+ }
137
+ ```
138
+
139
+
140
+ ## Citation
141
+
142
+ **BibTeX:**
143
+
144
+ ```bibtex
145
+ [More Information Needed]
146
+ ```