JANGQ-AI/Qwen3.5-27B-JANG_4S

Model

5

stars

11

commits

5

repos using this model

1

linked in READMEs

Sep 8, 2026

updated

apple-silicon
jang
mixed-precision
mlx
quantized
qwen3_5
reasoning
safetensors
thinking
vlm
Browse cluster: Model Quantization and MLX Deployment

README

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, proper tokenizer, and fixed configs. If you downloaded before this date, please re-download.

MLX Studio

MLX Studio App

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]".


JANG

Qwen3.5-27B — JANG_4S (4-bit, 6-bit attention) — VLM

JANG — Jang Adaptive N-bit Grading | Mixed-Precision Quantization for Apple Silicon

GitHub  PyPI  Website  X/Twitter

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)

ModelMMLUSizeSpeed
JANG_4S84.5%16 GB35 tok/s
MLX 4-bit84.5%14 GB20 tok/s

JANG_4S matches MLX 4-bit quality with 75% faster inference (35 vs 20 tok/s).

Per-Subject Scores (JANG_4S vs MLX 4-bit)

SubjectJANG_4SMLX 4-bit
Abstract Algebra15/2015/20
Anatomy17/2017/20
Astronomy19/2019/20
College CS16/2016/20
College Physics17/2017/20
HS Biology19/2019/20
HS Chemistry17/2017/20
HS Mathematics13/2013/20
Logical Fallacies18/2018/20
World Religions18/2018/20
Total169/200169/200

Specs

MetricValue
SourceQwen3.5-27B
ArchitectureDense hybrid (GatedDeltaNet SSM + full attention)
ProfileJANG_4S (CRITICAL=6, IMPORTANT=4, COMPRESS=4)
Average bits~4.15
GPU Memory14.8 GB
Speed35 tok/s
VLMYes (vision encoder preserved)
Formatv2 (MLX-native, instant load)

Install

pip install "jang[mlx]"

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-27B-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-27B-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)

한국어

Qwen3.5-27B — JANG_4S

JANG은 Apple Silicon을 위한 혼합정밀도 양자화 포맷입니다.

모델MMLU크기속도
JANG_4S84.5%16 GB35 tok/s
MLX 4-bit84.5%14 GB20 tok/s
pip install "jang[mlx]"

GitHub · HuggingFace · MLX Studio


장진호 제작 · Created by Jinho Jang — jangq.ai · @dealignai

Contributors

jangq

11 commits

JANGQ-AI/Qwen3.5-27B-JANG_4S

Model

5

stars

11

commits

5

repos using this model

1

linked in READMEs

Sep 8, 2026

updated

apple-silicon
jang
mixed-precision
mlx
quantized
qwen3_5
reasoning
safetensors
thinking
vlm
Browse cluster: Model Quantization and MLX Deployment

README

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, proper tokenizer, and fixed configs. If you downloaded before this date, please re-download.

MLX Studio

MLX Studio App

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]".


JANG

Qwen3.5-27B — JANG_4S (4-bit, 6-bit attention) — VLM

JANG — Jang Adaptive N-bit Grading | Mixed-Precision Quantization for Apple Silicon

GitHub  PyPI  Website  X/Twitter

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)

ModelMMLUSizeSpeed
JANG_4S84.5%16 GB35 tok/s
MLX 4-bit84.5%14 GB20 tok/s

JANG_4S matches MLX 4-bit quality with 75% faster inference (35 vs 20 tok/s).

Per-Subject Scores (JANG_4S vs MLX 4-bit)

SubjectJANG_4SMLX 4-bit
Abstract Algebra15/2015/20
Anatomy17/2017/20
Astronomy19/2019/20
College CS16/2016/20
College Physics17/2017/20
HS Biology19/2019/20
HS Chemistry17/2017/20
HS Mathematics13/2013/20
Logical Fallacies18/2018/20
World Religions18/2018/20
Total169/200169/200

Specs

MetricValue
SourceQwen3.5-27B
ArchitectureDense hybrid (GatedDeltaNet SSM + full attention)
ProfileJANG_4S (CRITICAL=6, IMPORTANT=4, COMPRESS=4)
Average bits~4.15
GPU Memory14.8 GB
Speed35 tok/s
VLMYes (vision encoder preserved)
Formatv2 (MLX-native, instant load)

Install

pip install "jang[mlx]"

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-27B-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-27B-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)

한국어

Qwen3.5-27B — JANG_4S

JANG은 Apple Silicon을 위한 혼합정밀도 양자화 포맷입니다.

모델MMLU크기속도
JANG_4S84.5%16 GB35 tok/s
MLX 4-bit84.5%14 GB20 tok/s
pip install "jang[mlx]"

GitHub · HuggingFace · MLX Studio


장진호 제작 · Created by Jinho Jang — jangq.ai · @dealignai

Contributors

jangq

11 commits