cassioblaz commited on
Commit
f99c898
·
verified ·
1 Parent(s): 8076ae2

(Trained with Unsloth)

Browse files
Files changed (1) hide show
  1. Modelfile +19 -16
Modelfile CHANGED
@@ -1,17 +1,20 @@
1
- FROM /content/cassioblaz/llama3/unsloth.Q8_0.gguf
2
-
3
- TEMPLATE """Below are some instructions that describe some tasks. Write responses that appropriately complete each request.{{ if .Prompt }}
4
-
5
- ### Instruction:
6
- {{ .Prompt }}{{ end }}
7
 
8
- ### Response:
9
- {{ .Response }}<|end_of_text|>"""
10
-
11
- PARAMETER stop "<|start_header_id|>"
12
- PARAMETER stop "<|eot_id|>"
13
- PARAMETER stop "<|end_header_id|>"
14
- PARAMETER stop "<|end_of_text|>"
15
- PARAMETER stop "<|reserved_special_token_"
16
- PARAMETER temperature 1.5
17
- PARAMETER min_p 0.1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
 
2
+ FROM /content/cassioblaz/llama3/unsloth.Q8_0.gguf
3
+ TEMPLATE """{{- range $i, $_ := .Messages }}
4
+ {{- $last := eq (len (slice $.Messages $i)) 1 }}
5
+ {{- if or (eq .Role "user") (eq .Role "system") }}<start_of_turn>user
6
+ {{ .Content }}<end_of_turn>
7
+ {{ if $last }}<start_of_turn>model
8
+ {{ end }}
9
+ {{- else if eq .Role "assistant" }}<start_of_turn>model
10
+ {{ .Content }}{{ if not $last }}<end_of_turn>
11
+ {{ end }}
12
+ {{- end }}
13
+ {{- end }}"""
14
+ PARAMETER stop "<end_of_turn>"
15
+ PARAMETER stop "<eos>"
16
+ PARAMETER temperature 0.1
17
+ PARAMETER min_p 0.0
18
+ PARAMETER top_k 64
19
+ PARAMETER top_p 0.95
20
+ PARAMETER num_predict 32768