Views
No views yet
CRITICAL FIX (2026-03-19): Fixed eos_token_id — previous versions caused infinite thinking loops. You MUST re-download this model if you downloaded before today.
Update (2026-03-18): Models updated to v2.1 with VLM support and fixed configs. Re-download if you got this before today.
Early Adoption: LM Studio, Ollama, oMLX, Inferencer do not support JANG yet. 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.
| Model | MMLU | Size | Speed |
|---|---|---|---|
| JANG_4K | 86% | 69 GB | ~50 tok/s |
| JANG_3L | 81.5% | 49 GB | 49.6 tok/s |
| JANG_2S | 79% | 35 GB | 54 tok/s |
| MLX 4-bit | 85% | 64 GB | — |
| MLX 2-bit | 56.5% | 36 GB | — |
| Subject | JANG_3L |
|---|---|
| Abstract Algebra | 12/20 |
| Anatomy | 18/20 |
| Astronomy | 19/20 |
| College CS | 15/20 |
| College Physics | 15/20 |
| HS Biology | 19/20 |
| HS Chemistry | 18/20 |
| HS Mathematics | 11/20 |
| Logical Fallacies | 18/20 |
| World Religions | 18/20 |
| Total | 163/200 = 81.5% |
| Metric | Value |
|---|---|
| Source | Qwen3.5-122B-A10B |
| Architecture | MoE (256 experts, 8 active) + GatedDeltaNet SSM |
| Profile | JANG_3L (CRITICAL=8, IMPORTANT=4, COMPRESS=3) |
| Average bits | ~3.08 |
| GPU Memory | 48.5 GB |
| Speed | 49.6 tok/s |
| VLM | Yes (vision encoder preserved) |
| Format | v2 (MLX-native, instant load) |
pip install "jang[mlx]"1from jang_tools.loader import load_jang_model
2from mlx_lm.sample_utils import make_sampler
3from mlx_lm.generate import generate_step
4import mlx.core as mx
5
6model, tokenizer = load_jang_model("JANGQ-AI/Qwen3.5-122B-A10B-JANG_3L")
7sampler = make_sampler(temp=0.7)
8tokens = tokenizer.encode("What is photosynthesis?")
9for tok, _ in generate_step(prompt=mx.array(tokens), model=model, max_tokens=200, sampler=sampler):
10 t = tok.item() if hasattr(tok, 'item') else int(tok)
11 print(tokenizer.decode([t]), end="", flush=True)
12 if t == tokenizer.eos_token_id: break1from jang_tools.loader import load_jang_vlm_model
2from mlx_vlm import generate
3
4model, processor = load_jang_vlm_model("JANGQ-AI/Qwen3.5-122B-A10B-JANG_3L")
5prompt = processor.tokenizer.apply_chat_template(
6 [{"role": "user", "content": [
7 {"type": "image", "image": "photo.jpg"},
8 {"type": "text", "text": "Describe this image."}
9 ]}], add_generation_prompt=True, tokenize=False, enable_thinking=False)
10result = generate(model, processor, prompt, ["photo.jpg"], max_tokens=200)
11print(result.text)| 모델 | MMLU | 크기 | 속도 |
|---|---|---|---|
| JANG_3L | 81.5% | 49 GB | 49.6 tok/s |
pip install "jang[mlx]"