Views
No views yet
cs2764/mlx-abliteration pass applied on the MLX model.qwen3_5_moe / Qwen3_5MoeForConditionalGenerationgroup_size=64, mode=affine)65.1 GB14cs2764/mlx-abliterationfinal Repo| Aspect | This pass2 repo | Newer final repo |
|---|---|---|
| Extra ablation scope | broader pass over layers 0..47 | targeted hot-path pass on layers 36..47 |
| Goal | maximize refusal reduction | better speed / behavior tradeoff |
| Local behavior spot checks | stronger refusal weakening | milder than pass2, but still weaker refusal than direct 4-bit base |
| Local short generation speed | about 12.6 tok/s | about 24.0 tok/s |
| Recommendation: |
pass2 repo if you want the more aggressive refusal-removal behavior.final repo if you want a faster model with a narrower targeted extra pass.vision_config, preprocessor_config.json, processor_config.json, and video_preprocessor_config.jsoncs2764/mlx-abliteration on the converted MLX modelconfig.json with vision_configmodel.safetensors.index.jsonmodel-00001-of-00014.safetensors through model-00014-of-00014.safetensorstokenizer.json, tokenizer_config.json, vocab.jsonpreprocessor_config.json, processor_config.json, video_preprocessor_config.jsonabliteration_log.json for the pass-2 MLX abliteration runablation_meta.json is inherited from the input checkpoint. For the extra MLX pass in this repository, use abliteration_log.json and this model card as the authoritative record.| Parameter | Value |
|---|---|
| Toolkit | cs2764/mlx-abliteration |
| Refusal vector policy | per-layer |
| Ablation vector source | per-layer |
| Ablation strength | 2.0 |
| Refusal direction method | projected |
| Probed layers | 0..47 |
| Adaptive search | False |
| Attention only | False |
| MoE safe mode | True |
| Timestamp | 2026-03-07T02:40:35Z |
mlx_vlm.load(..., lazy=True) loads successfullyprocessor_class = Qwen3VLProcessorhas_vision_tower = Trueconfig.json retains vision_configmlx-vlm1from mlx_vlm import load, generate
2
3model, processor = load(
4 "vanch007/Qwen3.5-122B-A10B-abliterated-4bit-vlm-mlx-cs2764-pass2",
5 lazy=True,
6)
7
8result = generate(
9 model,
10 processor,
11 prompt="Describe the image briefly.",
12 image="/absolute/path/to/example.jpg",
13 max_tokens=128,
14 verbose=False,
15)
16
17print(result.text)