AaryanK/GLM-4.7-Flash-GGUF
7735
GLM-4.7-Flash-GGUF
<div align="center"> <img src="https://raw.githubusercontent.com/zai-org/GLM-4.5/refs/heads/main/resources/logo.svg" width="15%"/> </div>
Description
This repository contains GGUF format model files for Zhipu AI's GLM-4.7-Flash.
GLM-4.7-Flash is a highly efficient 30B-A3B Mixture-of-Experts (MoE) model. It is designed to be the strongest model in the 30B parameter class, offering a powerful option for lightweight deployment that perfectly balances performance and efficiency.
Evaluation Results
Files & Quantization
To see the available files, please verify the Files and versions tab.
How to Run (llama.cpp)
Recommended Parameters:
- Temperature:
1.0(Standard) or0.7(For stricter adherence) - Top-P:
0.95 - Context:
-c(Adjust based on available RAM).
CLI Example
./llama-cli -m GLM-4.7-Flash.Q4_K_M.gguf \
-c 8192 \
--temp 1.0 \
--top-p 0.95 \
-p "User: Write a Python script to calculate Fibonacci numbers.\nAssistant:" \
-cnvServer Example
./llama-server -m GLM-4.7-Flash.Q4_K_M.gguf \
--port 8080 \
--host 0.0.0.0 \
-c 16384 \
-ngl 99