Author Response to Reviewer a21F (1/2)
We sincerely appreciate your thorough examination of our paper and your insightful feedback. We have carefully considered your concerns and offer the following clarifications and additional information. Please let us know if there are remaining questions or unclear points.
**> Weaknesses 1**
We have proposed a simple yet effective recipe to build multimodal web navigation agents, leveraging the prior knowledge of the web environment from instruction-finetuned language models and visual encoders. We believe that our paper has the following important technical contributions:
(1) We have introduced temporal and local visual tokens to perceive visual information better (Figure 2 and Section 5.1). Given the interactive nature of web navigation on computers, it is essential to consider both temporal and local relationships on the screen. Our experimental evaluation in Figure 4 (left) indicates that employing both temporal and local perception tokens is most critical for the performance, while the effects of various pre-trained ViT with different datasets or self-supervised objectives are marginal.
(2) We have investigated the architectural choices for base language models, comparing Flan-T5 (220M, 770M, 3B, 11B) and Flan-PaLM-8B. Flan-T5 is the encoder-decoder model and Flan-PaLM is the decoder-only model. In Figure 4 (right), while Flan-T5 shows a clear scaling trend, Flan-PaLM-8B performs sub-optimally (72.8%), compared to similar scale Flan-T5 models (770M: 72.4%, 3B: 75.5%, 11B: 79.0%). Our results imply that in web navigation, encoder-decoder architecture is better at understanding HTML than the decoder-only model, since encoder-decoder architecture can capture the hierarchical and nested structure of HTML well.
(3) We have shown a good estimation of the necessary amount of training dataset for multimodal web navigation. Previously, the community only had 12K, HTML-only dataset, and CC-Net implied that 2.4 million episodes and billions of frame online interactions would be needed to realize human-level performance. Our human-level performance with 401K demonstrations, and the newly introduced 347K multimodal dataset should encourage the community to develop capable on-premise multimodal agents via safe offline training.
**> Weaknesses 2 & Questions 1**
As described in Appendix F, we run LLM agents with 10,000 episodes per task and only keep successful trajectories to maintain the quality of the dataset. Such reward filtering is a common practice in web navigation as done in Humphreys et al., (2022) [2]. Because our dataset only consists of successful episodes, they do not have noisy data (i.e. failure episodes). We also added qualitative analysis in Table 15 (Appendix L) comparing the episodes from our 347K dataset and the previous 12K dataset. This shows that while previous work has included "hesitant" behaviors (e.g. clicking the same checkbox several times), our dataset has "shortest" behaviors. The quality of our dataset is appropriately controlled.
**> Questions 2**
"rollout" means "deploy" here. We deployed WebN-T5 (i.e. LLM policy) on MiniWoB environments, and WebN-T5 was asked to solve 100 episodes per task for all 56 tasks. The input and output are the same as our WebGUM; taking HTML, instruction, and action history as inputs, and predicting dictionary-format action (as described in Figure 2).
**> Questions 3**
Yes. Following Gur et al., (2022) [1] and Humphreys et al., (2022) [2], we evaluate WebGUM with 100 episodes per task. While other LLM baselines (RCI, AdaPlanner, Synapse) are evaluated with only 50 episodes, our evaluation with more episodes could reduce the variance during the evaluation.