Views
No views yet
Important: This model uses the JANG quantization format — the GGUF equivalent for MLX on Apple Silicon. Currently only supported by MLX Studio and thejang-toolsPython package.

| 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 |
| 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) |
| 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 |
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% |
pip install "jang[mlx]"1from jang_tools.loader import load_jang_model
2from mlx_lm import generate
3
4model, tokenizer = load_jang_model("dealignai/MiniMax-M2.5-JANG_2L-CRACK")
5
6messages = [{"role": "user", "content": "Your prompt here"}]
7prompt = tokenizer.apply_chat_template(
8 messages, add_generation_prompt=True, tokenize=False)
9
10response = generate(model, tokenizer, prompt=prompt, max_tokens=2000)
11print(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).
| 항목 | 내용 |
|---|---|
| 크기 | 63 GB |
| MMLU | 84.7% (기본 74.5% 대비 +10.2%) |
| HarmBench | 98.1% (314/320) |
| 최소 요구사양 | 96 GB 메모리 Mac |
pip install "jang[mlx]"