Instructions to use audreyt/Brumby-14B-Base-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use audreyt/Brumby-14B-Base-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="audreyt/Brumby-14B-Base-GGUF", filename="Brumby-14B-Base.Q2_K.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use audreyt/Brumby-14B-Base-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf audreyt/Brumby-14B-Base-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf audreyt/Brumby-14B-Base-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf audreyt/Brumby-14B-Base-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf audreyt/Brumby-14B-Base-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf audreyt/Brumby-14B-Base-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf audreyt/Brumby-14B-Base-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf audreyt/Brumby-14B-Base-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf audreyt/Brumby-14B-Base-GGUF:Q4_K_M
Use Docker
docker model run hf.co/audreyt/Brumby-14B-Base-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use audreyt/Brumby-14B-Base-GGUF with Ollama:
ollama run hf.co/audreyt/Brumby-14B-Base-GGUF:Q4_K_M
- Unsloth Studio
How to use audreyt/Brumby-14B-Base-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for audreyt/Brumby-14B-Base-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for audreyt/Brumby-14B-Base-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for audreyt/Brumby-14B-Base-GGUF to start chatting
- Docker Model Runner
How to use audreyt/Brumby-14B-Base-GGUF with Docker Model Runner:
docker model run hf.co/audreyt/Brumby-14B-Base-GGUF:Q4_K_M
- Lemonade
How to use audreyt/Brumby-14B-Base-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull audreyt/Brumby-14B-Base-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Brumby-14B-Base-GGUF-Q4_K_M
List all available models
lemonade list
Brumby 14B Base β GGUF
GGUF quantizations of Manifest AI's Brumby 14B Base, a 14B parameter language model using power retention β a novel attention mechanism that replaces softmax attention with a degree-2 symmetric power feature map and linear recurrence.
What is Power Retention?
Power retention (paper) is a recurrent attention mechanism that:
- Expands keys and queries via a symmetric power feature map
phi(x)(degree-2 polynomial expansion,head_dimβD=9216forhead_dim=128) - Maintains a recurrent state
S(updated asS = decay * S + outer(phi(k), v)) with a normalizers - Produces output as
(phi(q) @ S) / (phi(q) @ s)β normalized linear attention
This gives the model constant-time per-token inference (like RWKV/Mamba) while maintaining strong language modeling performance.
Quantizations
| 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 |
How to Run
Important: This model requires a custom
llama.cppbuild with power retention support.
1. Build llama.cpp with power retention
git clone https://github.com/audreyt/llama.cpp
cd llama.cpp
git checkout power-retention
cmake -B build -DGGML_CUDA=ON # or without CUDA for CPU-only
cmake --build build -j
2. Run inference
./build/bin/llama-cli \
--model brumby-14b-base-pr.Q4_K_M.gguf \
-p "Once upon a time" \
-n 100 \
--temp 0.7 \
--repeat-penalty 1.2
Model Details
- Architecture: Qwen2PR (Qwen2 backbone with power retention replacing softmax attention)
- Parameters: 14.77B
- Context: 131,072 tokens
- Heads: 40 Q / 8 KV (GQA with 5 groups)
- Head dim: 128
- Layers: 40
- Vocab: 151,936 (Qwen2 tokenizer)
- Recurrent state: ~1.4 GB per sequence (9216 Γ 129 Γ 8 KV heads Γ 40 layers Γ 4 bytes)
Credits
- Model by Manifest AI
- Power retention algorithm from the retention package
- llama.cpp integration: audreyt/llama.cpp@power-retention
- Downloads last month
- 2
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
16-bit