File size: 1,620 Bytes
92aeef5
849eb72
4f6a96c
 
 
 
 
 
c75188f
92aeef5
1774203
 
4f6a96c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c75188f
1774203
c75188f
4f5e606
 
 
 
 
 
 
 
 
 
 
4f6a96c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
license: mit
task_categories:
- text-generation
language:
- en
tags:
- code
pretty_name: OmniACT
---
<img src="intro.png" width="700" title="OmniACT">

Dataset for [OmniACT: A Dataset and Benchmark for Enabling Multimodal Generalist Autonomous Agents for Desktop and Web](https://arxiv.org/abs/2402.17553)

Splits:

| split_name | count |
|------------|-------|
| train      | 6788  |
| test       | 2020  |
| val        | 991   |

Example datapoint:
```json
  "2849": {
      "task": "data/tasks/desktop/ibooks/task_1.30.txt",
      "image": "data/data/desktop/ibooks/screen_1.png",
      "ocr": "ocr/desktop/ibooks/screen_1.json",
      "color": "detact_color/desktop/ibooks/screen_1.json",
      "icon": "detact_icon/desktop/ibooks/screen_1.json",
      "box": "data/metadata/desktop/boxes/ibooks/screen_1.json"
  },
```

where:

- `task` - contains natural language description ("Task") along with the corresponding PyAutoGUI code ("Output Script"):
```text
Task: Navigate to see the upcoming titles
Output Script:
pyautogui.moveTo(1881.5,1116.0)
```
- `image` - screen image where the action is performed

<img src="screen_1.png" width="700" title="example screen image">

```
To cite OmniACT, please use:
```
@misc{kapoor2024omniact,
      title={OmniACT: A Dataset and Benchmark for Enabling Multimodal Generalist Autonomous Agents for Desktop and Web}, 
      author={Raghav Kapoor and Yash Parag Butala and Melisa Russak and Jing Yu Koh and Kiran Kamble and Waseem Alshikh and Ruslan Salakhutdinov},
      year={2024},
      eprint={2402.17553},
      archivePrefix={arXiv},
      primaryClass={cs.AI}
}
```