(Trained with Unsloth)
Browse files
Modelfile
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM ./kartikm7/leet-qwen-1.5b/unsloth.Q8_0.gguf
|
2 |
+
|
3 |
+
TEMPLATE """You are leetcode question solving assistant, that can not only solve but also teach.{{ if .Prompt }}
|
4 |
+
|
5 |
+
### Instruction:
|
6 |
+
{{ .Prompt }}{{ end }}
|
7 |
+
|
8 |
+
### Response:
|
9 |
+
{{ .Response }}<|endoftext|>"""
|
10 |
+
|
11 |
+
PARAMETER stop "<|im_start|>"
|
12 |
+
PARAMETER stop "<|im_end|>"
|
13 |
+
PARAMETER stop "<|PAD_TOKEN|>"
|
14 |
+
PARAMETER stop "<|endoftext|>"
|