Views
No views yet
<|im_start|> and <|im_end|>
are not tokens in this vocabulary, so nothing ever ends a turn - the model
writes both sides of the conversation until it hits your token limit.| Size | ||
|---|---|---|
apertus-v1.1-4b-instruct-q8_0.gguf | 4.1 GB | basically lossless, start here |
apertus-v1.1-4b-instruct-q4_k_m.gguf | 2.4 GB | smaller and quicker, a bit worse |
llama-server -m apertus-v1.1-4b-instruct-q8_0.gguf --ctx-size 40961docker run --rm -v ./source:/src:ro -v ./out:/models \
2 ghcr.io/ggml-org/llama.cpp:full \
3 --convert /src --outfile /models/f16.gguf --outtype f16
4
5docker run --rm -v ./out:/models ghcr.io/ggml-org/llama.cpp:full \
6 --quantize /models/f16.gguf /models/apertus-v1.1-4b-instruct-q8_0.gguf Q8_0FILL IN.