flan_anli.yaml 2.33 KB
Newer Older
lintangsutawika's avatar
lintangsutawika committed
1
2
3
# Flan Prompt Templates
prompts:
  "template-0":
4
    doc_to_text: "{{context}}\n\nChoose your answer: based on the paragraph above can we conclude that \"{{hypothesis}}\"?\n\nOPTIONS:\n- Yes\n- It's impossible to say\n- No\nI think the answer is"
5
    doc_to_target: """{{["Yes", "It's impossible to say", "No"][label]}}"""
lintangsutawika's avatar
lintangsutawika committed
6
  "template-1":
7
    doc_to_text: "{{context}}\n\nBased on that paragraph can we conclude that this sentence is true?\n{{hypothesis}}\n\nOPTIONS:\n- Yes\n- It's impossible to say\n- No"
8
    doc_to_target: "{{["Yes", "It's impossible to say", "No"][label]}}"
lintangsutawika's avatar
lintangsutawika committed
9
  "template-2":
10
    doc_to_text: "{{context}}\n\nCan we draw the following conclusion?\n{{hypothesis}}\n\nOPTIONS:\n- Yes\n- It's impossible to say\n- No"
11
    doc_to_target: "{{["Yes", "It's impossible to say", "No"][label]}}"
lintangsutawika's avatar
lintangsutawika committed
12
  "template-3":
13
    doc_to_text: "{{context}}\nDoes this next sentence follow, given the preceding text?\n{{hypothesis}}\n\nOPTIONS:\n- Yes\n- It's impossible to say\n- No"
14
    doc_to_target: "{{["Yes", "It's impossible to say", "No"][label]}}"
lintangsutawika's avatar
lintangsutawika committed
15
  "template-4":
16
    doc_to_text: "{{context}}\nCan we infer the following?\n{{hypothesis}}\n\nOPTIONS:\n- Yes\n- It's impossible to say\n- No\nThe answer is:"
17
    doc_to_target: "{{["Yes", "It's impossible to say", "No"][label]}}"
lintangsutawika's avatar
lintangsutawika committed
18
  "template-5":
19
    doc_to_text: "Read the following paragraph and determine if the hypothesis is true:\n\n{{context}}\n\nOPTIONS:\n- Yes\n- It's impossible to say\n- No\nHypothesis: {{hypothesis}}\n\n\n"
20
    doc_to_target: "{{["Yes", "It's impossible to say", "No"][label]}}"
lintangsutawika's avatar
lintangsutawika committed
21
  "template-6":
22
    doc_to_text: "Read the text and determine if the sentence is true (see options at the end):\n\n{{context}}\n\nSentence: {{hypothesis}}\nOPTIONS:\n- Yes\n- It's impossible to say\n- No"
23
    doc_to_target: "{{["Yes", "It's impossible to say", "No"][label]}}"
lintangsutawika's avatar
lintangsutawika committed
24
  "template-7":
25
    doc_to_text: "Can we draw the following hypothesis from the context (see options)? \n\nContext:\n\n{{context}}\n\nHypothesis: {{hypothesis}}\nOPTIONS:\n- Yes\n- It's impossible to say\n- No"
26
    doc_to_target: "{{["Yes", "It's impossible to say", "No"][label]}}"
lintangsutawika's avatar
lintangsutawika committed
27
  "template-8":
28
    doc_to_text: "Choose from options: Determine if the sentence is true based on the text below:\n{{hypothesis}}\n\n{{context}}\nOPTIONS:\n- Yes\n- It's impossible to say\n- No"
29
    doc_to_target: "{{["Yes", "It's impossible to say", "No"][label]}}"