Update README.md
Browse files
README.md
CHANGED
@@ -65,6 +65,37 @@ The following models were included in the merge:
|
|
65 |
* [asiansoul/Llama-3-Open-Ko-Linear-8B](https://huggingface.co/asiansoul/Llama-3-Open-Ko-Linear-8B)
|
66 |
* [aaditya/Llama3-OpenBioLLM-8B](https://huggingface.co/aaditya/Llama3-OpenBioLLM-8B)
|
67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
### Configuration
|
69 |
|
70 |
The following YAML configuration was used to produce this model:
|
|
|
65 |
* [asiansoul/Llama-3-Open-Ko-Linear-8B](https://huggingface.co/asiansoul/Llama-3-Open-Ko-Linear-8B)
|
66 |
* [aaditya/Llama3-OpenBioLLM-8B](https://huggingface.co/aaditya/Llama3-OpenBioLLM-8B)
|
67 |
|
68 |
+
### Ollama
|
69 |
+
|
70 |
+
Modelfile_Q5_K_M
|
71 |
+
```
|
72 |
+
FROM joah-llama-3-koen-8b-coder-v1-Q5_K_M.gguf
|
73 |
+
TEMPLATE """
|
74 |
+
{{- if .System }}
|
75 |
+
system
|
76 |
+
<s>{{ .System }}</s>
|
77 |
+
{{- end }}
|
78 |
+
user
|
79 |
+
<s>Human:
|
80 |
+
{{ .Prompt }}</s>
|
81 |
+
assistant
|
82 |
+
<s>Assistant:
|
83 |
+
"""
|
84 |
+
|
85 |
+
SYSTEM """
|
86 |
+
μΉμ ν μ±λ΄μΌλ‘μ μλλ°©μ μμ²μ μ΅λν μμΈνκ³ μΉμ νκ² λ΅νμ. λͺ¨λ λλ΅μ νκ΅μ΄(Korean)μΌλ‘ λλ΅ν΄μ€.
|
87 |
+
"""
|
88 |
+
|
89 |
+
PARAMETER temperature 0.7
|
90 |
+
PARAMETER num_predict 3000
|
91 |
+
PARAMETER num_ctx 4096
|
92 |
+
PARAMETER stop "<s>"
|
93 |
+
PARAMETER stop "</s>"
|
94 |
+
```
|
95 |
+
|
96 |
+
```
|
97 |
+
ollama create joah -f ./Modelfile_Q5_K_M
|
98 |
+
```
|
99 |
### Configuration
|
100 |
|
101 |
The following YAML configuration was used to produce this model:
|