Sweaterdog commited on
Commit
eca897e
·
verified ·
1 Parent(s): 0bcf3c2

Update Modelfile

Browse files
Files changed (1) hide show
  1. Modelfile +11 -4
Modelfile CHANGED
@@ -1,5 +1,4 @@
1
-
2
- FROM /content/Sweaterdog/Andy-3.5/unsloth.F16.gguf
3
  TEMPLATE """{{ if .System }}<|im_start|>system
4
  {{ .System }}<|im_end|>
5
  {{ end }}{{ if .Prompt }}<|im_start|>user
@@ -9,5 +8,13 @@ TEMPLATE """{{ if .System }}<|im_start|>system
9
  """
10
  PARAMETER stop "<|im_start|>"
11
  PARAMETER stop "<|im_end|>"
12
- PARAMETER temperature 1.5
13
- PARAMETER min_p 0.1
 
 
 
 
 
 
 
 
 
1
+ FROM YOUR\PATH\HERE\MODEL.GGUF
 
2
  TEMPLATE """{{ if .System }}<|im_start|>system
3
  {{ .System }}<|im_end|>
4
  {{ end }}{{ if .Prompt }}<|im_start|>user
 
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