Views
No views yet

| File | Quant | Size |
|---|---|---|
| wifuGPT-1.7B-Q4_K_M.gguf | Q4_K_M | 1.1 GB |
| wifuGPT-1.7B-BF16.gguf | BF16 | 3.3 GB |
huggingface-cli and then create the Ollama model from the local file:1pip install -U huggingface_hub
2hf download n0ctyx/wifuGPT-1.7B-GGUF wifuGPT-1.7B-Q4_K_M.gguf --local-dir .Modelfile:1 FROM ./wifuGPT-1.7B-Q4_K_M.gguf
2 PARAMETER temperature 0.7
3 PARAMETER top_p 0.8
4 TEMPLATE """{{- range .Messages }}
5 <|im_start|>{{ .Role }}
6 {{ .Content }}<|im_end|>
7 {{ end }}
8 <|im_start|>assistant
9 <think>
10
11 </think>
12 """ 1 ollama create wifugpt -f Modelfile
2 ollama run./llama-cli -m wifuGPT-1.7B-Q4_K_M.gguf -p "Hey!" -n 512| Variant | Repo | Size |
|---|---|---|
| bf16 safetensors | n0ctyx/wifuGPT-1.7B | 3.4 GB |
| 4-bit safetensors | n0ctyx/wifuGPT-1.7B-4bit | 1.35 GB |
| GGUF (this) | n0ctyx/wifuGPT-1.7B-GGUF | 1.1 / 3.3 GB |