(Trained with Unsloth)
Browse files
Modelfile
CHANGED
@@ -1,21 +1,10 @@
|
|
1 |
-
FROM /root/Shay1309/dataseturl/unsloth.Q8_0.gguf
|
2 |
-
|
3 |
-
TEMPLATE """{{ if .System }}{{ .System }}{{ end }}{{ if .Prompt }}
|
4 |
-
|
5 |
-
### Instruction:
|
6 |
-
{{ .Prompt }}{{ end }}
|
7 |
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
PARAMETER stop "</s>"
|
14 |
-
PARAMETER stop "<|user|>"
|
15 |
-
PARAMETER stop "<|system|>"
|
16 |
-
PARAMETER stop "<unk>"
|
17 |
PARAMETER stop "<|endoftext|>"
|
18 |
-
PARAMETER stop "<|placeholder"
|
19 |
PARAMETER temperature 1.5
|
20 |
PARAMETER min_p 0.1
|
21 |
-
SYSTEM "You are a helpful assistant"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
+
FROM /root/Shay1309/dataseturl/unsloth.Q8_0.gguf
|
3 |
+
TEMPLATE """{{ if .System }}{{ .System }}
|
4 |
+
{{ end }}{{ if .Prompt }}>>> User: {{ .Prompt }}
|
5 |
+
{{ end }}>>> Assistant: {{ .Response }}<|endoftext|>
|
6 |
+
"""
|
|
|
|
|
|
|
|
|
7 |
PARAMETER stop "<|endoftext|>"
|
|
|
8 |
PARAMETER temperature 1.5
|
9 |
PARAMETER min_p 0.1
|
10 |
+
SYSTEM """You are a helpful assistant to the user"""
|