boyuanzheng010 commited on
Commit
6c87ce4
1 Parent(s): 42659e9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +70 -1
README.md CHANGED
@@ -5,4 +5,73 @@ language:
5
  tags:
6
  - web agent
7
  - multimodal
8
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  tags:
6
  - web agent
7
  - multimodal
8
+ ---
9
+
10
+ ## Dataset Description
11
+
12
+ - **Homepage:** https://osu-nlp-group.github.io/SeeAct/
13
+ - **Repository:** https://github.com/OSU-NLP-Group/SeeAct
14
+ - **Paper:** https://arxiv.org/abs/2401.01614
15
+ - **Point of Contact:** [Boyuan Zheng](mailto:zheng.2372@osu.edu)
16
+
17
+ ### Dataset Summary
18
+
19
+ 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.
20
+
21
+ ## Dataset Structure
22
+
23
+
24
+ ### Data Fields
25
+
26
+ - "annotation_id" (str): unique id for each task
27
+ - "website" (str): website name
28
+ - "domain" (str): website domain
29
+ - "subdomain" (str): website subdomain
30
+ - "confirmed_task" (str): task description
31
+ - "action_reprs" (list[str]): human readable string representation of the action sequence
32
+ - "actions" (list[dict]): list of actions (steps) to complete the task
33
+ - - "screenshot" (str): path to the webpage screenshot image corresponding to the HTML.
34
+ - "action_uid" (str): unique id for each action (step)
35
+ - "raw_html" (str): raw html of the page before the action is performed
36
+ - "cleaned_html" (str): cleaned html of the page before the action is performed
37
+ - "operation" (dict): operation to perform
38
+ - "op" (str): operation type, one of CLICK, TYPE, SELECT
39
+ - "original_op" (str): original operation type, contain additional HOVER and ENTER that are mapped to CLICK, not used
40
+ - "value" (str): optional value for the operation, e.g., text to type, option to select
41
+ - "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".
42
+ - "tag" (str): tag of the element
43
+ - "is_original_target" (bool): whether the element is the original target labeled by the annotator
44
+ - "is_top_level_target" (bool): whether the element is a top level target find by our algorithm. please see the paper for more details.
45
+ - "backend_node_id" (str): unique id for the element
46
+ - "attributes" (str): serialized attributes of the element, use `json.loads` to convert back to dict
47
+ - "neg_candidates" (list[dict]): other candidate elements in the page after preprocessing, has similar structure as "pos_candidates"
48
+
49
+ ### Data Splits
50
+
51
+ - train: 1,009 instances
52
+ - test:
53
+ - Cross Task: 177 instances, tasks from the same website are seen during training
54
+ - Cross Website: 142 instances, websites are not seen during training
55
+ - Cross Domain: 694 instances, entire domains are not seen during training
56
+
57
+
58
+ ### Disclaimer
59
+ 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.
60
+
61
+ ### Citation Information
62
+ ```
63
+ @article{zheng2024seeact,
64
+ title={GPT-4V(ision) is a Generalist Web Agent, if Grounded},
65
+ author={Boyuan Zheng and Boyu Gou and Jihyung Kil and Huan Sun and Yu Su},
66
+ journal={arXiv preprint arXiv:2401.01614},
67
+ year={2024},
68
+ }
69
+
70
+ @inproceedings{deng2023mindweb,
71
+ title={Mind2Web: Towards a Generalist Agent for the Web},
72
+ author={Xiang Deng and Yu Gu and Boyuan Zheng and Shijie Chen and Samuel Stevens and Boshi Wang and Huan Sun and Yu Su},
73
+ booktitle={Thirty-seventh Conference on Neural Information Processing Systems},
74
+ year={2023},
75
+ url={https://openreview.net/forum?id=kiYqbO3wqw}
76
+ }
77
+ ```