RobotisSW commited on
Commit
bb6769c
·
verified ·
1 Parent(s): b4cbd57

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +135 -0
README.md ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - test
8
+ configs:
9
+ - config_name: default
10
+ data_files: data/*/*.parquet
11
+ ---
12
+
13
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
14
+
15
+ ## Dataset Description
16
+
17
+
18
+
19
+ - **Homepage:** [More Information Needed]
20
+ - **Paper:** [More Information Needed]
21
+ - **License:** apache-2.0
22
+
23
+ ## Dataset Structure
24
+
25
+ [meta/info.json](meta/info.json):
26
+ ```json
27
+ {
28
+ "codebase_version": "v2.1",
29
+ "robot_type": "aiworker",
30
+ "total_episodes": 2,
31
+ "total_frames": 602,
32
+ "total_tasks": 1,
33
+ "total_videos": 2,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 30,
37
+ "splits": {
38
+ "train": "0:2"
39
+ },
40
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
41
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
42
+ "features": {
43
+ "timestamp": {
44
+ "dtype": "float32",
45
+ "shape": [
46
+ 1
47
+ ],
48
+ "names": null
49
+ },
50
+ "frame_index": {
51
+ "dtype": "int64",
52
+ "shape": [
53
+ 1
54
+ ],
55
+ "names": null
56
+ },
57
+ "episode_index": {
58
+ "dtype": "int64",
59
+ "shape": [
60
+ 1
61
+ ],
62
+ "names": null
63
+ },
64
+ "index": {
65
+ "dtype": "int64",
66
+ "shape": [
67
+ 1
68
+ ],
69
+ "names": null
70
+ },
71
+ "task_index": {
72
+ "dtype": "int64",
73
+ "shape": [
74
+ 1
75
+ ],
76
+ "names": null
77
+ },
78
+ "observation.images.cam_global": {
79
+ "dtype": "video",
80
+ "names": [
81
+ "channels",
82
+ "height",
83
+ "width"
84
+ ],
85
+ "shape": [
86
+ 720,
87
+ 1280,
88
+ 3
89
+ ],
90
+ "info": {
91
+ "video.height": 720,
92
+ "video.width": 1280,
93
+ "video.channels": 3,
94
+ "video.codec": "libx264",
95
+ "video.pix_fmt": "yuv420p"
96
+ }
97
+ },
98
+ "observation.state": {
99
+ "dtype": "float32",
100
+ "names": [
101
+ "joint1",
102
+ "joint2",
103
+ "joint3",
104
+ "joint4",
105
+ "gripper_left_joint"
106
+ ],
107
+ "shape": [
108
+ 5
109
+ ]
110
+ },
111
+ "action": {
112
+ "dtype": "float32",
113
+ "names": [
114
+ "joint1",
115
+ "joint2",
116
+ "joint3",
117
+ "joint4",
118
+ "gripper_left_joint"
119
+ ],
120
+ "shape": [
121
+ 5
122
+ ]
123
+ }
124
+ }
125
+ }
126
+ ```
127
+
128
+
129
+ ## Citation
130
+
131
+ **BibTeX:**
132
+
133
+ ```bibtex
134
+ [More Information Needed]
135
+ ```