Views
No views yet
1quant arc arc/e boolq hswag obkqa piqa wino
2bf16 0.514,0.720,0.846
3q8-hi 0.520,0.716,0.847,0.704,0.422,0.791,0.687
4
5Quant Perplexity Peak Memory Tokens/sec
6bf16 4.235 ± 0.027 9.74 GB 2031
7mxfp8 4.756 ± 0.031 6.58 GB 1665
8q8-hi 4.238 ± 0.027 6.90 GB 16131quant arc arc/e boolq hswag obkqa piqa wino
2bf16 0.510,0.717,0.846,0.694,0.422,0.786,0.669
3q8-hi 0.515,0.718,0.848,0.694,0.426,0.784,0.668
4Quant Perplexity Peak Memory Tokens/sec
5bf16 4.425 ± 0.029 9.74 GB 1996
6q8-hi 4.423 ± 0.029 6.90 GB 17211 arc arc/e boolq hswag obkqa piqa wino
2q8-hi 0.417,0.585,0.651,0.682,0.390,0.781,0.6691quant arc arc/e boolq hswag obkqa piqa wino
2mxfp8 0.405,0.598,0.843,0.520,0.442,0.713,0.5821quant arc arc/e boolq hswag obkqa piqa wino
2mxfp8 0.406,0.581,0.821,0.484,0.434,0.712,0.5591models:
2 - model: granite-4.1-3B-TNG-Coder-Heretic-V2
3 parameters:
4 weight: 1.6
5 - model: ermiaazarkhalili/Granite-4.1-3B-SFT-Claude-Opus-Reasoning-Unsloth
6 parameters:
7 weight: 0.4
8merge_method: nuslerp
9dtype: bfloat16
10name: granite-4.1-3B-TNG-Holodeck-V2B-Heretic
11pip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("granite-4.1-3B-TNG-Holodeck-V2B-Heretic-q8-hi-mlx")
4
5prompt = "hello"
6
7if tokenizer.chat_template is not None:
8 messages = [{"role": "user", "content": prompt}]
9 prompt = tokenizer.apply_chat_template(
10 messages, add_generation_prompt=True, return_dict=False,
11 )
12
13response = generate(model, tokenizer, prompt=prompt, verbose=True)