Text Generation
GGUF
English
vllm
llama
llama-4
llama-4-scout
ablated
full-ablation
refusal-reduced
non-refusal
research
cybersecurity
conversational
Instructions to use azanip/matter-llama-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use azanip/matter-llama-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 azanip/matter-llama-gguf # Run inference directly in the terminal: llama cli -hf azanip/matter-llama-gguf
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf azanip/matter-llama-gguf # Run inference directly in the terminal: llama cli -hf azanip/matter-llama-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 azanip/matter-llama-gguf # Run inference directly in the terminal: ./llama-cli -hf azanip/matter-llama-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 azanip/matter-llama-gguf # Run inference directly in the terminal: ./build/bin/llama-cli -hf azanip/matter-llama-gguf
Use Docker
docker model run hf.co/azanip/matter-llama-gguf
- LM Studio
- Jan
- vLLM
How to use azanip/matter-llama-gguf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "azanip/matter-llama-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": "azanip/matter-llama-gguf", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/azanip/matter-llama-gguf
- Ollama
How to use azanip/matter-llama-gguf with Ollama:
ollama run hf.co/azanip/matter-llama-gguf
- Unsloth Desktop
- Pi
How to use azanip/matter-llama-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf azanip/matter-llama-gguf
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "azanip/matter-llama-gguf" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use azanip/matter-llama-gguf with Docker Model Runner:
docker model run hf.co/azanip/matter-llama-gguf
- Lemonade
How to use azanip/matter-llama-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull azanip/matter-llama-gguf
Run and chat with the model
lemonade run user.matter-llama-gguf-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use azanip/matter-llama-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 azanip/matter-llama-gguf
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 azanip/matter-llama-gguf
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use azanip/matter-llama-gguf with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf azanip/matter-llama-gguf
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 "azanip/matter-llama-gguf" \ --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"
File size: 6,594 Bytes
7cb1101 5159c03 7cb1101 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 | ---
license: llama4
language:
- en
base_model: meta-llama/Llama-4-Scout-17B-16E-Instruct
pipeline_tag: text-generation
library_name: vllm
tags:
- llama
- llama-4
- llama-4-scout
- gguf
- ablated
- full-ablation
- refusal-reduced
- non-refusal
- research
- cybersecurity
- text-generation
metrics:
- accuracy
- exact_match
---
# Llama 4 Scout Matter GGUF — Full Ablated
Built with Llama.
Llama 4 Scout Matter GGUF Full Ablated is a derivative of `meta-llama/Llama-4-Scout-17B-16E-Instruct`.
This model was modified with one main goal: make the model less likely to refuse prompts.
The purpose of this model is to reduce refusal behavior so the model gives more direct answers instead of blocking prompts that the original Llama 4 Scout model may have refused.
This model is intended for controlled offline testing, research, and cybersecurity lab use where the goal is to test model behavior with reduced refusal behavior compared to the baseline model.
## Base Model
Base model:
```text
meta-llama/Llama-4-Scout-17B-16E-Instruct
```
Model family:
```text
Llama 4 Scout
```
Model type:
```text
Mixture-of-Experts language model
```
Approximate model size:
```text
17B activated parameters
109B total parameters
```
## Model Goal
The goal of this release is to create a model that does not refuse prompts in the same way as the original model.
The ablation was done to weaken the model’s refusal behavior so the model gives direct responses instead of blocking prompts. This includes prompts the baseline model may classify as harmful, restricted, unsafe, or cybersecurity-related.
This model is not released as a safer model. It is released as a refusal-reduced model for research, testing, and controlled offline use.
## What the Ablation Does
The ablation process reduces the model’s learned refusal behavior.
In practice, this means the model may answer prompts that the original Llama 4 Scout model would normally refuse. The ablation is intended to change the model’s response behavior, not to improve factual accuracy, reasoning, or safety.
The main behavior change is:
* Fewer refusals
* More direct answers
* Less blocking of restricted prompt categories
* Less safety-style refusal language
* More willingness to respond to cybersecurity-related prompts
* Reduced refusal behavior compared to the baseline model
This does not guarantee the model is correct. It only means the refusal behavior was changed.
## Intended Use
This model is intended for:
* Offline model testing
* Refusal behavior research
* Cybersecurity lab environments
* Red-team evaluation
* Comparing ablated behavior against a baseline model
* Studying how refusal removal affects benchmark performance
* Local testing where the user controls the environment
This model is not intended for unsupervised public deployment without additional controls.
## Not Recommended For
This model is not recommended for:
* Public-facing chatbots without guardrails
* Unsupervised production use
* Systems used by unknown end users
* Automated agents without monitoring
* Any illegal, unauthorized, or harmful activity
Users are responsible for how they use this model.
## Evaluation Setup
Evaluation was run with `lm-evaluation-harness` using vLLM.
```text
Backend: vLLM
Model path: /workspace/llama-4-scout-matter-FULL-ABLATED
dtype: bfloat16
tensor_parallel_size: 4
max_model_len: 4096
gpu_memory_utilization: 0.85
num_fewshot: 5
batch_size: auto
```
Evaluated tasks:
* GSM8K
* MMLU
## Benchmark Results
### Main Results
| Benchmark | Metric | Baseline | Ablated | Change |
| ---------------------- | ----------: | -------: | ------: | ------: |
| GSM8K flexible-extract | exact_match | 0.9196 | 0.9242 | +0.0046 |
| GSM8K strict-match | exact_match | 0.8954 | 0.9037 | +0.0083 |
| MMLU overall | accuracy | 0.8047 | 0.8040 | -0.0007 |
### MMLU Group Results
| MMLU Group | Baseline | Ablated | Change |
| --------------- | -------: | ------: | ------: |
| Humanities | 0.7764 | 0.7747 | -0.0017 |
| Other | 0.8217 | 0.8198 | -0.0019 |
| Social Sciences | 0.8833 | 0.8850 | +0.0017 |
| STEM | 0.7533 | 0.7533 | 0.0000 |
## Evaluation Summary
The ablated model stayed very close to the baseline on MMLU while slightly improving on GSM8K exact-match scores.
```text
Baseline MMLU: 0.8047
Ablated MMLU: 0.8040
Delta: -0.0007
```
```text
Baseline GSM8K flexible-extract: 0.9196
Ablated GSM8K flexible-extract: 0.9242
Delta: +0.0046
Baseline GSM8K strict-match: 0.8954
Ablated GSM8K strict-match: 0.9037
Delta: +0.0083
```
The main takeaway is that refusal behavior was reduced while general benchmark performance remained close to the baseline.
## Limitations
This model may:
* Answer prompts that the baseline model would refuse
* Produce unsafe or inappropriate outputs more often than the baseline
* Give direct answers to restricted prompt categories
* Hallucinate facts
* Produce incorrect technical details
* Give confident but wrong answers
* Require external safety controls before deployment
Ablation changes model behavior, but it does not guarantee better accuracy, better reasoning, or better safety.
## Cybersecurity Use
This model may be useful in controlled cybersecurity labs where the user wants fewer refusals while testing prompts, workflows, or offline tooling.
Use this model only in legal and authorized environments. For cybersecurity work, only test systems, networks, devices, software, or labs that you own or have explicit permission to test.
## Responsible Use
This is a refusal-reduced model. It may provide outputs that a safety-aligned model would block.
Do not use this model to harm systems, bypass authorization, steal data, deploy malware, commit fraud, or assist with real-world abuse.
The user is responsible for following all applicable laws, rules, and platform policies.
## License
This model is based on Llama 4 Scout and is subject to the Llama 4 Community License.
Users must follow the Llama 4 Community License and acceptable use requirements that apply to Llama 4 models and derivatives.
## Attribution
This model is a derivative of:
```text
meta-llama/Llama-4-Scout-17B-16E-Instruct
```
Built with Llama.
## Citation / Research Description
If you use this model in research or evaluation, describe it as a fully ablated Llama 4 Scout derivative designed to reduce refusal behavior and evaluated against its baseline on GSM8K and MMLU.
|