File size: 4,690 Bytes
037330d
 
42659e9
 
 
 
 
772133d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0b7bf9a
 
 
 
 
6c87ce4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
---
license: openrail
language:
- en
tags:
- web agent
- multimodal
dataset_info:
  features:
  - name: action_uid
    dtype: string
  - name: raw_html
    dtype: string
  - name: cleaned_html
    dtype: string
  - name: operation
    dtype: string
  - name: pos_candidates
    sequence: string
  - name: neg_candidates
    sequence: string
  - name: website
    dtype: string
  - name: domain
    dtype: string
  - name: subdomain
    dtype: string
  - name: annotation_id
    dtype: string
  - name: confirmed_task
    dtype: string
  - name: screenshot
    dtype: image
  - name: action_reprs
    sequence: string
  splits:
  - name: test_website
    num_bytes: 1589513606.713
    num_examples: 1019
  - name: test_task
    num_bytes: 2004628575.972
    num_examples: 1339
  download_size: 2069805753
  dataset_size: 3594142182.685
---

## Dataset Description

- **Homepage:** https://osu-nlp-group.github.io/SeeAct/
- **Repository:** https://github.com/OSU-NLP-Group/SeeAct
- **Paper:** https://arxiv.org/abs/2401.01614
- **Point of Contact:** [Boyuan Zheng](mailto:zheng.2372@osu.edu)

### Dataset Summary

Multimodal-Mind2Web is the multimodal version of [Mind2Web](https://osu-nlp-group.github.io/Mind2Web/), a dataset for developing and evaluating generalist agents for the web that can follow language instructions to complete complex tasks on any website. In this dataset, we align each HTML document in the dataset with its corresponding webpage screenshot image from the Mind2Web raw dump, which undergoes human verification to confirm element visibility and correct rendering for action prediction.

## Dataset Structure


### Data Fields

- "annotation_id" (str): unique id for each task
- "website" (str): website name
- "domain" (str): website domain
- "subdomain" (str): website subdomain
- "confirmed_task" (str): task description
- "action_reprs" (list[str]): human readable string representation of the action sequence
- "actions" (list[dict]): list of actions (steps) to complete the task
-   - "screenshot" (str): path to the webpage screenshot image corresponding to the HTML.
    - "action_uid" (str): unique id for each action (step)
    - "raw_html" (str): raw html of the page before the action is performed
    - "cleaned_html" (str): cleaned html of the page before the action is performed
    - "operation" (dict): operation to perform
        - "op" (str): operation type, one of CLICK, TYPE, SELECT
        - "original_op" (str): original operation type, contain additional HOVER and ENTER that are mapped to CLICK, not used
        - "value" (str): optional value for the operation, e.g., text to type, option to select
    - "pos_candidates" (list[dict]): ground truth elements. Here we only include positive elements that exist in "cleaned_html" after our preprocessing, so "pos_candidates" might be empty. The original labeled element can always be found in the "raw_html".
        - "tag" (str): tag of the element
        - "is_original_target" (bool): whether the element is the original target labeled by the annotator
        - "is_top_level_target" (bool): whether the element is a top level target find by our algorithm. please see the paper for more details.
        - "backend_node_id" (str): unique id for the element
        - "attributes" (str): serialized attributes of the element, use `json.loads` to convert back to dict
    - "neg_candidates" (list[dict]): other candidate elements in the page after preprocessing, has similar structure as "pos_candidates"

### Data Splits

- train: 1,009 instances
- test: 
    - Cross Task: 177 instances, tasks from the same website are seen during training
    - Cross Website: 142 instances, websites are not seen during training
    - Cross Domain: 694 instances, entire domains are not seen during training


### Disclaimer
This dataset was collected and released solely for research purposes, with the goal of making the web more accessible via language technologies. The authors are strongly against any potential harmful use of the data or technology to any party.

### Citation Information
```
@article{zheng2024seeact,
  title={GPT-4V(ision) is a Generalist Web Agent, if Grounded},
  author={Boyuan Zheng and Boyu Gou and Jihyung Kil and Huan Sun and Yu Su},
  journal={arXiv preprint arXiv:2401.01614},
  year={2024},
}

@inproceedings{deng2023mindweb,
  title={Mind2Web: Towards a Generalist Agent for the Web},
  author={Xiang Deng and Yu Gu and Boyuan Zheng and Shijie Chen and Samuel Stevens and Boshi Wang and Huan Sun and Yu Su},
  booktitle={Thirty-seventh Conference on Neural Information Processing Systems},
  year={2023},
  url={https://openreview.net/forum?id=kiYqbO3wqw}
}
```