olafgeibig commited on
Commit
8341d12
·
verified ·
1 Parent(s): 9307393

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -0
README.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Nous-Hermes-2-Mistral-7B-DPO
2
+
3
+ I converted [NousResearch/Nous-Hermes-2-Mistral-7B-DPO](https://huggingface.co/NousResearch/Nous-Hermes-2-Mistral-7B-DPO) to GGUF and quantized it to my favorite quantizations.
4
+
5
+ I quickly quantized this model using a modified version of [AutoGGUF](https://t.co/oUuxN2fvSX) from [Maxime Labonne](https://huggingface.co/mlabonne)
6
+
7
+ Here is my Ollama modelfile:
8
+ ```
9
+ FROM ./phi-2-openhermes-2.5.Q5_K_M.gguf
10
+ PARAMETER num_ctx 2048
11
+ TEMPLATE """{{ .System }}
12
+ ### USER: {{ .Prompt }}<|endoftext|>
13
+ ### ASSISTANT:
14
+ """
15
+ PARAMETER stop "<|endoftext|>"
16
+ ```