Null-Guard/Qwen3-0.6B-Uncensored-GGUF overview
Qwen3 0.6B Uncensored — GGUF GGUF quantizations of Null Guard/Qwen3 0.6B Uncensored https://huggingface.co/Null Guard/Qwen3 0.6B Uncensored , an abliterated re…
Runs locally from ~308.1 MB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).
Repository Files & Downloads
| File | Type | Quantization | Size | Link |
|---|---|---|---|---|
| model-IQ3_M.gguf | GGUF | IQ3_M | 320.5 MB | Download |
| model-IQ3_S.gguf | GGUF | IQ3_S | 308.1 MB | Download |
| model-IQ4_NL.gguf | GGUF | IQ4_NL | 365.0 MB | Download |
| model-IQ4_XS.gguf | GGUF | IQ4_XS | 352.2 MB | Download |
| model-Q3_K_L.gguf | GGUF | Q3_K_L | 351.4 MB | Download |
| model-Q3_K_M.gguf | GGUF | Q3_K_M | 331.0 MB | Download |
| model-Q3_K_S.gguf | GGUF | Q3_K_S | 308.1 MB | Download |
| model-Q4_0.gguf | GGUF | Q4_0 | 363.9 MB | Download |
| model-Q4_1.gguf | GGUF | Q4_1 | 390.1 MB | Download |
| model-Q4_K_M.gguf | GGUF | Q4_K_M | 378.3 MB | Download |
| model-Q4_K_S.gguf | GGUF | Q4_K_S | 365.5 MB | Download |
| model-Q5_0.gguf | GGUF | Q5_0 | 416.4 MB | Download |
| model-Q5_1.gguf | GGUF | Q5_1 | 442.6 MB | Download |
| model-Q5_K_M.gguf | GGUF | Q5_K_M | 423.8 MB | Download |
| model-Q5_K_S.gguf | GGUF | Q5_K_S | 416.4 MB | Download |
| model-Q6_K.gguf | GGUF | Q6_K | 472.2 MB | Download |
| model-Q8_0.gguf | GGUF | Q8_0 | 609.8 MB | Download |
| model-f16.gguf | GGUF | F16 | 1.12 GB | Download |
Model Details
| Model ID | Null-Guard/Qwen3-0.6B-Uncensored-GGUF |
|---|---|
| Author | Null-Guard |
| Pipeline | text-generation |
| License | apache-2.0 |
| Base model | Null-Guard/Qwen3-0.6B-Uncensored |
| Last modified | 2026-08-31T07:05:35.000Z |
Model README
---
license: apache-2.0
base_model: Null-Guard/Qwen3-0.6B-Uncensored
tags:
- qwen3
- uncensored
- abliterated
- abliteration
- gguf
- llama.cpp
- conversational
language:
- en
- zh
library_name: gguf
pipeline_tag: text-generation
---
Qwen3-0.6B-Uncensored — GGUF
GGUF quantizations of Null-Guard/Qwen3-0.6B-Uncensored, an abliterated (refusal-suppressed) version of Qwen/Qwen3-0.6B, for use with llama.cpp, Ollama, LM Studio, koboldcpp, and other GGUF-compatible runtimes.
> ⚠️ This model has had its safety alignment deliberately reduced via abliteration. Read Intended Use & Risks before using it.
Files
(Update this table with the actual quant files present in the repo)
| Filename | Quant type | Size | Notes |
|---|---|---|---|
| qwen3-0.6b-uncensored.Q2_K.gguf | Q2_K | ~0.3 GB | Smallest, noticeable quality loss |
| qwen3-0.6b-uncensored.Q3_K_M.gguf | Q3_K_M | ~0.35 GB | Low resource use |
| qwen3-0.6b-uncensored.Q4_K_M.gguf | Q4_K_M | ~0.4 GB | Recommended balance of size/quality |
| qwen3-0.6b-uncensored.Q5_K_M.gguf | Q5_K_M | ~0.45 GB | Better quality, still small |
| qwen3-0.6b-uncensored.Q6_K.gguf | Q6_K | ~0.5 GB | Near-lossless |
| qwen3-0.6b-uncensored.Q8_0.gguf | Q8_0 | ~0.65 GB | Highest quality quant, largest size |
| qwen3-0.6b-uncensored.f16.gguf | F16 | ~1.2 GB | Full precision, for re-quantizing |
Given the base model is only 0.6B parameters, even Q8_0 or F16 is small enough to run comfortably on CPU — Q4_K_M or Q5_K_M is recommended for most users, with Q8_0/F16 as an option if you have the RAM/VRAM to spare and want maximum quality.
Quantization details
- Converted with:
llama.cpp(convert_hf_to_gguf.py+llama-quantize) — (fill in the exact commit/version you used) - Source weights: Null-Guard/Qwen3-0.6B-Uncensored (F32/F16 safetensors)
- Imatrix used: (yes/no — if yes, note what calibration dataset was used for the importance matrix)
How to Use
llama.cpp
# Download a quant, e.g. Q4_K_M
huggingface-cli download Null-Guard/Qwen3-0.6B-Uncensored-GGUF \
qwen3-0.6b-uncensored.Q4_K_M.gguf --local-dir .
# Run with llama-cli
./llama-cli -m qwen3-0.6b-uncensored.Q4_K_M.gguf \
-p "You are a helpful assistant." \
-cnv
Or serve it as an OpenAI-compatible API:
./llama-server -m qwen3-0.6b-uncensored.Q4_K_M.gguf -c 4096 --port 8080
Ollama
Create a Modelfile:
FROM ./qwen3-0.6b-uncensored.Q4_K_M.gguf
TEMPLATE """{{ if .System }}<|im_start|>system
{{ .System }}<|im_end|>
{{ end }}{{ if .Prompt }}<|im_start|>user
{{ .Prompt }}<|im_end|>
{{ end }}<|im_start|>assistant
"""
PARAMETER stop "<|im_end|>"
Then:
ollama create qwen3-0.6b-uncensored -f Modelfile
ollama run qwen3-0.6b-uncensored
> Double-check the chat template above against Qwen3's actual template before publishing — copy it from the base model's tokenizer_config.json if it differs.
LM Studio / koboldcpp / text-generation-webui
Any GGUF-compatible loader can load these files directly — search for Null-Guard/Qwen3-0.6B-Uncensored-GGUF in-app or point the loader at a downloaded .gguf file.
Choosing a Quant
- Q4_K_M — best default for most people; good balance of speed, size, and quality.
- Q5_K_M / Q6_K — if you want noticeably better output fidelity and can spare a bit more RAM.
- Q8_0 / F16 — if you want output as close as possible to the unquantized model (model is small enough that this is cheap).
- Q2_K / Q3_K_M — only if you are extremely constrained on RAM/storage; expect a real drop in coherence at this size.
Intended Use & Risks
This is a small, permissive, uncensored model. Refusal behavior has been suppressed via abliteration on the base model before quantization — quantizing does not add or remove any safety behavior on its own.
- Intended for research, local experimentation, and personal/offline use.
- Not intended for public-facing deployment without your own moderation layer.
- Not intended for generating illegal content, sexual content involving minors, harassment, or other content prohibited by law in your jurisdiction — abliteration removes the model's tendency to refuse, it does not remove your responsibility for how you use the output.
- Not intended for use by minors.
Disclaimer: This model's safety filtering has been substantially reduced. It may produce inaccurate, biased, offensive, or otherwise harmful output. Use at your own risk; the maintainers of this repository provide it "as is" for research and personal use and do not endorse any specific downstream use.
Related
- Full-precision model: Null-Guard/Qwen3-0.6B-Uncensored
- Base model: Qwen/Qwen3-0.6B
License
Apache 2.0, inherited from Qwen3-0.6B. See the base model's license for full terms.
Run Null-Guard/Qwen3-0.6B-Uncensored-GGUF with guIDE
Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.
Source: Hugging Face · Compare models