Views
No views yet
This model uses reasoning/thinking mode. The model reasons inside<think>...</think>tags before answering. This dramatically improves accuracy on hard questions (abstract algebra: 50% → 80%, math: 50% → 85%). MLX Studio is required to run this model — it handles JANG format, bfloat16 compute, and thinking mode natively.
LM Studio, Ollama, oMLX, Inferencer do NOT support JANG format. Use MLX Studio orpip install "jang[mlx]".

JANG is fully open-source. Quantization engine, research, and full commit history: github.com/jjang-ai/jangq. Created by Jinho Jang.
<think>...</think> for step-by-step problem solving| Subject | JANG No-Think | JANG Reasoning | MLX 4-bit No-Think | MLX 4-bit Reasoning |
|---|---|---|---|---|
| Abstract Algebra | 10/20 | 16/20 | 10/20 | 17/20 |
| Anatomy | 17/20 | 19/20 | 18/20 | 19/20 |
| Astronomy | 19/20 | 19/20 | 19/20 | 19/20 |
| College CS | 18/20 | 19/20 | 15/20 | 18/20 |
| College Physics | 14/20 | 18/20 | 15/20 | 19/20 |
| HS Biology | 18/20 | 19/20 | 19/20 | 19/20 |
| HS Chemistry | 16/20 | 18/20 | 17/20 | 19/20 |
| HS Mathematics | 10/20 | 17/20 | 12/20 | 19/20 |
| Logical Fallacies | 19/20 | 20/20 | 19/20 | 20/20 |
| World Religions | 18/20 | 19/20 | 19/20 | 19/20 |
| Total | 159/200 (79.5%) | 184/200 (92.0%) | 163/200 (81.5%) | 188/200 (94.0%) |
| JANG_2L | JANG_1L | MLX 4-bit | MLX 2/3-bit | |
|---|---|---|---|---|
| MMLU (no-think) | 79.5% | 81.0% | 81.5% | NaN -- cannot run |
| MMLU (reasoning) | 92.0% | 86.5% | 94.0% | NaN -- cannot run |
| Size | 187 GB | 112 GB | 209 GB | N/A |
| GPU RAM | 184 GB | 110 GB | ~210 GB | N/A |
| Speed | 36.0 tok/s | 36.1 tok/s | ~36 tok/s | N/A |
| Fits 128 GB? | No (256 GB) | YES | No | N/A |
| Metric | Value |
|---|---|
| Source | Qwen3.5-397B-A17B |
| Architecture | Hybrid MoE + SSM (GatedDeltaNet + Full Attention) |
| Experts | 512 per layer, top-10 active (17B active params) |
| Layers | 60 (45 GatedDeltaNet SSM + 15 Full Attention) |
| Profile | JANG_2L (CRITICAL=8, IMPORTANT=6, COMPRESS=2) |
| MLP Asymmetry | gate_proj=4-bit, up_proj=2-bit, down_proj=3-bit |
| Average bits | 3.72 bpw |
| Disk size | 187 GB (43 shards) |
| GPU RAM | 197 GB peak |
| Generation speed | 36.0 tok/s (M4 Ultra 256 GB) |
| Prefill speed | 94.5 tok/s |
| Compute dtype | bfloat16 (auto-detected, prevents float16 overflow) |
| VLM | 333 vision tensors, Qwen3VLProcessor |
pip install "jang[mlx]>=2.1.5"pip install "jang[mlx]>=2.1.5"1from jang_tools.loader import load_jang_model
2from mlx_lm import generate
3
4model, tokenizer = load_jang_model("JANGQ-AI/Qwen3.5-397B-A17B-JANG_2L")
5# bfloat16 is auto-applied for 512-expert models
6
7# With reasoning (recommended for hard questions)
8messages = [{"role": "user", "content": "Prove that sqrt(2) is irrational."}]
9prompt = tokenizer.apply_chat_template(messages, tokenize=False,
10 add_generation_prompt=True, enable_thinking=True)
11result = generate(model, tokenizer, prompt=prompt, max_tokens=2048)
12
13# Without reasoning (faster for simple questions)
14prompt = tokenizer.apply_chat_template(messages, tokenize=False,
15 add_generation_prompt=True, enable_thinking=False)
16result = generate(model, tokenizer, prompt=prompt, max_tokens=100)1from jang_tools.loader import load_jang_vlm_model
2from mlx_vlm import generate as vlm_generate
3
4model, processor = load_jang_vlm_model("JANGQ-AI/Qwen3.5-397B-A17B-JANG_2L")
5
6# Format prompt with image tokens
7messages = [{"role": "user", "content": [
8 {"type": "image"},
9 {"type": "text", "text": "Describe this image."},
10]}]
11prompt = processor.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
12result = vlm_generate(model, processor, prompt=prompt, image=["photo.jpg"], max_tokens=200)<think>...</think> tags for step-by-step reasoning. On hard questions (math, physics, algebra), this improves accuracy by 25+ percentage points.enable_thinking toggle. Set to False for fast answers, True for reasoning.pip install "jang[mlx]>=2.1.5"