nmarafo commited on
Commit
a560105
1 Parent(s): 9321ef3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -1
README.md CHANGED
@@ -1,11 +1,27 @@
1
  ---
2
  library_name: peft
3
  base_model: TheBloke/Mistral-7B-Instruct-v0.2-GPTQ
 
 
 
 
 
 
4
  ---
5
 
6
  # Model Card for Model ID
7
 
8
- <!-- Provide a quick summary of what the model is/does. -->
 
 
 
 
 
 
 
 
 
 
9
 
10
 
11
 
 
1
  ---
2
  library_name: peft
3
  base_model: TheBloke/Mistral-7B-Instruct-v0.2-GPTQ
4
+ license: apache-2.0
5
+ datasets:
6
+ - nmarafo/truthful_qa_TrueFalse-Feedback
7
+ language:
8
+ - en
9
+ - es
10
  ---
11
 
12
  # Model Card for Model ID
13
 
14
+ This is an adapter prepared to return True or False depending on whether the student's answer ("student_answer") is correct based on the question ("question") and comparing it with a given answer ("best_answer").
15
+ The prompt has the following structure:
16
+ ```
17
+ <s>[INST]Analyze the question, the expected answer, and the student's response.
18
+ Determine if the student's answer is correct or not. It only returns True if the student's answer is correct with respect to the expected answer or False otherwise.
19
+ Add a brief comment explaining why the answer is correct or incorrect.\n\n
20
+ Question: {question}\n
21
+ Expected Answer: {best_answer}\n
22
+ Student Answer: {student_answer}[/INST]</s>"
23
+ ```
24
+
25
 
26
 
27