Views
No views yet
phi(x) (degree-2 polynomial expansion, head_dim → D=9216 for head_dim=128)S (updated as S = decay * S + outer(phi(k), v)) with a normalizer s(phi(q) @ S) / (phi(q) @ s) — normalized linear attention| File | Quant | Size | Description |
|---|---|---|---|
Brumby-14B-Base.Q2_K.gguf | Q2_K | 5.4 GB | Smallest, lower quality |
Brumby-14B-Base.Q3_K_M.gguf | Q3_K_M | 6.9 GB | Small, good balance |
Brumby-14B-Base.Q4_K_M.gguf | Q4_K_M | 8.4 GB | Recommended |
Brumby-14B-Base.Q5_K_M.gguf | Q5_K_M | 9.8 GB | Good quality |
Brumby-14B-Base.Q6_K.gguf | Q6_K | 12 GB | Very good quality |
Brumby-14B-Base.Q8_0.gguf | Q8_0 | 15 GB | Near-lossless |
Important: This model requires a customllama.cppbuild with power retention support.
1git clone https://github.com/audreyt/llama.cpp
2cd llama.cpp
3git checkout power-retention
4cmake -B build -DGGML_CUDA=ON # or without CUDA for CPU-only
5cmake --build build -j1./build/bin/llama-cli \
2 --model brumby-14b-base-pr.Q4_K_M.gguf \
3 -p "Once upon a time" \
4 -n 100 \
5 --temp 0.7 \
6 --repeat-penalty 1.2