@@ -3,50 +3,46 @@ This file describes the different strategies used for the prompting process and
...
@@ -3,50 +3,46 @@ This file describes the different strategies used for the prompting process and
## Baseline (baseline):
## Baseline (baseline):
The questions will be given to the model as is without any additional context.
The questions will be given to the model as is without any additional context.
Prompts have the following format:
Prompts have the following format:
"""
```
You are a helpful medical expert who answers with either yes or no to questions.
You are a helpful medical expert who answers with either yes or no to questions.
Question: <question>
Question: <question>
"""
```
## All in One None Resolve (aionr):
## All in One None Resolve (aionr):
The questions will be given to the model as is with additional triples in their raw format.
The questions will be given to the model as is with additional triples in their raw format.
Prompts have the following format:
Prompts have the following format:
"""
```
You are a helpful medical expert who answers with either yes or no. Consider the information in triple quotes as factual knowledge.
You are a helpful medical expert who answers with either yes or no. Consider the information in triple quotes as factual knowledge.
"""<s1> has relationshsip <r1> to <o1>"""
"""<s1> has relationshsip <r1> to <o1>"""
"""<s2> has relationshsip <r2> to <o2>"""
"""<s2> has relationshsip <r2> to <o2>"""
Question: <question>
Question: <question>
"""
```
## All in One NL Resolve (aionlr):
## All in One NL Resolve (aionlr):
The questions will be given to the model as is with additional triples in the form of natural sentences.
The questions will be given to the model as is with additional triples in the form of natural sentences.
Prompts have the following format:
Prompts have the following format:
"""
```
You are a helpful medical expert who answers with either yes or no. Consider the information in triple quotes as factual knowledge.
You are a helpful medical expert who answers with either yes or no. Consider the information in triple quotes as factual knowledge.
"""<NL sentence for s1r1o1>"""
"""<NL sentence for s1r1o1>"""
"""<NL sentence for s2r2o2>"""
"""<NL sentence for s2r2o2>"""
Question: <question>
Question: <question>
"""
```
## Chain of Thought (cot):
## Chain of Thought (cot):
The questions will be given to the model as is. After the answer the model will be iteratively asked to reevaluate their answer given a triple in NL sentence form.
The questions will be given to the model as is. After the answer the model will be iteratively asked to reevaluate their answer given a triple in NL sentence form.
"""
```
You are a helpful medical expert who answers with either yes or no. Consider the information in triple quotes as factual knowledge.
You are a helpful medical expert who answers with either yes or no. Consider the information in triple quotes as factual knowledge.
Question: <question>
Question: <question>
"""
"""
Given our previous conversation and the following information in triple quotes reevaluate your answer.
Given our previous conversation and the following information in triple quotes reevaluate your answer.
"""<NL sentence for s1r1o1>"""
"""<NL sentence for s1r1o1>"""
"""
"""
Given our previous conversation and the following information in triple quotes reevaluate your answer.
Given our previous conversation and the following information in triple quotes reevaluate your answer.