Update README.md
Browse files
README.md
CHANGED
@@ -21,3 +21,17 @@ language:
|
|
21 |
This llama 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 llama 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 }}<|start_header_id|>system<|end_header_id|>
|
27 |
+
|
28 |
+
{{ .System }}<|eot_id|>{{ end }}{{ if .Prompt }}<|start_header_id|>user<|end_header_id|>
|
29 |
+
|
30 |
+
{{ .Prompt }}<|eot_id|>{{ end }}<|start_header_id|>assistant<|end_header_id|>
|
31 |
+
|
32 |
+
{{ .Response }}<|eot_id|>"""
|
33 |
+
PARAMETER stop "<|start_header_id|>"
|
34 |
+
PARAMETER stop "<|end_header_id|>"
|
35 |
+
PARAMETER stop "<|eot_id|>"
|
36 |
+
PARAMETER temperature 1.5
|
37 |
+
PARAMETER min_p 0.1
|