Update README.md
Browse files
README.md
CHANGED
@@ -21,3 +21,16 @@ language:
|
|
21 |
This mistral model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
|
22 |
|
23 |
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
This mistral model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
|
22 |
|
23 |
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|
24 |
+
|
25 |
+
FROM {__FILE_LOCATION__}
|
26 |
+
TEMPLATE """{{ if .System }}<|im_start|>system
|
27 |
+
{{ .System }}<|im_end|>
|
28 |
+
{{ end }}{{ if .Prompt }}<|im_start|>user
|
29 |
+
{{ .Prompt }}<|im_end|>
|
30 |
+
{{ end }}<|im_start|>assistant
|
31 |
+
{{ .Response }}<|im_end|>
|
32 |
+
"""
|
33 |
+
PARAMETER stop "<|im_start|>"
|
34 |
+
PARAMETER stop "<|im_end|>"
|
35 |
+
PARAMETER temperature 1.5
|
36 |
+
PARAMETER min_p 0.1
|