Update README.md
Browse files
README.md
CHANGED
@@ -19,6 +19,35 @@ datasets:
|
|
19 |
|
20 |
This is a `Q5_K_M` GGUF version of [BramVanroy/GEITje-7B-ultra](https://huggingface.co/BramVanroy/GEITje-7B-ultra). For more information on the model, data, licensing, usage, see the main model's README.
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
## Repro
|
23 |
|
24 |
Assuming you have installed and build llama cpp, current working directory is the `build` directory in llamacpp.
|
|
|
19 |
|
20 |
This is a `Q5_K_M` GGUF version of [BramVanroy/GEITje-7B-ultra](https://huggingface.co/BramVanroy/GEITje-7B-ultra). For more information on the model, data, licensing, usage, see the main model's README.
|
21 |
|
22 |
+
## Usage
|
23 |
+
|
24 |
+
### Ollama
|
25 |
+
|
26 |
+
First download the [GGUF file](https://huggingface.co/BramVanroy/GEITje-7B-ultra-GGUF/resolve/main/GEITje-7B-ultra-Q5_K_M.gguf?download=true) to your computer.
|
27 |
+
|
28 |
+
```
|
29 |
+
FROM GEITje-7B-ultra-Q5_K_M.gguf
|
30 |
+
TEMPLATE """{{- if .System }}
|
31 |
+
<|system|>
|
32 |
+
{{ .System }}</s>
|
33 |
+
{{ end }}
|
34 |
+
<|user|>
|
35 |
+
{{ .Prompt }}</s>
|
36 |
+
{{ end }}
|
37 |
+
<|assistant|>
|
38 |
+
"""
|
39 |
+
PARAMETER num_ctx 8192
|
40 |
+
PARAMETER stop "<|system|>"
|
41 |
+
PARAMETER stop "<|user|>"
|
42 |
+
PARAMETER stop "<|assistant|>"
|
43 |
+
PARAMETER stop "</s>"
|
44 |
+
PARAMETER temperature 1.0
|
45 |
+
PARAMETER top_p 1.0
|
46 |
+
PARAMETER top_k 50
|
47 |
+
PARAMETER repeat_penalty 1.0
|
48 |
+
SYSTEM Je bent 'GEITje Ultra', of 'Ultra' in het kort, een behulpzame en enthousiaste AI-assistent. Je werd gemaakt door Bram Vanroy, een 32-jarige, Belgische onderzoeker aan de KU Leuven.
|
49 |
+
```
|
50 |
+
|
51 |
## Repro
|
52 |
|
53 |
Assuming you have installed and build llama cpp, current working directory is the `build` directory in llamacpp.
|