Remek commited on
Commit
3e96d70
·
verified ·
1 Parent(s): a94567a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md CHANGED
@@ -33,6 +33,29 @@ Simple Colab notebook for testing: https://colab.research.google.com/drive/1Al9g
33
  * **Q6_K:** Uses Q8_K for all tensors
34
  * **Q8_0:** Almost indistinguishable from float16. High resource use and slow. Not recommended for most users.
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  ### Model description:
37
 
38
  * **Developed by:** [SpeakLeash](https://speakleash.org/) & [ACK Cyfronet AGH](https://www.cyfronet.pl/)
 
33
  * **Q6_K:** Uses Q8_K for all tensors
34
  * **Q8_0:** Almost indistinguishable from float16. High resource use and slow. Not recommended for most users.
35
 
36
+ ### Ollama Modfile
37
+ The GGUF file can be used with [Ollama](https://ollama.com/). To do this, you need to import the model using the configuration defined in the Modfile. For model eg. Bielik-11B-v2.2-Instruct.Q4_K_M.gguf (full path to model location) Modfile looks like:
38
+
39
+ ```
40
+ FROM ./Bielik-11B-v2.2-Instruct.Q4_K_M.gguf
41
+
42
+ TEMPLATE """<s>{{ if .System }}<|start_header_id|>system<|end_header_id|>
43
+
44
+ {{ .System }}<|eot_id|>{{ end }}{{ if .Prompt }}<|start_header_id|>user<|end_header_id|>
45
+
46
+ {{ .Prompt }}<|eot_id|>{{ end }}<|start_header_id|>assistant<|end_header_id|>
47
+
48
+ {{ .Response }}<|eot_id|>"""
49
+
50
+ PARAMETER stop "<|start_header_id|>"
51
+ PARAMETER stop "<|end_header_id|>"
52
+ PARAMETER stop "<|eot_id|>"
53
+
54
+ # Remeber to set low temperature for experimental models (1-3bits)
55
+ PARAMETER temperature 0.1
56
+
57
+ ```
58
+
59
  ### Model description:
60
 
61
  * **Developed by:** [SpeakLeash](https://speakleash.org/) & [ACK Cyfronet AGH](https://www.cyfronet.pl/)