KyleHessling1/Qwopus-GLM-18B-Healed
Qwopus-GLM-18B-Healed — Base Weights
Full BF16 safetensors for the healed Qwopus-GLM-18B frankenmerge. Use these to create your own quantizations (GGUF, AWQ, GPTQ, EXL2, etc.) or as a base for further fine-tuning.
For a ready-to-use Q4KM GGUF, see: KyleHessling1/Qwopus-GLM-18B-Merged-GGUF
What This Is
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
Model Details
Performance
Beats Qwen 3.6-35B-A3B MoE on our 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.
Quantizing
GGUF (llama.cpp)
python3 convert_hf_to_gguf.py \
KyleHessling1/Qwopus-GLM-18B-Healed \
--outfile Qwopus-GLM-18B-healed-f16.gguf \
--outtype bf16
llama-quantize \
Qwopus-GLM-18B-healed-f16.gguf \
Qwopus-GLM-18B-healed-Q4_K_M.gguf \
Q4_K_MAutoGPTQ / AWQ / EXL2
Load with standard HuggingFace transformers and quantize with your preferred tool:
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained(
"KyleHessling1/Qwopus-GLM-18B-Healed",
torch_dtype="bfloat16",
device_map="auto",
)
tokenizer = AutoTokenizer.from_pretrained("KyleHessling1/Qwopus-GLM-18B-Healed")Files
model-00001-of-00007.safetensors (5.0 GB)
model-00002-of-00007.safetensors (5.0 GB)
model-00003-of-00007.safetensors (5.0 GB)
model-00004-of-00007.safetensors (5.0 GB)
model-00005-of-00007.safetensors (5.0 GB)
model-00006-of-00007.safetensors (5.0 GB)
model-00007-of-00007.safetensors (1.1 GB)
model.safetensors.index.json
config.json
tokenizer.json
tokenizer_config.json
chat_template.jinjaCredits
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.
License
Apache 2.0 (inherited from source models)
Contact
Questions, issues, or cool projects? Reach out on X: @KyleHessling1
