Instructions to use EchoLabs33/Zamba2-1.2B-Instruct-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use EchoLabs33/Zamba2-1.2B-Instruct-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="EchoLabs33/Zamba2-1.2B-Instruct-GGUF", filename="zamba2-1.2b-instruct-q4_0.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use EchoLabs33/Zamba2-1.2B-Instruct-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf EchoLabs33/Zamba2-1.2B-Instruct-GGUF:Q4_0 # Run inference directly in the terminal: llama-cli -hf EchoLabs33/Zamba2-1.2B-Instruct-GGUF:Q4_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf EchoLabs33/Zamba2-1.2B-Instruct-GGUF:Q4_0 # Run inference directly in the terminal: llama-cli -hf EchoLabs33/Zamba2-1.2B-Instruct-GGUF:Q4_0
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 EchoLabs33/Zamba2-1.2B-Instruct-GGUF:Q4_0 # Run inference directly in the terminal: ./llama-cli -hf EchoLabs33/Zamba2-1.2B-Instruct-GGUF:Q4_0
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 EchoLabs33/Zamba2-1.2B-Instruct-GGUF:Q4_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf EchoLabs33/Zamba2-1.2B-Instruct-GGUF:Q4_0
Use Docker
docker model run hf.co/EchoLabs33/Zamba2-1.2B-Instruct-GGUF:Q4_0
- LM Studio
- Jan
- vLLM
How to use EchoLabs33/Zamba2-1.2B-Instruct-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "EchoLabs33/Zamba2-1.2B-Instruct-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "EchoLabs33/Zamba2-1.2B-Instruct-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/EchoLabs33/Zamba2-1.2B-Instruct-GGUF:Q4_0
- Ollama
How to use EchoLabs33/Zamba2-1.2B-Instruct-GGUF with Ollama:
ollama run hf.co/EchoLabs33/Zamba2-1.2B-Instruct-GGUF:Q4_0
- Unsloth Studio new
How to use EchoLabs33/Zamba2-1.2B-Instruct-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 EchoLabs33/Zamba2-1.2B-Instruct-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 EchoLabs33/Zamba2-1.2B-Instruct-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for EchoLabs33/Zamba2-1.2B-Instruct-GGUF to start chatting
- Docker Model Runner
How to use EchoLabs33/Zamba2-1.2B-Instruct-GGUF with Docker Model Runner:
docker model run hf.co/EchoLabs33/Zamba2-1.2B-Instruct-GGUF:Q4_0
- Lemonade
How to use EchoLabs33/Zamba2-1.2B-Instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull EchoLabs33/Zamba2-1.2B-Instruct-GGUF:Q4_0
Run and chat with the model
lemonade run user.Zamba2-1.2B-Instruct-GGUF-Q4_0
List all available models
lemonade list
Zamba2 1.2B Instruct v2 - GGUF
GGUF conversions of Zyphra/Zamba2-1.2B-instruct-v2 for use with llama.cpp.
Architecture
Zamba2 is a hybrid Mamba-2 + shared Transformer architecture by Zyphra.
- 1.2B parameters, 38 layers (6 hybrid attention blocks, 1 shared transformer)
- Hidden size: 2048, attention hidden: 4096
- SSM: d_state=128, d_conv=4, ngroups=1
- Requires llama.cpp with Zamba2 support (PR #21412)
Available Quantizations
| Quant | Size | BPW | PPL (WikiText-2) | Prompt tok/s | Gen tok/s | Hardware |
|---|---|---|---|---|---|---|
| Q4_0 | 984 MB | 4.59 | 18.68 | 2,677 | 308.6 | RTX 4090 |
| Q8_0 | 1.8 GB | 8.51 | (pending) | 2,375 | 200.6 | RTX 4090 |
KV Cache Quantization (Q4_0 weights)
The 1.2B model has head_dim=128 (multiple of 64), so KV cache quantization is fully supported:
| KV Type | PPL (WikiText-2) | Notes |
|---|---|---|
| F16 (default) | 18.68 | Baseline |
| Q8_0 | 18.68 | No quality loss |
| Q4_0 | 18.75 | +0.04% vs F16 |
Use -ctk q8_0 -ctv q8_0 or -ctk q4_0 -ctv q4_0 to enable KV cache quantization, which reduces memory usage for long contexts.
PPL measured on WikiText-2 test split, n_ctx=512, full 654-chunk eval.
Sample Output (Q4_0)
Q: What is the capital of France and why is it significant?
A: The capital of France is Paris. It is considered one of the most significant cities in the world due to its historical, cultural, and cultural significance. Paris has been the capital of France since the third century and has been a major center of art, science, and philosophy since the Middle Ages. It is home to iconic landmarks such as the Eiffel Tower, the Louvre Museum, and Notre-Dame Cathedral, making it a major global tourist destination.
Usage
# Build llama.cpp with Zamba2 support
git clone https://github.com/echo313unfolding/llama.cpp -b zamba2-support
cd llama.cpp && cmake -B build -DGGML_CUDA=ON && cmake --build build -j
# Run
./build/bin/llama-cli -m zamba2-1.2b-instruct-v2-q4_0.gguf \
-p "<|im_start|>user\nWhat is quantum computing?<|im_end|>\n<|im_start|>assistant\n" \
-n 256 -ngl 999 -e --no-conversation
Conversion Details
Converted from HF safetensors using a custom Zamba2-to-GGUF converter:
- Mamba-2 SSM layers: A_log to A conversion, conv1d squeeze, dt projection
- Shared transformer blocks with per-layer LoRA unfolding (W_eff = W_shared + B @ A)
- Per-layer
n_head_kvarray (0 for Mamba layers, 32 for attention layers) - BPE tokenizer (v2 format)
- F32 master, quantized with
llama-quantize
Credits
- Downloads last month
- 17
4-bit