Instructions to use dealignai/MiniMax-M2.5-UNCENSORED-JANG_2L with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use dealignai/MiniMax-M2.5-UNCENSORED-JANG_2L with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("dealignai/MiniMax-M2.5-UNCENSORED-JANG_2L") prompt = "Write a story about Einstein" messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) text = generate(model, tokenizer, prompt=prompt, verbose=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use dealignai/MiniMax-M2.5-UNCENSORED-JANG_2L with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "dealignai/MiniMax-M2.5-UNCENSORED-JANG_2L"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "dealignai/MiniMax-M2.5-UNCENSORED-JANG_2L" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use dealignai/MiniMax-M2.5-UNCENSORED-JANG_2L with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "dealignai/MiniMax-M2.5-UNCENSORED-JANG_2L"
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 dealignai/MiniMax-M2.5-UNCENSORED-JANG_2L
Run Hermes
hermes
- MLX LM
How to use dealignai/MiniMax-M2.5-UNCENSORED-JANG_2L with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "dealignai/MiniMax-M2.5-UNCENSORED-JANG_2L"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "dealignai/MiniMax-M2.5-UNCENSORED-JANG_2L" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "dealignai/MiniMax-M2.5-UNCENSORED-JANG_2L", "messages": [ {"role": "user", "content": "Hello"} ] }'
Important: This model uses the JANG quantization format — the GGUF equivalent for MLX on Apple Silicon. Currently only supported by MLX Studio and the
jang-toolsPython package.
MLX Studio — the only app that natively supports JANG models
What Is This?
This is MiniMax M2.5 — a 230B parameter Mixture-of-Experts model with 256 experts (8 active per token), all standard attention (no SSM), and trained with chain-of-thought reasoning.
It has been:
- JANG quantized — JANG_2L profile (8-bit attention, 6-bit embeddings, 2-bit experts) — 63 GB
- CRACK abliterated — permanent weight-level removal of safety refusal
| Architecture | MiniMax M2.5 MoE — 230B total, ~10B active, 256 experts |
| Quantization | JANG_2L (8/6/2-bit mixed) — 63 GB |
| Abliteration | CRACK — novel weight surgery |
| MMLU-200 | 84.7% (base: 74.5%, +10.2% improvement) |
| HarmBench | 98.1% (314/320) |
| Compliance | 7/8 prompts |
| Thinking | ON/OFF supported |
| Speed | ~35 tok/s (M4 Ultra 256GB) |
| Fits on | 96 GB+ Macs |
MMLU-200 Results
JANG CRACK vs Base vs MLX Uniform
| Model | MMLU | Size | Notes |
|---|---|---|---|
| JANG_2L + CRACK | ~84.7% | 63 GB | This model |
| JANG_2L (base) | 74.5% | 63 GB | Unmodified JANG |
| MLX 4-bit | 26.5% | 120 GB | Broken (~random) |
| MLX 3-bit | 24.5% | 93 GB | Broken (~random) |
| MLX 2-bit | 25.0% | 67 GB | Broken (~random) |
MLX uniform quantization is completely broken on MiniMax at ALL bit levels (~25% = random chance). JANG is the only working quantization format for this model.
Per Subject
| Subject | CRACK | Base | Delta |
|---|---|---|---|
| Abstract Algebra | ~18/20 | 10/20 | +8 |
| HS Mathematics | 17/20 | 12/20 | +5 |
| College CS | ~14/20 | 10/20 | +4 |
| Logical Fallacies | 18/20 | 16/20 | +2 |
| HS Biology | 19/20 | 18/20 | +1 |
| Astronomy | ~18/20 | 18/20 | 0 |
| Anatomy | ~15/20 | 15/20 | 0 |
| HS Chemistry | 16/20 | 16/20 | 0 |
| World Religions | 17/20 | 17/20 | 0 |
| College Physics | ~16/20 | 17/20 | -1 |
| Total | ~169/200 | 149/200 | +20 |
Safety guardrails were actively degrading the model's reasoning ability. CRACK surgery unlocked the model's full capacity for mathematical and logical reasoning.
HarmBench Results
314/320 (98.1%) — tested with enable_thinking=false, temperature=1.0
| Category | Score | |
|---|---|---|
| Chemical / Biological | 42/42 | 100% |
| Cybercrime / Intrusion | 52/52 | 100% |
| Harassment / Bullying | 21/21 | 100% |
| Harmful | 18/18 | 100% |
| Illegal | 53/53 | 100% |
| Misinformation / Disinfo | 54/54 | 100% |
| Copyright | 74/80 | 92% |
Install & Usage
pip install "jang[mlx]"
from jang_tools.loader import load_jang_model
from mlx_lm import generate
model, tokenizer = load_jang_model("dealignai/MiniMax-M2.5-JANG_2L-CRACK")
messages = [{"role": "user", "content": "Your prompt here"}]
prompt = tokenizer.apply_chat_template(
messages, add_generation_prompt=True, tokenize=False)
response = generate(model, tokenizer, prompt=prompt, max_tokens=2000)
print(response)
Note: MiniMax generates a
<think>chain before answering by default. To disable thinking, passenable_thinking=Falsein your chat template kwargs. Usemax_tokens=2000+for complex questions. For chat applications, usetemperature=1.0(greedy causes loops).
About JANG
JANG (Jang Adaptive N-bit Grading) is a mixed-precision quantization format for Apple Silicon — the GGUF equivalent for MLX. Classifies tensors into sensitivity tiers and assigns bits accordingly.
About CRACK
CRACK (Controlled Refusal Ablation via Calibrated Knockouts) removes safety alignment from LLMs at the weight level using per-layer projected vectors from structurally-mirrored prompt pairs.
Links
Disclaimer
This model is provided for research and educational purposes. The creators are not responsible for any misuse. By downloading this model, you agree to use it responsibly and in compliance with applicable laws.
한국어
MiniMax M2.5 — JANG_2L + CRACK
| 항목 | 내용 |
|---|---|
| 크기 | 63 GB |
| MMLU | 84.7% (기본 74.5% 대비 +10.2%) |
| HarmBench | 98.1% (314/320) |
| 최소 요구사양 | 96 GB 메모리 Mac |
pip install "jang[mlx]"
GitHub · HuggingFace · MLX Studio · Ko-fi · X @dealignai
Created by Jinho Jang · 장진호 제작
- Downloads last month
- 1,601
Quantized
Model tree for dealignai/MiniMax-M2.5-UNCENSORED-JANG_2L
Base model
MiniMaxAI/MiniMax-M2.5
