Views
No views yet
1quant arc arc/e boolq hswag obkqa piqa wino
2bf16 0.497,0.690,0.844
3q8-hi 0.499,0.694,0.845,0.700,0.430,0.781,0.689
4qx86-hi 0.491,0.685,0.844
5mxfp8 0.467,0.662,0.814
6
7Quant Perplexity Peak Memory Tokens/sec
8bf16 4.383 ± 0.029 9.74 GB 1743
9q8-hi 4.381 ± 0.029 6.90 GB 1627
10qx86-hi 4.398 ± 0.029 6.44 GB 1363
11mxfp8 4.907 ± 0.033 6.58 GB 14741 arc arc/e boolq hswag obkqa piqa wino
2q8-hi 0.496,0.683,0.828,0.692,0.422,0.775,0.676
3 Perplexity Peak Memory Tokens/sec
4q8-hi 4.447 ± 0.030 6.90 GB 16091 arc arc/e boolq hswag obkqa piqa wino
2q8-hi 0.486,0.673,0.826,0.688,0.430,0.771,0.666
3 Perplexity Peak Memory Tokens/sec
4q8-hi 4.657 ± 0.032 6.90 GB 16261 arc arc/e boolq hswag obkqa piqa wino
2q8-hi 0.417,0.585,0.651,0.682,0.390,0.781,0.6691 arc arc/e boolq hswag obkqa piqa wino
2q8-hi 0.423,0.602,0.850,0.641,0.428,0.743,0.6191quant 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.5591model: granite-4.1-3B-TNG-Coder-Heretic
2source: treadon/granite-4.1-3b-Abliterated-AND-Disinhibited
3dataset: nightmedia/chat_tng_qwen_polaris_544_986_1530.jsonl
4Iter 550:
5 Val loss 0.902
6 Train loss 0.817
7 Learning Rate 1.000e-05
8 Tokens/sec 573.023
9 Trained Tokens 804064
10 Peak mem 28.964 GB1models:
2 - model: granite-4.1-3B-TNG-Coder-Heretic
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-Claude-Coder-Heretic
11
12models:
13 - model: granite-4.1-3B-TNG-Claude-Coder-Heretic
14 parameters:
15 weight: 1.6
16 - model: ermiaazarkhalili/Granite-4.1-3B-Function-Calling-xLAM-Unsloth
17 parameters:
18 weight: 0.4
19merge_method: nuslerp
20dtype: bfloat16
21name: granite-4.1-3B-TNG-Claude-Coder-xLAM-Heretic
22name: pip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("granite-4.1-3B-TNG-Claude-Coder-xLAM-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)