Response to Reviewer SaZz
Thank you, Reviewer SaZz, for your positive opinion. In the following, let us try to address your concerns.
> The model proposed seems too simple. However, the experimental analysis and finding is nontrivial.
Thanks again for recognizing the value of our findings. Our work's primary contribution, as recognized by the reviewers, is the rediscovery of in-context few-shot learning capabilities within seq2seq models, realized through comprehensive experimentation. Our endeavor aims to highlight that seq2seq models inherently possess the capability for in-context learning, rather than introducing a novel methodology. Therefore, instead of employing specialized and potentially non-generalizable methods, we focus on applying straightforward and universally applicable methods that are tailored to the innate structure and objectives of seq2seq models. The effectiveness of our proposed objective-aligned prompting and fusion-based approach, while seemingly straightforward, is attributed to their simple yet carefully crafted design, allowing for seamless integration within the seq2seq framework.
Additionally, a critical aspect of in-context learning capabilities lies in the model itself, which needs to be trained with high-quality data and a well-defined objective to possess higher-order skills. Recently, research focus has shifted predominantly towards decoder-only models, resulting in a relative neglect of seq2seq models in the area of in-context learning. Recognizing this gap, we employed a direct yet impactful strategy to showcase the capabilities of seq2seq models, which we consider to be a meaningful endeavor. Through our work, we expect that seq2seq models will be more deeply researched in the future as Large Language Models. We would be grateful if this aspect is acknowledged as our contribution.
---
> The paper might want to explain a bit more about the specific tasks of few-shot learning.
Thank you for pointing it out. We acknowledge that Section 4 of the main paper lacks detailed explanations of each task. To address this, we will include these details in the Appendix of the revised paper.
---
> The paper should explain why the seq-to-seq model is powerful in related tasks, from a machine-learning perspective.
In the comparison between encoder-decoder and decoder-only models, a key inductive bias of the encoder-decoder models is their bidirectional encoding capability, especially evident in the processing of examples and queries. This bidirectionality facilitates a deeper understanding of the relationships between examples and queries, allowing the encoder to more precisely extract relevant information and the decoder to generate outputs more effectively based on this information. Furthermore, as highlighted in Section 5.4 of the main paper, encoder-decoder models have a strength in handling permutation bias, inherent to their architecture, meaning their performance is less affected by variations in the order of examples.
---
> Similarly, the paper might want to analyze in-depth why early fusion sometimes yields better performance than late fusion, from a machine-learning perspective.
Generally, the pretraining objective of encoder-decoder models is designed such that the decoder aggregates the outputs of the encoder. This process maximizes the joint probability of the input text sequence for the decoder, achieved through the encoder-decoder attention module. In this context, the early-fusion method implicitly selects examples that assist in resolving the test query by fully leveraging the encoder-decoder attention module. On the other hand, an encoder-decoder model employing a late-fusion method does not differentiate whether individual examples aid in solving the test query; it simply aggregates all responses. In essence, the late-fusion method does not fully utilize the encoder-decoder attention module. We think that this distinction sometimes enables the early-fusion method to outperform the late-fusion method. We will add these details in Section 5 of the revised paper.