GGUF
English
qwen2
conversational
Sweaterdog commited on
Commit
ae857a4
·
verified ·
1 Parent(s): 1d1a561

Create Modelfile

Browse files
Files changed (1) hide show
  1. Modelfile +24 -0
Modelfile ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ TEMPLATE """{{ if .System }}<|im_start|>system
2
+ {{ .System }}<|im_end|>
3
+ {{ end }}{{ if .Prompt }}<|im_start|>user
4
+ {{ .Prompt }}<|im_end|>
5
+ {{ end }}<|im_start|>assistant
6
+ {{ .Response }}<|im_end|>
7
+ """
8
+ SYSTEM """Respond in the following format:
9
+ <think>
10
+ ...
11
+ </think>
12
+ <answer
13
+ ...
14
+ </answer>
15
+ """
16
+ PARAMETER stop "<|im_start|>"
17
+ PARAMETER stop "<|im_end|>"
18
+ PARAMETER temperature 0.6
19
+ PARAMETER min_p 0.1
20
+ PARAMETER repeat_last_n 128
21
+ PARAMETER repeat_penalty 1.3
22
+ PARAMETER top_k 20
23
+ PARAMETER top_p 0.7
24
+ PARAMETER min_p 0.05