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
Great work! But I have a small question. The paper states that to maintain data diversity, instruction style are specified during generation. However, in the prompt provided in appendix C, there's no indication of how a particular style is assigned to these instructions. How exactly is the specific style determined? Is it required to define the style explicitly?
The text was updated successfully, but these errors were encountered:
I replaced the "LENGTH_FORMAT_FILL_ME" in Figure 3 with with one of these combinations from INSTRUCTION_FORMAT_DETAILS below:
format_details_length= [
"a short instruction, only one or two sentences long.",
"a medium length instruction, ranging from three to six sentences long.",
"a long instruction, about one paragraph long.",
"a very long instruction, about two paragraphs long."
]
format_details_features= [
"Your instruction should also be written from the POV of a persona, where you describe why you are searching for this information.",
"Start the instruction with some factual sentences that are background information, merely stating facts (but that do not answer the question).",
"Your instruction should also contain negation, e.g. describing what types of documents are not relevant to the query.",
""
]
# take all combinations of the format details with the lengthINSTRUCTION_FORMAT_DETAILS= []
forlengthinformat_details_length:
forfeatureinformat_details_features:
INSTRUCTION_FORMAT_DETAILS.append(f"{length}{feature}")
I see I forgot to include these in the paper, will update this in the next version. Thanks again for pointing it out and please let me know if you have other questions!
Great work! But I have a small question. The paper states that to maintain data diversity, instruction style are specified during generation. However, in the prompt provided in appendix C, there's no indication of how a particular style is assigned to these instructions. How exactly is the specific style determined? Is it required to define the style explicitly?
The text was updated successfully, but these errors were encountered: