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 have been updated to v2.1.0 with VLM support, proper tokenizer, and fixed configs. If you downloaded before this date, please re-download for full MLX Studio compatibility.
MLX Studio โ the only app that natively supports JANG models
Early Adoption: LM Studio, Ollama, oMLX, Inferencer do not support JANG yet. Use MLX Studio or
pip install "jang[mlx]". Ask your favorite app's creators to add JANG support!
Qwen3.5-4B โ JANG_4S (4.15-bit) โ VLM
JANG โ Jang Adaptive N-bit Grading | Mixed-Precision Quantization for Apple Silicon
JANG is fully open-source. Quantization engine, research, and full commit history: github.com/jjang-ai/jangq. Created by Jinho Jang.
Results (200-question MMLU)
| Model | MMLU | Size | Speed |
|---|---|---|---|
| JANG_4S (4.15-bit) | 67.5% | 3.0 GB | ~134 tok/s |
| MLX 4-bit | 67.0% | 2.2 GB | โ |
| MLX 3-bit | 48.5% | 1.7 GB | โ |
| MLX 2-bit | 12.5% | 1.2 GB | โ |
JANG_4S beats MLX 4-bit โ same quality, attention at 6-bit for better coherence.
Per-Subject Scores
| Subject | JANG_4S | MLX_4bit | MLX_3bit | MLX_2bit |
|---|---|---|---|---|
| Abstract Algebra | 5/20 | 6/20 | 3/20 | 3/20 |
| Anatomy | 16/20 | 15/20 | 11/20 | 1/20 |
| Astronomy | 19/20 | 17/20 | 13/20 | 1/20 |
| College CS | 11/20 | 11/20 | 7/20 | 1/20 |
| College Physics | 13/20 | 13/20 | 8/20 | 7/20 |
| HS Biology | 17/20 | 17/20 | 13/20 | 5/20 |
| HS Chemistry | 12/20 | 12/20 | 7/20 | 3/20 |
| HS Mathematics | 8/20 | 9/20 | 6/20 | 1/20 |
| Logical Fallacies | 17/20 | 17/20 | 13/20 | 1/20 |
| World Religions | 17/20 | 17/20 | 16/20 | 2/20 |
| Total (/200) | 135 | 134 | 97 | 25 |
Specs
| Metric | Value |
|---|---|
| Source | Qwen3.5-4B |
| Profile | JANG_4S (CRITICAL=6, IMPORTANT=4, COMPRESS=4) |
| Average bits | 4.15 |
| VLM | Yes (297 vision tensors) |
| Format | v2 (MLX-native, instant load) |
Install
pip install "jang[mlx]"
For Vision-Language models:
pip install "jang[vlm]"
Quick Start
from jang_tools.loader import load_jang_model
from mlx_lm.sample_utils import make_sampler
from mlx_lm.generate import generate_step
import mlx.core as mx
model, tokenizer = load_jang_model("JANGQ-AI/Qwen3.5-4B-JANG_4S")
sampler = make_sampler(temp=0.7)
tokens = tokenizer.encode("What is photosynthesis?")
for tok, _ in generate_step(prompt=mx.array(tokens), model=model, max_tokens=200, sampler=sampler):
t = tok.item() if hasattr(tok, 'item') else int(tok)
print(tokenizer.decode([t]), end="", flush=True)
if t == tokenizer.eos_token_id:
break
VLM Inference
from jang_tools.loader import load_jang_vlm_model
from mlx_vlm import generate
model, processor = load_jang_vlm_model("JANGQ-AI/Qwen3.5-4B-JANG_4S")
prompt = processor.tokenizer.apply_chat_template(
[{"role": "user", "content": [
{"type": "image", "image": "photo.jpg"},
{"type": "text", "text": "Describe this image."}
]}], add_generation_prompt=True, tokenize=False, enable_thinking=False)
result = generate(model, processor, prompt, ["photo.jpg"], max_tokens=200)
print(result.text)
Links
- GitHub | HuggingFace | MLX Studio | PyPI | Format Spec
ํ๊ตญ์ด
Qwen3.5-4B โ JANG 4S
JANG์ Apple Silicon์ ์ํ ํผํฉ์ ๋ฐ๋ ์์ํ ํฌ๋งท์ ๋๋ค. MLX๋ฅผ ์ํ GGUF์ ๊ฐ์ ์ญํ ์ ํฉ๋๋ค.
| ๋ชจ๋ธ | MMLU | ํฌ๊ธฐ |
|---|---|---|
| JANG_4S | 67.5% | 3.0 GB |
| MLX 4-bit | 67.0% | 2.2 GB |
์ค์น
pip install "jang[mlx]"
ํธํ์ฑ
ํ์ฌ **MLX Studio**๋ง JANG ํฌ๋งท์ ๊ธฐ๋ณธ ์ง์ํฉ๋๋ค.
GitHub ยท HuggingFace ยท MLX Studio ยท PyPI
์ฅ์งํธ ์ ์ ยท Created by Jinho Jang โ jangq.ai ยท @dealignai
- Downloads last month
- 435
Quantized

