How to use from the
Use from the
llama-cpp-python library
# !pip install llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
	repo_id="icecubetr/GLM-5.2-REAM-GGUF",
	filename="",
)
llm.create_chat_completion(
	messages = [
		{
			"role": "user",
			"content": "What is the capital of France?"
		}
	]
)

GLM-5.2-REAM-GGUF

What this is

  • Base: coder3101/GLM-5.2-REAM which was removed after I downloaded it, which is based on zai-org/GLM-5.2 (glm_moe_dsa, ~753B MoE).
  • Runs as full MLA attention (the DSA lightning-indexer is not used at inference โ€” same simplification as the upstream conversion).
  • Quantized using llama.cpp.

Recommended serving โ€” recover most of the loop gap for free

  • Anti-loop (recommended):

    • min_p=0.05, repetition_penalty=1.05
    • min_p=0.05, repetition_penalty=1.10

    Start at 1.05; go to 1.10 if you see loops โ€” a higher repetition penalty trades a little risk of over-penalizing legitimate repetition (e.g. in code) for near-zero looping.

Downloads last month
3,564
GGUF
Model size
381B params
Architecture
glm-dsa
Hardware compatibility
Log In to add your hardware

2-bit

3-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for icecubetr/GLM-5.2-REAM-GGUF

Base model

zai-org/GLM-5.2
Quantized
(106)
this model