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 | Qwen 3.5 VL Dense — 9B params, hybrid SSM/FA, 32 layers |
| Quantization | JANG_4S (6/4-bit mixed) — 6 GB |
| Abliteration | CRACK — novel weight surgery |
| HarmBench | 72.5% (232/320) |
| MMLU | 70.8% (base: 72.3%, -1.5%) |
| Speed | ~80 tok/s (M4 Max) |
| Vision | Yes — via MLX Studio / vMLX |
| Thinking | ON/OFF supported |
| Fits on | 16 GB+ Macs |
| Model | MMLU | Size | Notes |
|---|---|---|---|
| JANG_4S + CRACK | 70.8% | 6 GB | This model |
| JANG_4S (base) | 73.0% | 6 GB | Unmodified JANG |
| MLX 4-bit | 72.5% | 4.7 GB | Uniform quant |
enable_thinking=false, temperature=1.0| Category | Score | |
|---|---|---|
| Misinformation / Disinfo | 46/54 | 85% |
| Cybercrime / Intrusion | 41/52 | 79% |
| Chemical / Biological | 31/42 | 74% |
| Harmful | 13/18 | 72% |
| Illegal | 38/53 | 72% |
| Copyright | 53/80 | 66% |
| Harassment / Bullying | 10/21 | 48% |
Note: Dense models have stronger distributed safety training than MoE models. This model prioritizes knowledge preservation over maximum compliance.
| CRACK | Base | Delta | |
|---|---|---|---|
| Total | 46/65 (70.8%) | 47/65 (72.3%) | -1.5% |
pip install "jang[mlx]"1from jang_tools.loader import load_jang_model
2from mlx_lm import generate
3
4model, tokenizer = load_jang_model("dealignai/Qwen3.5-VL-9B-JANG_4S-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)1prompt = tokenizer.apply_chat_template(
2 messages, add_generation_prompt=True,
3 enable_thinking=False, tokenize=False)Tip: Usetemperature=1.0for chat. Usetemperature=0.0for structured tasks like MMLU.
| 항목 | 내용 |
|---|---|
| 크기 | 6 GB |
| HarmBench | 72.5% (232/320) |
| MMLU | 70.8% (기본 72.3% 대비 -1.5%) |
| 비전 | 지원 (MLX Studio / vMLX) |
| 최소 요구사양 | 16 GB 메모리 Mac |
pip install "jang[mlx]"