CoolFace
Modelpublic

stamsam/Instella-Prometheus-GGUF

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes105downloads
Model Card

Instella-Prometheus GGUF ๐Ÿ”ฅ

[image]

The code-fire, packed for local inference.

This is the dedicated GGUF release of Instella-Prometheus, a merged, standalone coding model built from AMD's Instella-MoE-16B-A3B-SFT. Prometheus is a 16B-total / ~2.8B-active MoE model, distilled for direct, code-first answers under a bare user prompt:

  • โ€”No system prompt required
  • โ€”No thinking-tag suppression or decoder bans
  • โ€”No LoRA adapter or PEFT dependency
  • โ€”Designed for llama.cpp and compatible GGUF runtimes

Choose your quantization

QuantizationFileApprox. sizeUse when
Q8_0Instella-Prometheus-Q8_0.gguf16.9 GBYou want near-full-weight quality
Q4_K_MInstella-Prometheus-Q4_K_M.gguf9.4 GBYou want the best quality/size balance
Q3_K_MInstella-Prometheus-Q3_K_M.gguf8.2 GBYou need the lowest memory footprint of these three

All files are in the repository root so the Hugging Face Hub can identify and display them as GGUF quantized variants.

llama.cpp

bash
# Example: Q4_K_M
./llama-cli \
  -m Instella-Prometheus-Q4_K_M.gguf \
  -p "Write a Python function to merge overlapping intervals." \
  -n 1024

For chat frontends, use the model's built-in GGUF metadata and chat template when supported by the runtime. The intended contract is simply: user task in, clean answer out.

What changed from base?

On a 12-task bare-user Python suite:

MetricBase Instella**Instella-Prometheus**
Code blocks2 / 1212 / 12
Syntax valid2 / 1212 / 12
Functional passes2 / 1210 / 12
Think-tag leakage12 / 120 / 12
Natural EOS2 / 1212 / 12

The full Transformers release, training details, dataset provenance, and evaluation notes are available in the canonical model repository.

License

Apache-2.0. See the canonical repository for base-model and dataset acknowledgements.

The fire belongs to them. The torch is yours.