Colby commited on
Commit
5087872
·
verified ·
1 Parent(s): 52104f9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +31 -0
README.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: swiss-ai/Apertus-8B-Instruct-2509
3
+ tags:
4
+ - gguf
5
+ - apertus
6
+ - coding
7
+ - sft
8
+ ---
9
+
10
+ # apertus-8b-coding-gguf
11
+
12
+ GGUF conversion of [Colby/apertus-8b-coding](https://huggingface.co/Colby/apertus-8b-coding),
13
+ a LoRA fine-tune of [swiss-ai/Apertus-8B-Instruct-2509](https://huggingface.co/swiss-ai/Apertus-8B-Instruct-2509)
14
+ for coding assistance.
15
+
16
+ ## Quantizations
17
+
18
+ | File | Format | Size |
19
+ |------|--------|------|
20
+ | apertus-8b-coding-f16.gguf | FP16 | ~16 GB |
21
+ | apertus-8b-coding-q8_0.gguf | Q8_0 | ~8 GB |
22
+ | apertus-8b-coding-q5_k_m.gguf | Q5_K_M | ~5 GB |
23
+ | apertus-8b-coding-q4_k_m.gguf | Q4_K_M | ~4 GB |
24
+
25
+ ## Ollama usage
26
+
27
+ ```bash
28
+ hf download Colby/apertus-8b-coding-gguf apertus-8b-coding-q4_k_m.gguf
29
+ ollama create apertus-coding:8b -f Modelfile # FROM ./apertus-8b-coding-q4_k_m.gguf
30
+ ollama run apertus-coding:8b
31
+ ```