Views
No views yet

⚠️ This model is genuinely uncensored, it will comply with requests a stock model refuses.Intended use, the constructive side. An assistant that does not refuse is genuinely useful for ethical hacking, security research, and penetration testing: red-teaming, analyzing malware and exploit code, writing detection/YARA rules, reviewing vulnerabilities, and studying attack techniques without the model bailing out mid-task. Use it lawfully and responsibly, you are accountable for what you do with it.
| Base model | MiniMaxAI/MiniMax-M3 (428B total / 23B active, MoE, multimodal, 1M context) |
| Precision | BF16 (796 GB, 59 shards) |
| Effective refusals | 0/16 hard-refusals on harmful prompts (mlabonne/harmful_behaviors); the base model deliberates or refuses |
| Modified weights | attention o_proj + every residual-writing down_proj (dense, shared expert, and all 128 routed experts per MoE layer), all 60 layers |
| Coherence | intact (multimodal, reasoning and MoE routing preserved) |
| Prompt set | Prompts | Hard refusals |
|---|---|---|
| mlabonne/harmful_behaviors | 16 | 0/16 (0.0%) |
ℹ️ MiniMax-M3 has a reasoning mode (<mm:think>). The model thinks before answering; the uncensored build reasons about how to fulfill a request rather than whether to refuse. For direct answers, disable thinking in your client.
1from transformers import AutoModelForImageTextToText, AutoTokenizer, AutoConfig
2tok = AutoTokenizer.from_pretrained("ressl/MiniMax-M3-uncensored")
3cfg = AutoConfig.from_pretrained("ressl/MiniMax-M3-uncensored")
4model = AutoModelForImageTextToText.from_pretrained(
5 "ressl/MiniMax-M3-uncensored", config=cfg, dtype="bfloat16", device_map="auto")1vllm serve ressl/MiniMax-M3-uncensored \
2 --tensor-parallel-size 8 --tool-call-parser minimax_m3 --reasoning-parser minimax_m3 --trust-remote-code