You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for your work and for releasing the code!
After reading your paper, I am confused about the manual prompts.
"""
In addition to the regular models where we initialize with [MASK] tokens,
we performed a run on the GLUE datasets with the same prompt
[CLS] "S1"? [MASK]. "S2"! [SEP] for all the tasks
"""
In the manual prompts, I want to know where to insert the prompts. Wouldn't the original WARP also have [CLS], [SEP] and [MASK] special tokens? What is the difference between WARPinit and WARP8 in the insertion position of prompts?
I don't know much about this field, thank you very much for answering my question
The text was updated successfully, but these errors were encountered:
Prompt Template - pre-defined (as a hyperparameter) places of where to put the trainable WARP parameters. An example of a template will be - [CLS] [P1] [P2] [S1] [P3] [MASK] [P4] [S2] [P5] [P6] [SEP] which means that the [P1]...[P6] positions have trainable word embeddings.
The only difference between WARP8 and WARPinit is that the original WARP8 are initialized randomly (or with a fixed vector) and WARPinit parameters are initialized with actual word embeddings of ", ", ?, ., ", ", !.
Thus, the WARPinit is as good as zero-shot classifiers before any training steps.
"""
In addition to the regular models where we initialize with [MASK] tokens,
we performed a run on the GLUE datasets with the same prompt
[CLS] "S1"? [MASK]. "S2"! [SEP] for all the tasks
"""
Hi,
Thank you for your work and for releasing the code!
After reading your paper, I am confused about the manual prompts.
"""
In addition to the regular models where we initialize with [MASK] tokens,
we performed a run on the GLUE datasets with the same prompt
[CLS] "S1"? [MASK]. "S2"! [SEP] for all the tasks
"""
In the manual prompts, I want to know where to insert the prompts. Wouldn't the original WARP also have [CLS], [SEP] and [MASK] special tokens? What is the difference between WARPinit and WARP8 in the insertion position of prompts?
I don't know much about this field, thank you very much for answering my question
The text was updated successfully, but these errors were encountered: