Response to Reviewer AxcL
We thank the reviewer for recognizing the contribution and novelty of our work.
>Weaknesses 1 & Question 4: “Quality of vocabulary and selection of shared tokens may be important but no analysis is given”. “ How are the anchors chosen? Are they randomly sampled? Will the selection process affect model performance?”
Thanks for pointing out the importance of the shared vocabulary because it provides the ground for prompt transfer. However, we would like to mention that the performance of the transfer is not sensitive to the number of anchors. In Figure 4, we show that even if we use only 512 anchors, there is not much decrease in transfer performance. For the selection of anchors, Appendix A.1 shows that we may simply pick the top-k nearest neighbors based on the prompt embeddings, and we applied this to all the experiments for our method.
>Weakness 2: “Inconsistent use of search loss and matching loss in Section 3.4.”
Thanks for pointing out the inconsistency of terminologies. We fixed them in the paper.
>Question 1: “Does it mean the vocabularies should be the same or just have some common parts?”
We only require the vocabularies to share a common subset, which is simply the intersection of the BERT, RoBERTa, and ALBERT’s vocabularies in our experiments.
>Question 2: “In Equations 5 and 7, what is the optimization method and how do you implement this?”
We used gradient descent. Clarified after Eqn 5. Thanks!
>Question 3: “Will this method be applicable to generative models such as GPT?”
Thanks for pointing out this interesting further direction. We didn’t include generative models because we adhered to the framework established in the OptiPrompt paper, utilizing identical models and the factual probing dataset. We’ve now extended OptiPrompt and tried generative models, namely, gpt2. The results are as follows.
| source \ target | gpt2-small | gpt2-medium |
|---|---|---|
| direct tune | 31.62 | 32.23 |
| manual | 4.62 | 8.98 |
| gpt2-small | - | 13.72 |
| gpt2-medium | 5.02 | - |
| bert-base | 10.46 | 11.52 |
| roberta-base | 14.06 | 13.70 |
We found that our method is indeed applicable to generative models, and transferring the induced prompts from masked language models to generative models is also possible.