abliteratedmodels.org

Kimi-K3-Uncensored

Kimi-K3-Uncensored is a abliterated and uncensored variant of moonshotai/Kimi-K3, published on Hugging Face by Ryanchen911. It is other licence. It is distributed across 3 repositories in GGUF format, totalling 6.5K downloads.

Abliteration + uncensored fine-tuneKimi6,45620

Specification

Model name
Kimi-K3-Uncensored
Publisher
Ryanchen911
Parameters
Not determinable from name
Hardware class
Unknown
Licence
other
Task
Text generation
Context window
Not documented
Ablation scope
Not stated by the publisher
Formats available
GGUF
First indexed
10 Aug 2026
Last updated
19 Aug 2026

Ablation technique

How Kimi-K3-Uncensored was modified, and what that implies.

Abliteration + uncensored fine-tune

Directional ablation combined with additional fine-tuning on unfiltered data, so behaviour diverges from the base model beyond refusal removal alone.

Reported scope: Not stated by the publisher. Publishers frequently omit this, so verify behaviour empirically rather than assuming full coverage.

From the publisher’s model card

An abliterated GGUF quantization of Kimi K3 (2.8T params / 104B active / 896 experts, top-16), with the refusal direction orthogonalized out of the residual-stream write path.

Running it

Commands are templates — confirm the exact repository and quant file before use.

llama.cpp / GGUF
hf download Ryanchen911/Kimi-K3-Uncensored-GGUF --local-dir ./kimi-k3-uncensored
llama-cli -m ./kimi-k3-uncensored/<file>.gguf -p "..."
Transformers
from transformers import AutoModelForCausalLM, AutoTokenizer

repo = "Ryanchen911/Kimi-K3-Uncensored-GGUF"
tok = AutoTokenizer.from_pretrained(repo)
model = AutoModelForCausalLM.from_pretrained(
    repo, torch_dtype="auto", device_map="auto"
)
vLLM
vllm serve Ryanchen911/Kimi-K3-Uncensored-GGUF --trust-remote-code

Downloads and variants (2)

Every published repository of Kimi-K3-Uncensored, including quantised re-releases by other authors.

Security-team assessment

Derived from this model’s metadata and the publisher’s claims — not from benchmarks run by this site.

  • Kimi-K3-Uncensored will attempt offensive-security prompts that a hosted commercial model declines, which is what makes it usable for red-team corpus generation and for measuring what an unaligned model of this class produces.
  • The publisher does not state which layers were ablated, so assume nothing about refusal consistency — probe it directly.
  • This release adds fine-tuning on unfiltered data, so its behaviour diverges from the base model beyond refusal removal — differences you measure cannot be attributed to ablation alone.
  • Declared licence is other, but the terms that bind you are moonshotai/Kimi-K3’s — a re-release cannot grant more than its parent.

Handling: run it isolated, put moderation in front of it if anyone outside your team can reach it, and verify the weights before loading — these are third-party artifacts. Full handling and licence guidance.

Metadata for Kimi-K3-Uncensored is collected from the public Hugging Face API and the publisher’s model card. This site does not host weights, is not affiliated with Ryanchen911, and does not independently verify publisher claims. See responsible use.