(Trained with Unsloth)
Browse files
Modelfile
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
FROM /content/jnjj/model/unsloth.F16.gguf
|
| 3 |
+
TEMPLATE """{{ if .System }}{{ .System }}
|
| 4 |
+
|
| 5 |
+
{{ end }}{{ if .Prompt }}### Instruction:
|
| 6 |
+
{{ .Prompt }}{{ end }}
|
| 7 |
+
|
| 8 |
+
### Response:
|
| 9 |
+
{{ .Response }}</s>
|
| 10 |
+
|
| 11 |
+
"""
|
| 12 |
+
PARAMETER stop "</s>"
|
| 13 |
+
PARAMETER temperature 1.5
|
| 14 |
+
PARAMETER min_p 0.1
|
| 15 |
+
SYSTEM """Below are some instructions that describe some tasks. Write responses that appropriately complete each request."""
|