Views
No views yet
| Property | Value |
|---|---|
| Parameters | ~18B |
| Layers | 64 (32 + 32) |
| Hidden Size | 4096 |
| Attention Heads | 16 (4 KV heads, GQA) |
| Attention Type | Hybrid (linear + full, every 4th layer) |
| Context Length | 262,144 tokens |
| Precision | BF16 |
| Total Size | ~31 GB (7 safetensor shards) |
| Qwopus-GLM-18B (healed) | Qwen 3.6-35B MoE | |
|---|---|---|
| Score | 40/44 (90.9%) | 38/44 (86.4%) |
| Tool Calling | 6/6 | 6/6 |
| Agentic | 4/4 | 4/4 |
| Programming | 12/15 | 12/15 |
| Q4_K_M Size | 9.2 GB | 22 GB |
1python3 convert_hf_to_gguf.py \
2 KyleHessling1/Qwopus-GLM-18B-Healed \
3 --outfile Qwopus-GLM-18B-healed-f16.gguf \
4 --outtype bf16
5
6llama-quantize \
7 Qwopus-GLM-18B-healed-f16.gguf \
8 Qwopus-GLM-18B-healed-Q4_K_M.gguf \
9 Q4_K_M1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained(
4 "KyleHessling1/Qwopus-GLM-18B-Healed",
5 torch_dtype="bfloat16",
6 device_map="auto",
7)
8tokenizer = AutoTokenizer.from_pretrained("KyleHessling1/Qwopus-GLM-18B-Healed")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.jinja