Sweaterdog commited on
Commit
5925f63
·
verified ·
1 Parent(s): 77b337e

Create Modelfile-BACKUP

Browse files
Files changed (1) hide show
  1. Modelfile-BACKUP +20 -0
Modelfile-BACKUP ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM keep\the\word\from\before\this\YOUR\PATH\HERE\MODEL.GGUF
2
+ TEMPLATE """{{ if .System }}<|im_start|>system
3
+ {{ .System }}<|im_end|>
4
+ {{ end }}{{ if .Prompt }}<|im_start|>user
5
+ {{ .Prompt }}<|im_end|>
6
+ {{ end }}<|im_start|>assistant
7
+ {{ .Response }}<|im_end|>
8
+ """
9
+ PARAMETER stop "<|im_start|>"
10
+ PARAMETER stop "<|im_end|>"
11
+ PARAMETER mirostat 2
12
+ PARAMETER mirostat_eta 0.2
13
+ PARAMETER mirostat_tau 4.0
14
+ PARAMETER num_ctx 32000
15
+ PARAMETER repeat_last_n 128
16
+ PARAMETER repeat_penalty 1.3
17
+ PARAMETER temperature 0.4
18
+ PARAMETER top_k 20
19
+ PARAMETER top_p 0.7
20
+ PARAMETER min_p 0.05