(Trained with Unsloth)
Browse files
Modelfile
CHANGED
|
@@ -1,20 +1,14 @@
|
|
| 1 |
-
|
| 2 |
FROM /content/cassioblaz/llama3/unsloth.Q8_0.gguf
|
| 3 |
-
|
| 4 |
-
{{
|
| 5 |
-
{{
|
| 6 |
-
{{ .
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
PARAMETER
|
| 15 |
-
|
| 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
|
|
|
|
|
|
|
| 1 |
FROM /content/cassioblaz/llama3/unsloth.Q8_0.gguf
|
| 2 |
+
|
| 3 |
+
TEMPLATE """{{ if .System }}{{ .System }}{{ end }}{{ if .Prompt }}
|
| 4 |
+
USER: {{ .Prompt }}{{ end }}
|
| 5 |
+
ASSISTANT: {{ .Response }}<|eot_id|>"""
|
| 6 |
+
|
| 7 |
+
PARAMETER stop "<|end_header_id|>"
|
| 8 |
+
PARAMETER stop "<|end_of_text|>"
|
| 9 |
+
PARAMETER stop "<|start_header_id|>"
|
| 10 |
+
PARAMETER stop "<|eot_id|>"
|
| 11 |
+
PARAMETER stop "<|reserved_special_token_"
|
| 12 |
+
PARAMETER temperature 1.5
|
| 13 |
+
PARAMETER min_p 0.1
|
| 14 |
+
SYSTEM "Below are some instructions that describe some tasks. Write responses that appropriately complete each request."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|