How to use from
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 ContextReq/Pebble-10M-GGUF:
# Run inference directly in the terminal:
llama cli -hf ContextReq/Pebble-10M-GGUF:
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf ContextReq/Pebble-10M-GGUF:
# Run inference directly in the terminal:
llama cli -hf ContextReq/Pebble-10M-GGUF:
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 ContextReq/Pebble-10M-GGUF:
# Run inference directly in the terminal:
./llama-cli -hf ContextReq/Pebble-10M-GGUF:
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 ContextReq/Pebble-10M-GGUF:
# Run inference directly in the terminal:
./build/bin/llama-cli -hf ContextReq/Pebble-10M-GGUF:
Use Docker
docker model run hf.co/ContextReq/Pebble-10M-GGUF:
Quick Links

Pebble-10M-GGUF

GGUF conversions of basically-ai/Pebble-10M (Apache 2.0).

IMPORTANT: patched llama.cpp required

Pebble uses a custom hybrid Mamba2 + attention architecture. These GGUFs carry general.architecture = "pebble", which upstream llama.cpp refuses to load.

Everything needed to run them lives in the support repo:

rootendpoint/basicallyai_llama.cpp_support

  • llama.cpp-pebble.patch - adds the pebble architecture to llama.cpp (applies cleanly against upstream commit 0eadefe)
  • basicallyai_to_gguf.py - standalone converter (numpy + safetensors only)
  • numpy_reference.py - independent reference implementation used to verify correctness

Apply the patch, rebuild llama.cpp, then:

llama-cli -m pebble-10m-f16.gguf -p "The capital of France" -n 64

Files

Quant Size Type
f16 20.7 MB F16
q8_0 11.1 MB mostly Q8_0
q4_k_m 7.5 MB mostly Q4_K_M

Verification

Outputs were cross-checked token-by-token against an independent pure-numpy reference implementation over multiple prompts (CPU and CUDA backends, and quantized KV cache). Identical greedy sequences up to genuine argmax ties.

Model

  • 10M parameters, hidden 384, 8 layers (6 Mamba2 + 2 attention), ctx 512, vocab 2048
  • A research-scale model: expect toy-level output quality.
Downloads last month
-
GGUF
Model size
10.3M params
Architecture
pebble
Hardware compatibility
Log In to add your hardware

4-bit

8-bit

16-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for ContextReq/Pebble-10M-GGUF

Quantized
(1)
this model

Collection including ContextReq/Pebble-10M-GGUF