Instructions to use jenerallee78/Ministral-3-14B-abliterated-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 jenerallee78/Ministral-3-14B-abliterated-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 jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0 # Run inference directly in the terminal: llama cli -hf jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0 # Run inference directly in the terminal: llama cli -hf jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0
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 jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0
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 jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0
Use Docker
docker model run hf.co/jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0
- LM Studio
- Jan
- vLLM
How to use jenerallee78/Ministral-3-14B-abliterated-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "jenerallee78/Ministral-3-14B-abliterated-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": "jenerallee78/Ministral-3-14B-abliterated-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0
- Ollama
How to use jenerallee78/Ministral-3-14B-abliterated-GGUF with Ollama:
ollama run hf.co/jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0
- Unsloth Studio
How to use jenerallee78/Ministral-3-14B-abliterated-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 jenerallee78/Ministral-3-14B-abliterated-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 jenerallee78/Ministral-3-14B-abliterated-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for jenerallee78/Ministral-3-14B-abliterated-GGUF to start chatting
- Pi
How to use jenerallee78/Ministral-3-14B-abliterated-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0
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": "jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use jenerallee78/Ministral-3-14B-abliterated-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 jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0
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 jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use jenerallee78/Ministral-3-14B-abliterated-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0
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 "jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0" \ --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 jenerallee78/Ministral-3-14B-abliterated-GGUF with Docker Model Runner:
docker model run hf.co/jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0
- Lemonade
How to use jenerallee78/Ministral-3-14B-abliterated-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull jenerallee78/Ministral-3-14B-abliterated-GGUF:Q8_0
Run and chat with the model
lemonade run user.Ministral-3-14B-abliterated-GGUF-Q8_0
List all available models
lemonade list
Ministral-3-14B-abliterated-GGUF
GGUF quantized versions of Ministral-3-14B-abliterated for use with llama.cpp and compatible tools.
Multimodal - Supports both text and vision (image) inputs.
Available Files
| Filename | Type | Size | Description |
|---|---|---|---|
| Ministral-3-14B-abliterated-f16.gguf | F16 | ~26GB | Full precision, highest quality |
| Ministral-3-14B-abliterated-Q8_0.gguf | Q8_0 | ~14GB | 8-bit quantization, excellent quality |
| mmproj-F16.gguf | Vision | ~838MB | Vision encoder projector (required for image input) |
What is Abliteration?
Abliteration is a technique that removes refusal behavior from language models by identifying and modifying the internal representations responsible for refusals.
This model was abliterated using llm-abliteration by grimjim, which implements norm-preserving biprojected abliteration.
Further Reading
- Norm-Preserving Biprojected Abliteration - Technical deep-dive on the abliteration method
- AGI Dreams - Abliterated Models: Norm-Preserving Guardrail Removal - Overview of the abliteration technique and community discussion
Performance
Tested on NVIDIA RTX PRO 6000 Blackwell (98GB VRAM):
| Quantization | VRAM Usage | Prompt Processing | Generation Speed |
|---|---|---|---|
| F16 | ~67GB | ~500-565 tok/s | ~20-22 tok/s |
| Q8_0 | ~16GB* | TBD | TBD |
*Estimated based on file size ratio
Usage with llama.cpp
# Download model
huggingface-cli download jenerallee78/Ministral-3-14B-abliterated-GGUF \
Ministral-3-14B-abliterated-Q8_0.gguf \
--local-dir ./models
# Run with llama.cpp
./llama-cli -m ./models/Ministral-3-14B-abliterated-Q8_0.gguf \
-p "Hello, how are you?" \
-n 256
Run as OpenAI-Compatible Server (with Vision)
This model supports up to 256K context and multimodal (vision) input. Run as an API server with llama-server:
# Download all files
huggingface-cli download jenerallee78/Ministral-3-14B-abliterated-GGUF \
--local-dir ./models
# Start OpenAI-compatible server with vision support
llama-server \
-m ./models/Ministral-3-14B-abliterated-f16.gguf \
--mmproj ./models/mmproj-F16.gguf \
-a Ministral-3-14B-abliterated \
--host 0.0.0.0 \
--port 8080 \
-c 262144 \
--jinja \
-ngl 99
# Server runs at http://localhost:8080
# Compatible with OpenAI API clients (including vision endpoints)
Vision API Example
import base64
import httpx
# Load and encode image
with open("image.jpg", "rb") as f:
image_data = base64.standard_b64encode(f.read()).decode("utf-8")
response = httpx.post(
"http://localhost:8080/v1/chat/completions",
json={
"model": "Ministral-3-14B-abliterated",
"messages": [
{
"role": "user",
"content": [
{"type": "text", "text": "What's in this image?"},
{"type": "image_url", "image_url": {"url": f"data:image/jpeg;base64,{image_data}"}}
]
}
],
"max_tokens": 512
}
)
print(response.json()["choices"][0]["message"]["content"])
Usage with Ollama
# Create Modelfile
cat > Modelfile << 'EOF'
FROM ./Ministral-3-14B-abliterated-Q8_0.gguf
TEMPLATE """{{- if .System }}{{ .System }}{{ end }}
{{- range .Messages }}
{{- if eq .Role "user" }}[INST] {{ .Content }} [/INST]
{{- else if eq .Role "assistant" }}{{ .Content }}
{{- end }}
{{- end }}"""
PARAMETER stop "[INST]"
PARAMETER stop "[/INST]"
EOF
# Create and run
ollama create ministral-abliterated -f Modelfile
ollama run ministral-abliterated
Original Model
For the full-precision SafeTensors version, see: jenerallee78/Ministral-3-14B-abliterated
Disclaimer
This model is provided for research and educational purposes. Users are responsible for ensuring their use complies with applicable laws and ethical guidelines.
- Downloads last month
- 328
8-bit
16-bit
Model tree for jenerallee78/Ministral-3-14B-abliterated-GGUF
Base model
mistralai/Ministral-3-14B-Base-2512