Instructions to use greghavens/fabletron-nemotron-3-super-120b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use greghavens/fabletron-nemotron-3-super-120b-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="greghavens/fabletron-nemotron-3-super-120b-GGUF", filename="Nemotron-3-Super-120B-fable5-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 greghavens/fabletron-nemotron-3-super-120b-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 greghavens/fabletron-nemotron-3-super-120b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf greghavens/fabletron-nemotron-3-super-120b-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 greghavens/fabletron-nemotron-3-super-120b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf greghavens/fabletron-nemotron-3-super-120b-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 greghavens/fabletron-nemotron-3-super-120b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf greghavens/fabletron-nemotron-3-super-120b-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 greghavens/fabletron-nemotron-3-super-120b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf greghavens/fabletron-nemotron-3-super-120b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/greghavens/fabletron-nemotron-3-super-120b-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use greghavens/fabletron-nemotron-3-super-120b-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "greghavens/fabletron-nemotron-3-super-120b-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": "greghavens/fabletron-nemotron-3-super-120b-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/greghavens/fabletron-nemotron-3-super-120b-GGUF:Q4_K_M
- Ollama
How to use greghavens/fabletron-nemotron-3-super-120b-GGUF with Ollama:
ollama run hf.co/greghavens/fabletron-nemotron-3-super-120b-GGUF:Q4_K_M
- Unsloth Studio
How to use greghavens/fabletron-nemotron-3-super-120b-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 greghavens/fabletron-nemotron-3-super-120b-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 greghavens/fabletron-nemotron-3-super-120b-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for greghavens/fabletron-nemotron-3-super-120b-GGUF to start chatting
- Pi
How to use greghavens/fabletron-nemotron-3-super-120b-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf greghavens/fabletron-nemotron-3-super-120b-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": "greghavens/fabletron-nemotron-3-super-120b-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use greghavens/fabletron-nemotron-3-super-120b-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 greghavens/fabletron-nemotron-3-super-120b-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 greghavens/fabletron-nemotron-3-super-120b-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use greghavens/fabletron-nemotron-3-super-120b-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf greghavens/fabletron-nemotron-3-super-120b-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 "greghavens/fabletron-nemotron-3-super-120b-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 greghavens/fabletron-nemotron-3-super-120b-GGUF with Docker Model Runner:
docker model run hf.co/greghavens/fabletron-nemotron-3-super-120b-GGUF:Q4_K_M
- Lemonade
How to use greghavens/fabletron-nemotron-3-super-120b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull greghavens/fabletron-nemotron-3-super-120b-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.fabletron-nemotron-3-super-120b-GGUF-Q4_K_M
List all available models
lemonade list
llm.create_chat_completion(
messages = [
{
"role": "user",
"content": "What is the capital of France?"
}
]
)Fabletron — Nemotron-3-Super-120B-A12B · Fable-5 (GGUF)
QLoRA fine-tune of NVIDIA Nemotron-3-Super-120B-A12B (120B-total / 12B-active hybrid
Mamba-2 + Latent-MoE, nemotron_h) on the pi_agent split of
Glint-Research/Fable-5-traces,
targeting reasoning, agentic planning, and tool-use. This repo holds the GGUF export for
LM Studio / llama.cpp.
Files
| File | Quant | Size |
|---|---|---|
Nemotron-3-Super-120B-fable5-Q4_K_M.gguf |
Q4_K_M | ≈80.1 GiB (86.05 GB) |
Requires a llama.cpp build with
nemotron_h_moesupport (PR #18058 or later). Recent LM Studio runtimes include it. Uses the ChatML template baked into the GGUF.
Training
- Method: QLoRA (4-bit NF4 base) via Unsloth. LoRA r=8, α=16, dropout=0, bias=none.
Targets (by regex) attention
q/k/v/o_proj, Mamba-2in_proj/out_proj, and theup/down_projof all 512 routed experts + the shared expert — this MoE is non-gated, soup/down_projis the full expert FFN (there is nogate_proj). The MoE router (mixer.gate, annn.Parameter) and the MoE-latentfc1/fc2_latent_projstay frozen. - Data:
Glint-Research/Fable-5-traces, configpi_agent, ChatML, response-only loss. - Schedule: 1 epoch (248 steps), grad-accum 16, lr 2e-5 cosine + warmup.
- Final training loss: ≈0.74 true per-token CE (final-phase mean; Unsloth logs loss × grad-accum, so the raw logged value is ÷16 here).
- Evaluation (held-out Fable-5
pi_agent, 81 rows, base → fine-tuned): cross-entropy 1.12 → 0.78, perplexity 3.07 → 2.18. - Date: 2026-06-29.
- LoRA adapter (pre-merge) + other formats:
greghavens/fabletron-nemotron-3-super-120b.
Provenance & license
This is a derivative of two upstream works, and downstream use must comply with both:
- Base model: NVIDIA Nemotron-3-Super-120B-A12B — see NVIDIA's model license.
- Dataset:
Glint-Research/Fable-5-traces— AGPL-3.0, and distilled from Anthropic Claude outputs (subject to Anthropic's usage terms).
Released as a research artifact. Review the upstream licenses before redistribution or
production use. license: other reflects the combination of the above, not a single license.
Intended use
Research on hybrid Mamba-2/MoE reasoning models, agentic/tool-use experimentation. Not safety-aligned beyond the base model; evaluate before any production deployment.
Benchmarks
Fabletron is a Fable-5 fine-tune of Nemotron-3-Super-120B-A12B. This repository hosts the GGUF (Q4_K_M — for llama.cpp / LM Studio / Ollama) build. The results below were produced through a deployed NeMo Evaluator at full context length (262 144) with a 32 768-token generation budget, comparing base Nemotron-3-Super against the Fabletron fine-tune in its two served formats — GGUF (llama.cpp) and NVFP4 (vLLM / Blackwell).
Accuracy
| Benchmark | Base Nemotron 3 Super | Fabletron (GGUF) | Fabletron (NVFP4) |
|---|---|---|---|
| IFEval | 89.6 | 90.4 | 87.4 |
| GSM8K | 96.6 | 96.5 | 96.5 |
| MMLU-Pro | 81.1 | 81.5 | 81.2 |
| HumanEval+ | 87.8 | 89.6 | 89.6 |
| MBPP+ | 95.5 | 96.6 | 96.8 |
| BFCL (v3 · multi_turn + ast) | 31.7 | 53.6 | 53.9 |
Scores are % (higher is better). The standout is function-calling (BFCL): 31.7 → 53.6 — base Nemotron largely fails multi-turn and parallel tool use, which the fine-tune resolves (single-tool calls 0.8 → 85.7, multi-turn 0 → 45). General reasoning and coding hold or improve slightly, and NVFP4 tracks the GGUF fine-tune within noise — the only give-back to quantization is IFEval strict (≈2 points).
Throughput
Mean per-request decode rate across the 6 benchmark families (tok/s, client-side, parallelism 4): base 45.7 · Fabletron GGUF 46.3 · Fabletron NVFP4 63.8. The NVFP4 build serves at ≈1.4× the GGUF (llama.cpp) rate on an RTX PRO 6000 (Blackwell).
BFCL = Berkeley Function-Calling Leaderboard v3 (multi_turn,ast, native tool-calling, via nvidia_bfcl 26.3). Base and GGUF share the llama.cpp engine; NVFP4 runs on vLLM. Output truncation at this budget is ≈0 across families (MMLU-Pro shows ≈3.5% length-capped generations, intrinsic to the benchmark and near-identical for all three models, so it does not bias the comparison).
- Downloads last month
- 712
4-bit


# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="greghavens/fabletron-nemotron-3-super-120b-GGUF", filename="Nemotron-3-Super-120B-fable5-Q4_K_M.gguf", )