KyleHessling1/Qwopus-GLM-18B-Healed-MLX-4bit
Qwopus-GLM-18B-Healed — MLX 4-bit
Apple Silicon / MLX 4-bit quantization of the healed Qwopus-GLM-18B frankenmerge. Ready to run on Macs with the MLX framework via `mlx-lm`.
- Source (BF16): KyleHessling1/Qwopus-GLM-18B-Healed
- Q4_K_M GGUF (llama.cpp): KyleHessling1/Qwopus-GLM-18B-Merged-GGUF
Quickstart
pip install -U "mlx-lm>=0.31.2"from mlx_lm import load, generate
model, tokenizer = load("KyleHessling1/Qwopus-GLM-18B-Healed-MLX-4bit")
print(generate(model, tokenizer, prompt="The capital of France is", max_tokens=64))Or from the CLI:
python3 -m mlx_lm generate \
--model KyleHessling1/Qwopus-GLM-18B-Healed-MLX-4bit \
--prompt "Write a haiku about Apple Silicon." \
--max-tokens 128Runs comfortably on a 16–24 GB unified-memory Mac (M-series).
Quantization
Reproducible from the BF16 source with:
python3 -m mlx_lm convert \
--hf-path KyleHessling1/Qwopus-GLM-18B-Healed \
--mlx-path ./Qwopus-GLM-18B-Healed-MLX-4bit \
-q --q-bits 4 --q-group-size 64Base Model
A 64-layer frankenmerge of two of Jackrong's Qwen3.5-9B finetunes, healed with a 1000-step QLoRA fine-tune:
- Layers 0–31: Jackrong/Qwopus3.5-9B-v3.5 (Opus reasoning distill)
- Layers 32–63: Jackrong/Qwen3.5-9B-GLM5.1-Distill-v1 (GLM-5.1 reasoning distill)
- Heal training: 1000 steps QLoRA (rank 64) on Jackrong's training data to smooth the layer boundary
Architecture
Capability Suite (from base model)
Beats Qwen 3.6-35B-A3B MoE on a 44-test capability suite at less than half the VRAM:
Frontend stress tests: 62/63 checks passed across 6 complex HTML/CSS/JS generation tasks with perfectly balanced braces/parens and zero garbled output.
Note: benchmarks were measured on the BF16 base / Q4KM GGUF. The MLX 4-bit weights are a separate quantization and have not been independently re-benchmarked — expect quality within normal 4-bit quantization variance.
Known Issues
- The tokenizer emits a Mistral-regex warning on load (inherited from the source repo). Benign for Qwen tokenization in practice.
Credits
All credit for the source models goes to [Jackrong](https://huggingface.co/Jackrong). The heal training used his published datasets. See the full merge documentation for the complete technical workflow.
MLX quantization by @KyleHessling1 using mlx-lm.
License
Apache 2.0 (inherited from source models)
Contact
Questions, issues, or cool projects? Reach out on X: @KyleHessling1
