Instructions to use lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF", filename="Laguna-XS-2.1-REAP50-Q4_K_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-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 lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-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 lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M
Use Docker
docker model run hf.co/lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M
- Ollama
How to use lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF with Ollama:
ollama run hf.co/lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M
- Unsloth Studio
How to use lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-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 lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-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 lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF to start chatting
- Pi
How to use lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF with Docker Model Runner:
docker model run hf.co/lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M
- Lemonade
How to use lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Laguna-XS-2.1-REAP50-MagicQuant-GGUF-Q4_K_M
List all available models
lemonade list
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M# Run inference directly in the terminal:
llama cli -hf lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_MUse 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 lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M# Run inference directly in the terminal:
./llama-cli -hf lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_MBuild 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 lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M# Run inference directly in the terminal:
./build/bin/llama-cli -hf lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_MUse Docker
docker model run hf.co/lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_MWhat this is
A 50% expert-pruned poolside/Laguna-XS-2.1 (33.4B, 256-expert MoE) reduced to 17.7B / 128 experts with REAP router-weighted expert pruning, then quantized with MagicQuant's measured evolutionary search. 63 GB of BF16 weights become a 9.4 GB GGUF.
Read this before using it
Expert selection was calibrated on code (theblackcat102/evol-codealpaca-v1).
REAP therefore kept the experts that matter for code and dropped ones that did not
β the model is more specialized, not uniformly degraded. Measured perplexity
(100 chunks, ctx 512, identical settings; code = held-out evol-codealpaca):
| Model | Size | code PPL | wikitext PPL |
|---|---|---|---|
| Laguna-XS-2.1 (unpruned, BF16) | 63 GB | 3.1169 | 12.2918 |
| REAP-50% pruned (BF16) | 33 GB | 3.4864 (+11.9%) | 34.8363 (+183%) |
| This file β pruned + MagicQuant Q4 | 9.4 GB | 3.5703 (+14.5%) | 35.9179 (+192%) |
Use it for code. General-English ability is substantially reduced β that is the direct, expected consequence of pruning experts by code activations, and it is disclosed here rather than buried. Quantization itself costs only +2.4% on code; almost all of the delta is the pruning.
Notes
- Requires a
laguna-aware llama.cpp build (arch support landed July 2026; built and validated here againste9fa078). - No ROCmFPX sibling repo: the ROCmFPX fork does not yet carry laguna support.
- No MTP/speculative-decoding tensors in this architecture.
- License follows the base model (openmdw-1.1). All credit for the model to poolside.
Laguna-XS-2.1-REAP50-MagicQuant-GGUF
Derivative of Laguna-XS-2.1, pruned with REAP (Router-weighted Expert Activation Pruning) and quantized using MagicQuant hybrid evolutionary per-tensor search.
Base Model
This is a derivative of Laguna-XS-2.1. All credit for the base model architecture and weights goes to the original authors. The base model's license applies to this derivative.
Expert Pruning (REAP)
This is a Mixture-of-Experts model pruned using REAP (Router-weighted Expert Activation Pruning) from Cerebras Research:
- A calibration pass records router decisions and expert activations on representative data
- Each expert is scored with a saliency metric weighted by router usage
- The lowest-ranked experts in each MoE layer are dropped
- The router is trimmed accordingly so the remaining experts cover the full routing distribution
The result is a smaller MoE model with fewer experts per layer, trading a small amount of quality for reduced parameter count and inference cost.
Quantization Method
Quantized using MagicQuant hybrid evolutionary per-tensor quantization, based on the methodology by magiccodingman:
- Tensors are classified into sensitivity groups (Embeddings, Head, Query, Key, Output, FFN Up/Down, MoE Experts, Router)
- An evolutionary search finds the optimal quantization type per group, balancing size vs. perplexity
- Q4/Q5/Q6 tier targets are produced with different size-quality tradeoffs
- Small-row tensors and sensitivity-critical layers (embeddings, output head, router) are kept at F32/F16/BF16
- This is NOT a uniform quantization -- each tensor group gets its own optimal type
GGUF Files
| File | Size | Quant |
|---|---|---|
| Laguna-XS-2.1-REAP50-Q4_K_M.gguf | 10.0 GB | Q4 hybrid |
Usage
LM Studio
- Download the GGUF file of your preferred quantization tier
- Place it in your LM Studio models directory
- Load the model in LM Studio -- it will auto-detect the chat template
- The model supports the base model's full context length
llama.cpp
# Interactive chat (--jinja uses the model's embedded chat template, not a hardcoded one)
llama-cli -m Laguna-XS-2.1-REAP50-Q4_K_M.gguf -c 8192 --jinja -cnv
# Single prompt
llama-cli -m Laguna-XS-2.1-REAP50-Q4_K_M.gguf -c 8192 -p "Your prompt here"
# Server mode
llama-server -m Laguna-XS-2.1-REAP50-Q4_K_M.gguf -c 8192 --port 8080 --jinja
Python (llama-cpp-python)
from llama_cpp import Llama
llm = Llama(model_path="./Laguna-XS-2.1-REAP50-Q4_K_M.gguf", n_ctx=8192)
output = llm.create_chat_completion(
messages=[
{"role": "user", "content": "Hello, how are you?"}
]
)
print(output["choices"][0]["message"]["content"])
Caveats
- The base model's license (other) applies to all derivative files
- Expert pruning removes a fraction of experts per MoE layer; some task-specific knowledge may be lost
- The pruned model has a different number of experts from the original β tooling that hardcodes expert count may need adjustment
- Quantization reduces precision -- verify outputs for your specific use case
- The hybrid quantization assigns different precision to different tensor groups, which means quality characteristics may differ from uniform quantizations
Limitations
- Pruned experts cannot be recovered; any capabilities concentrated in removed experts are lost
- Quantized models may exhibit subtle differences from the full-precision fine-tune
- This model inherits any limitations and biases present in the base model
Generated with REAP + MagicQuant
- Downloads last month
- 112
4-bit
Model tree for lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF
Base model
poolside/Laguna-XS-2.1
Install (macOS, Linux)
# Start a local OpenAI-compatible server with a web UI: llama serve -hf lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M# Run inference directly in the terminal: llama cli -hf lmcoleman/Laguna-XS-2.1-REAP50-MagicQuant-GGUF:Q4_K_M