kelvinzhaozg commited on
Commit
cff1848
·
verified ·
1 Parent(s): 9c71222

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +129 -0
README.md ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "digit_third_arm",
29
+ "total_episodes": 321,
30
+ "total_frames": 202872,
31
+ "total_tasks": 1,
32
+ "total_videos": 321,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 50,
36
+ "splits": {
37
+ "train": "0:321"
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.images.rgb": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 240,
46
+ 424,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "info": {
55
+ "video.height": 240,
56
+ "video.width": 424,
57
+ "video.codec": "av1",
58
+ "video.pix_fmt": "yuv420p",
59
+ "video.is_depth_map": false,
60
+ "video.fps": 50,
61
+ "video.channels": 3,
62
+ "has_audio": false
63
+ }
64
+ },
65
+ "observation.state": {
66
+ "dtype": "float32",
67
+ "shape": [
68
+ 24
69
+ ],
70
+ "names": [
71
+ "state"
72
+ ]
73
+ },
74
+ "action": {
75
+ "dtype": "float32",
76
+ "shape": [
77
+ 21
78
+ ],
79
+ "names": [
80
+ "action"
81
+ ]
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
+ ```
121
+
122
+
123
+ ## Citation
124
+
125
+ **BibTeX:**
126
+
127
+ ```bibtex
128
+ [More Information Needed]
129
+ ```