Text Generation
Transformers
GGUF
Safetensors
qwen3
dflash
dflash2
speculative-decoding
block-diffusion
draft-model
sglang
text-generation-inference
conversational
Instructions to use Anbeeld/GLM-5.3-Flash-DFlash2-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Anbeeld/GLM-5.3-Flash-DFlash2-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Anbeeld/GLM-5.3-Flash-DFlash2-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Anbeeld/GLM-5.3-Flash-DFlash2-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Anbeeld/GLM-5.3-Flash-DFlash2-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Anbeeld/GLM-5.3-Flash-DFlash2-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Anbeeld/GLM-5.3-Flash-DFlash2-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Anbeeld/GLM-5.3-Flash-DFlash2-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M
- SGLang
How to use Anbeeld/GLM-5.3-Flash-DFlash2-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Anbeeld/GLM-5.3-Flash-DFlash2-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Anbeeld/GLM-5.3-Flash-DFlash2-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Anbeeld/GLM-5.3-Flash-DFlash2-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Anbeeld/GLM-5.3-Flash-DFlash2-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use Anbeeld/GLM-5.3-Flash-DFlash2-GGUF with Ollama:
ollama run hf.co/Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use Anbeeld/GLM-5.3-Flash-DFlash2-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Anbeeld/GLM-5.3-Flash-DFlash2-GGUF with Docker Model Runner:
docker model run hf.co/Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M
- Lemonade
How to use Anbeeld/GLM-5.3-Flash-DFlash2-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.GLM-5.3-Flash-DFlash2-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Anbeeld/GLM-5.3-Flash-DFlash2-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Anbeeld/GLM-5.3-Flash-DFlash2-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "Anbeeld/GLM-5.3-Flash-DFlash2-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Add GLM5.3 Flash DFlash2 GGUF quantizations
Browse files- .gitattributes +7 -0
- GLM-5.3-Flash-DFlash2-Q2_K.gguf +3 -0
- GLM-5.3-Flash-DFlash2-Q3_K_M.gguf +3 -0
- GLM-5.3-Flash-DFlash2-Q4_K_M.gguf +3 -0
- GLM-5.3-Flash-DFlash2-Q5_K_M.gguf +3 -0
- GLM-5.3-Flash-DFlash2-Q6_K.gguf +3 -0
- GLM-5.3-Flash-DFlash2-Q8_0.gguf +3 -0
- GLM-5.3-Flash-DFlash2-bf16.gguf +3 -0
- README.md +23 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,10 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
GLM-5.3-Flash-DFlash2-bf16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
GLM-5.3-Flash-DFlash2-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
GLM-5.3-Flash-DFlash2-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
GLM-5.3-Flash-DFlash2-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
GLM-5.3-Flash-DFlash2-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
GLM-5.3-Flash-DFlash2-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
GLM-5.3-Flash-DFlash2-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
GLM-5.3-Flash-DFlash2-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:571463bc3d2d59cc28c1ba02f1e35ac08b79a47fa07dda06376247217f31597b
|
| 3 |
+
size 433474464
|
GLM-5.3-Flash-DFlash2-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d6d50e5638d0d2f4ceac92d91e4c25ce62fe1465f8713cd6d3ad421da30f3af
|
| 3 |
+
size 561794976
|
GLM-5.3-Flash-DFlash2-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f4158ffb805b26c4fe439669c2009908a80ea89e1576ecea4d03eaded18f017c
|
| 3 |
+
size 697017248
|
GLM-5.3-Flash-DFlash2-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51d38d51e05b1184b40f3ee026dcff3fe33b72f37b6f1c198f34441f85a0f929
|
| 3 |
+
size 829744032
|
GLM-5.3-Flash-DFlash2-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f399c8641195046502ed77c676edeec9e716d1968414e1fef11e95dd0a6c6bec
|
| 3 |
+
size 970766240
|
GLM-5.3-Flash-DFlash2-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0af40871f001e624ea0fb766495405bf0d68232435a63cb00ced97e77a4387aa
|
| 3 |
+
size 1254335392
|
GLM-5.3-Flash-DFlash2-bf16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4817916e38716dc11e482f7937af6502fd1b321e3836944b61b689b450fbb2a
|
| 3 |
+
size 2352022432
|
README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: incoai/GLM-5.3-Flash-DFlash2
|
| 3 |
+
tags:
|
| 4 |
+
- transformers
|
| 5 |
+
- safetensors
|
| 6 |
+
- qwen3
|
| 7 |
+
- dflash
|
| 8 |
+
- dflash2
|
| 9 |
+
- speculative-decoding
|
| 10 |
+
- block-diffusion
|
| 11 |
+
- draft-model
|
| 12 |
+
- sglang
|
| 13 |
+
- text-generation
|
| 14 |
+
- base_model:zai-org/GLM-5.3-Flash
|
| 15 |
+
- base_model:finetune:zai-org/GLM-5.3-Flash
|
| 16 |
+
- license:cc-by-nc-nd-4.0
|
| 17 |
+
- text-generation-inference
|
| 18 |
+
- region:us
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
**GLM 5.3 Flash DFlash2 GGUF**
|
| 22 |
+
|
| 23 |
+
llama.cpp quantizations of [**Inco AI DFlash2 draft model**](https://huggingface.co/incoai/GLM-5.3-Flash-DFlash2) for [**GLM 5.3 Flash**](https://huggingface.co/zai-org/GLM-5.3-Flash).
|