celikn commited on
Commit
e544cea
·
verified ·
1 Parent(s): 3217491

Create config.yaml

Browse files

config for comparing models

Files changed (1) hide show
  1. config.yaml +19 -0
config.yaml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ models:
3
+ - name: "mistralai/Mistral-7B-Instruct"
4
+ params:
5
+ max_tokens: 256
6
+ temperature: 0.2
7
+ - name: "meta-llama/Llama-2-7b-chat-hf"
8
+ params:
9
+ max_tokens: 256
10
+ temperature: 0.2
11
+
12
+ prompt_templates:
13
+ qa: "Answer the question: {{question}}"
14
+ summarization: "Summarize this text: {{context}}"
15
+
16
+ runtime:
17
+ output_results_csv: "results.csv"
18
+ output_summary_md: "summary.md"
19
+ request_timeout_seconds: 60