Self-REAP

Models we REAP-pruned ourselves (the Self-REAP tag). None yet — REAPing a model is RAM-bound on the DGX Spark (see the feasibility note below), so so far we take Cerebras’s already-pruned checkpoints and only quantize them. This page is the recipe for when we do prune one. ← all tag kinds

What REAP does

REAP = Router-weighted Expert Activation Pruning (Cerebras — arXiv:2510.13999, ICLR 2026; github.com/CerebrasResearch/reap; blog).

How to REAP a model

Standalone tooling (it is not in llm-compressor or ModelOpt):

git clone https://github.com/CerebrasResearch/reap && cd reap
# pinned: torch 2.7.1 / transformers 4.55 / vllm 0.10 (vLLM only used for eval)
pip install -e .

# Single-GPU, block-wise observer: model on CPU, one decoder block to GPU at a
# time, replaying cached hidden states. Defaults: 1024 samples x 2048 tokens.
bash experiments/pruning-layerwise-cli.sh

Calibration data is mandatory and must be in-domain. Generic C4 calibration collapses coding accuracy to ~0%; Cerebras calibrates on evol-codealpaca / Mixture-of-Thoughts / xlam-function-calling / SWE-smith. Match the calibration set to the model’s intended use.

Feasibility on the DGX Spark (GB10, 128 GB unified) — the blocker is RAM, not tooling

The layer-wise observer does CPU↔GPU offload but no disk streaming — the full model must fit in CPU RAM, which on the GB10 is the same 128 GB unified pool. So:

Quality: a 25% prune is ≈ near-lossless; 50% keeps generative/coding strong (~1–2 pt drops) but knowledge/multiple-choice degrades sharply (the collapse signal). For big models, take Cerebras’s already-pruned checkpoints and just quantize them — which is why everything under REAP here is Self-Quantized, not Self-REAP.

Models

Self-REAP (0)

None yet — see the recipe above.