melisa commited on
Commit
4f6a96c
1 Parent(s): 4263fe9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +151 -0
README.md CHANGED
@@ -1,3 +1,154 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - text-generation
5
+ language:
6
+ - en
7
+ tags:
8
+ - code
9
  ---
10
+
11
+ Dataset for [OmniACT: A Dataset and Benchmark for Enabling Multimodal Generalist Autonomous Agents for Desktop and Web](https://arxiv.org/abs/2402.17553)
12
+
13
+ Splits:
14
+
15
+ | split_name | count |
16
+ |------------|-------|
17
+ | train | 6788 |
18
+ | test | 2020 |
19
+ | val | 991 |
20
+
21
+ Example datapoint:
22
+ ```json
23
+ "2849": {
24
+ "task": "data/tasks/desktop/ibooks/task_1.30.txt",
25
+ "image": "data/data/desktop/ibooks/screen_1.png",
26
+ "ocr": "ocr/desktop/ibooks/screen_1.json",
27
+ "color": "detact_color/desktop/ibooks/screen_1.json",
28
+ "icon": "detact_icon/desktop/ibooks/screen_1.json",
29
+ "box": "data/metadata/desktop/boxes/ibooks/screen_1.json"
30
+ },
31
+ ```
32
+
33
+ where:
34
+
35
+ - `task` - contains natural language description ("Task") along with the corresponding PyAutoGUI code ("Output Script"):
36
+ ```text
37
+ Task: Navigate to see the upcoming titles
38
+ Output Script:
39
+ pyautogui.moveTo(1881.5,1116.0)
40
+ ```
41
+ - `image` - screen image where the action is performed
42
+ - `ocr` - OCR of screen image (all text elements extracted from the screen image)
43
+ ```json
44
+ {
45
+ ocr:
46
+ {
47
+ "Book": [
48
+ 1838.0,
49
+ 52.5
50
+ ],
51
+ "Store": [
52
+ 253.0,
53
+ 394.5
54
+ ],
55
+ "Browse": [
56
+ 2845.5,
57
+ 1323.0
58
+ ],
59
+ "Sections": [
60
+ 3227.0,
61
+ 52.5
62
+ ],
63
+ "v": [
64
+ 3298.5,
65
+ 53.0
66
+ ],
67
+ "Q": [
68
+ 47.5,
69
+ 138.5
70
+ ],
71
+ "Apple": [
72
+ 73.5,
73
+ 230.5
74
+ ],
75
+ "Books": [
76
+ 165.5,
77
+ 987.5
78
+ ],
79
+ "Top": [
80
+ 516.5,
81
+ 227.0
82
+ ],
83
+ "Charts": [
84
+ 622.0,
85
+ 224.5
86
+ ],
87
+ ...
88
+ }
89
+ ```
90
+ - `color` and `icon` - list of UI elements along with their positions
91
+ ```json
92
+ {
93
+ "ctrl": [[2319.5, 2037.5], [2278.5, 1886.5], [2125.5, 1887.0], ...]
94
+ "filter4": [[2319.5, 2037.5], [2278.5, 1886.5], ...]
95
+ "calendar-empty": [[2319.5, 2037.5], [2278.5, 1886.5], [2125.5, 1887.0], ...]
96
+ "volume-mute3": [[2319.5, 2037.5], [2278.5, 1886.5], [2125.5, 1887.0], ...]
97
+ "command": [[2319.5, 2037.5], [2278.5, 1886.5], [2125.5, 1887.0], ...]
98
+ "film3": [[2319.5, 2037.5], [2278.5, 1886.5], [2125.5, 1887.0],
99
+ "insert-template": [[2125.5, 1887.0], [2258.5, 1887.0], ...]
100
+ "grid7": [[2296.5, 1894.5], [2125.5, 1884.5], [2099.5, 1868.5], [622.5, 1953.5]],
101
+ "map5": [[622.5, 1953.5]]
102
+ }
103
+ ```
104
+ - `box` - bounding boxes of key UI elements
105
+ ```json
106
+ {
107
+ {
108
+ "example_0": {
109
+ "top_left": [
110
+ 482,
111
+ 1232
112
+ ],
113
+ "bottom_right": [
114
+ 1001,
115
+ 1516
116
+ ],
117
+ "label": "browse_mystery"
118
+ },
119
+ "example_1": {
120
+ "top_left": [
121
+ 1053,
122
+ 1235
123
+ ],
124
+ "bottom_right": [
125
+ 1572,
126
+ 1519
127
+ ],
128
+ "label": "browse_kids"
129
+ },
130
+ "example_2": {
131
+ "top_left": [
132
+ 1622,
133
+ 1237
134
+ ],
135
+ "bottom_right": [
136
+ 2141,
137
+ 1521
138
+ ],
139
+ "label": "browse_non_fiction"
140
+ },
141
+ "example_3": {
142
+ "top_left": [
143
+ 2191,
144
+ 1238
145
+ ],
146
+ "bottom_right": [
147
+ 2710,
148
+ 1522
149
+ ],
150
+ "label": "browse_romance"
151
+ },
152
+ ...
153
+ }
154
+ ```