Skip to content
Snippets Groups Projects
Commit 6def1d05 authored by Adrien Klose's avatar Adrien Klose
Browse files

fix the displayed information for md file

parent 036e31dd
No related branches found
No related tags found
No related merge requests found
......@@ -3,50 +3,46 @@ This file describes the different strategies used for the prompting process and
## Baseline (baseline):
The questions will be given to the model as is without any additional context.
Prompts have the following format:
"""
```
You are a helpful medical expert who answers with either yes or no to questions.
Question: <question>
"""
```
## All in One None Resolve (aionr):
The questions will be given to the model as is with additional triples in their raw 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.
"""<s1> has relationshsip <r1> to <o1>"""
"""<s2> has relationshsip <r2> to <o2>"""
Question: <question>
"""
```
## 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.
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.
"""<NL sentence for s1r1o1>"""
"""<NL sentence for s2r2o2>"""
Question: <question>
"""
```
## 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.
"""
```
You are a helpful medical expert who answers with either yes or no. Consider the information in triple quotes as factual knowledge.
Question: <question>
"""
"""
Given our previous conversation and the following information in triple quotes reevaluate your answer.
"""<NL sentence for s1r1o1>"""
"""
"""
Given our previous conversation and the following information in triple quotes reevaluate your answer.
"""<NL sentence for s2r2o2>"""
"""
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment