Heart22 commited on
Commit
d13f680
·
verified ·
1 Parent(s): c2a940e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +147 -3
README.md CHANGED
@@ -1,3 +1,147 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ size_categories:
11
+ - 1K<n<10K
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.1",
30
+ "robot_type": "agibot_g01",
31
+ "total_episodes": 299,
32
+ "total_frames": 31607,
33
+ "total_tasks": 1,
34
+ "total_videos": 0,
35
+ "total_chunks": 1,
36
+ "chunks_size": 1000,
37
+ "fps": 10,
38
+ "splits": {
39
+ "train": "0:299"
40
+ },
41
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
42
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
43
+ "features": {
44
+ "image": {
45
+ "dtype": "image",
46
+ "shape": [
47
+ 256,
48
+ 256,
49
+ 3
50
+ ],
51
+ "names": [
52
+ "height",
53
+ "width",
54
+ "channel"
55
+ ]
56
+ },
57
+ "hand_left_image": {
58
+ "dtype": "image",
59
+ "shape": [
60
+ 256,
61
+ 256,
62
+ 3
63
+ ],
64
+ "names": [
65
+ "height",
66
+ "width",
67
+ "channel"
68
+ ]
69
+ },
70
+ "hand_right_image": {
71
+ "dtype": "image",
72
+ "shape": [
73
+ 256,
74
+ 256,
75
+ 3
76
+ ],
77
+ "names": [
78
+ "height",
79
+ "width",
80
+ "channel"
81
+ ]
82
+ },
83
+ "state": {
84
+ "dtype": "float32",
85
+ "shape": [
86
+ 16
87
+ ],
88
+ "names": [
89
+ "joint_and_gripper_positions"
90
+ ]
91
+ },
92
+ "actions": {
93
+ "dtype": "float32",
94
+ "shape": [
95
+ 16
96
+ ],
97
+ "names": [
98
+ "joint_and_gripper_targets"
99
+ ]
100
+ },
101
+ "timestamp": {
102
+ "dtype": "float32",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "names": null
107
+ },
108
+ "frame_index": {
109
+ "dtype": "int64",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "names": null
114
+ },
115
+ "episode_index": {
116
+ "dtype": "int64",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "names": null
121
+ },
122
+ "index": {
123
+ "dtype": "int64",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": null
128
+ },
129
+ "task_index": {
130
+ "dtype": "int64",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null
135
+ }
136
+ }
137
+ }
138
+ ```
139
+
140
+
141
+ ## Citation
142
+
143
+ **BibTeX:**
144
+
145
+ ```bibtex
146
+ [More Information Needed]
147
+ ```