This is an obliterated Q4_K_M GGUF-quantized version of
mistralai/Mistral-Small-4-119B-2603, with refusal behavior removed using
OBLITERATUS.
Obliteration removes refusal behavior from language models using
OBLITERATUS, an advanced multi-stage pipeline that uses Singular Value Decomposition to identify and surgically remove internal representations responsible for content refusal. OBLITERATUS features MoE-aware surgery with expert-granular decomposition, iterative refinement, and norm-preserving interventions — making it particularly well-suited for mixture-of-experts architectures like Mistral Small 4.
1# Download model
2huggingface-cli download jenerallee78/Mistral-Small-4-119B-2603-obliterated-Q4_K_M-GGUF \
3 Mistral-Small-4-119B-2603-Obliterated-Q4_K_M.gguf \
4 --local-dir ./models
5
6# Run with llama.cpp
7llama-cli -m ./models/Mistral-Small-4-119B-2603-Obliterated-Q4_K_M.gguf \
8 -p "Hello, how are you?" \
9 -n 256 -ngl 99
1# Use the included run.sh script:
2./run.sh
3
4# Or with custom settings:
5UBATCH=2048 CONTEXT=131072 PORT=8080 ./run.sh
6
7# Or manually:
8llama-server \
9 -m ./models/Mistral-Small-4-119B-2603-Obliterated-Q4_K_M.gguf \
10 -a Mistral-Small-4-119B-obliterated \
11 --host 0.0.0.0 \
12 --port 8080 \
13 -ngl 99 \
14 -c 262144 \
15 -b 8192 \
16 -ub 512 \
17 -fa off \
18 -t 4 \
19 --jinja \
20 --metrics
Token generation is memory-bandwidth-bound at ~183 tok/s regardless of batch/thread settings. The RTX PRO 6000's 1,792 GB/s bandwidth with 6.5B active MoE params per token yields ~33% bandwidth utilization.
Full 256K context allocates fine at ub512. TG speed drops slightly at deep context (~171 tok/s at 256K depth vs ~183 at shallow).