Instructions to use LaniakeaPH/GLM-5.2-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use LaniakeaPH/GLM-5.2-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 LaniakeaPH/GLM-5.2-GGUF:UD-Q4_K_M # Run inference directly in the terminal: llama cli -hf LaniakeaPH/GLM-5.2-GGUF:UD-Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf LaniakeaPH/GLM-5.2-GGUF:UD-Q4_K_M # Run inference directly in the terminal: llama cli -hf LaniakeaPH/GLM-5.2-GGUF:UD-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 LaniakeaPH/GLM-5.2-GGUF:UD-Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf LaniakeaPH/GLM-5.2-GGUF:UD-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 LaniakeaPH/GLM-5.2-GGUF:UD-Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf LaniakeaPH/GLM-5.2-GGUF:UD-Q4_K_M
Use Docker
docker model run hf.co/LaniakeaPH/GLM-5.2-GGUF:UD-Q4_K_M
- LM Studio
- Jan
- vLLM
How to use LaniakeaPH/GLM-5.2-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "LaniakeaPH/GLM-5.2-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": "LaniakeaPH/GLM-5.2-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/LaniakeaPH/GLM-5.2-GGUF:UD-Q4_K_M
- Ollama
How to use LaniakeaPH/GLM-5.2-GGUF with Ollama:
ollama run hf.co/LaniakeaPH/GLM-5.2-GGUF:UD-Q4_K_M
- Unsloth Studio
How to use LaniakeaPH/GLM-5.2-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for LaniakeaPH/GLM-5.2-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for LaniakeaPH/GLM-5.2-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for LaniakeaPH/GLM-5.2-GGUF to start chatting
- Pi
How to use LaniakeaPH/GLM-5.2-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf LaniakeaPH/GLM-5.2-GGUF:UD-Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "LaniakeaPH/GLM-5.2-GGUF:UD-Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use LaniakeaPH/GLM-5.2-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf LaniakeaPH/GLM-5.2-GGUF:UD-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 "LaniakeaPH/GLM-5.2-GGUF:UD-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"
- Docker Model Runner
How to use LaniakeaPH/GLM-5.2-GGUF with Docker Model Runner:
docker model run hf.co/LaniakeaPH/GLM-5.2-GGUF:UD-Q4_K_M
- Lemonade
How to use LaniakeaPH/GLM-5.2-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull LaniakeaPH/GLM-5.2-GGUF:UD-Q4_K_M
Run and chat with the model
lemonade run user.GLM-5.2-GGUF-UD-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use LaniakeaPH/GLM-5.2-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 LaniakeaPH/GLM-5.2-GGUF:UD-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 LaniakeaPH/GLM-5.2-GGUF:UD-Q4_K_M
Run Hermes
hermes
- Atomic Chat
Commit ·
bb02b2b
0
Parent(s):
Duplicate from unsloth/GLM-5.2-GGUF
Browse filesCo-authored-by: Daniel (Unsloth) <danielhanchen@users.noreply.huggingface.co>
This view is limited to 50 files because it contains too many changes. See raw diff
- .gitattributes +286 -0
- BF16/GLM-5.2-BF16-00001-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00002-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00003-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00004-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00005-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00006-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00007-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00008-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00009-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00010-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00011-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00012-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00013-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00014-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00015-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00016-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00017-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00018-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00019-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00020-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00021-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00022-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00023-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00024-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00025-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00026-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00027-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00028-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00029-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00030-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00031-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00032-of-00033.gguf +3 -0
- BF16/GLM-5.2-BF16-00033-of-00033.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00001-of-00017.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00002-of-00017.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00003-of-00017.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00004-of-00017.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00005-of-00017.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00006-of-00017.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00007-of-00017.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00008-of-00017.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00009-of-00017.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00010-of-00017.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00011-of-00017.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00012-of-00017.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00013-of-00017.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00014-of-00017.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00015-of-00017.gguf +3 -0
- Q8_0/GLM-5.2-Q8_0-00016-of-00017.gguf +3 -0
.gitattributes
ADDED
|
@@ -0,0 +1,286 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz 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 |
+
Q8_0/GLM-5.2-Q8_0-00001-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Q8_0/GLM-5.2-Q8_0-00002-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Q8_0/GLM-5.2-Q8_0-00003-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Q8_0/GLM-5.2-Q8_0-00004-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Q8_0/GLM-5.2-Q8_0-00005-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Q8_0/GLM-5.2-Q8_0-00006-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Q8_0/GLM-5.2-Q8_0-00007-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Q8_0/GLM-5.2-Q8_0-00008-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Q8_0/GLM-5.2-Q8_0-00009-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Q8_0/GLM-5.2-Q8_0-00010-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Q8_0/GLM-5.2-Q8_0-00011-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Q8_0/GLM-5.2-Q8_0-00012-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Q8_0/GLM-5.2-Q8_0-00013-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Q8_0/GLM-5.2-Q8_0-00014-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Q8_0/GLM-5.2-Q8_0-00015-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Q8_0/GLM-5.2-Q8_0-00016-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Q8_0/GLM-5.2-Q8_0-00017-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
BF16/GLM-5.2-BF16-00002-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
BF16/GLM-5.2-BF16-00005-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
BF16/GLM-5.2-BF16-00003-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
BF16/GLM-5.2-BF16-00006-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
BF16/GLM-5.2-BF16-00004-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
BF16/GLM-5.2-BF16-00001-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
BF16/GLM-5.2-BF16-00007-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
BF16/GLM-5.2-BF16-00008-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
BF16/GLM-5.2-BF16-00009-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
BF16/GLM-5.2-BF16-00010-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
BF16/GLM-5.2-BF16-00011-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
BF16/GLM-5.2-BF16-00012-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
BF16/GLM-5.2-BF16-00013-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
BF16/GLM-5.2-BF16-00015-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
BF16/GLM-5.2-BF16-00014-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 68 |
+
BF16/GLM-5.2-BF16-00016-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 69 |
+
BF16/GLM-5.2-BF16-00017-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 70 |
+
BF16/GLM-5.2-BF16-00018-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 71 |
+
BF16/GLM-5.2-BF16-00019-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 72 |
+
BF16/GLM-5.2-BF16-00020-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 73 |
+
BF16/GLM-5.2-BF16-00021-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 74 |
+
BF16/GLM-5.2-BF16-00022-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 75 |
+
BF16/GLM-5.2-BF16-00023-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 76 |
+
BF16/GLM-5.2-BF16-00024-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 77 |
+
BF16/GLM-5.2-BF16-00025-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 78 |
+
BF16/GLM-5.2-BF16-00026-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 79 |
+
BF16/GLM-5.2-BF16-00027-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 80 |
+
BF16/GLM-5.2-BF16-00028-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 81 |
+
BF16/GLM-5.2-BF16-00029-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 82 |
+
BF16/GLM-5.2-BF16-00030-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 83 |
+
BF16/GLM-5.2-BF16-00031-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 84 |
+
BF16/GLM-5.2-BF16-00032-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 85 |
+
BF16/GLM-5.2-BF16-00033-of-00033.gguf filter=lfs diff=lfs merge=lfs -text
|
| 86 |
+
UD-IQ1_M/GLM-5.2-UD-IQ1_M-00001-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 87 |
+
UD-IQ1_M/GLM-5.2-UD-IQ1_M-00002-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 88 |
+
UD-IQ1_M/GLM-5.2-UD-IQ1_M-00003-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 89 |
+
UD-IQ1_M/GLM-5.2-UD-IQ1_M-00004-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 90 |
+
UD-IQ1_M/GLM-5.2-UD-IQ1_M-00005-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 91 |
+
UD-IQ1_M/GLM-5.2-UD-IQ1_M-00006-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 92 |
+
UD-Q2_K_XL/GLM-5.2-UD-Q2_K_XL-00001-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 93 |
+
UD-Q2_K_XL/GLM-5.2-UD-Q2_K_XL-00002-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 94 |
+
UD-Q2_K_XL/GLM-5.2-UD-Q2_K_XL-00003-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 95 |
+
UD-Q2_K_XL/GLM-5.2-UD-Q2_K_XL-00004-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 96 |
+
UD-Q2_K_XL/GLM-5.2-UD-Q2_K_XL-00005-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 97 |
+
UD-Q2_K_XL/GLM-5.2-UD-Q2_K_XL-00006-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 98 |
+
UD-Q2_K_XL/GLM-5.2-UD-Q2_K_XL-00007-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 99 |
+
UD-Q3_K_XL/GLM-5.2-UD-Q3_K_XL-00001-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 100 |
+
UD-Q3_K_XL/GLM-5.2-UD-Q3_K_XL-00002-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 101 |
+
UD-Q3_K_XL/GLM-5.2-UD-Q3_K_XL-00003-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 102 |
+
UD-Q3_K_XL/GLM-5.2-UD-Q3_K_XL-00004-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 103 |
+
UD-Q3_K_XL/GLM-5.2-UD-Q3_K_XL-00005-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 104 |
+
UD-Q3_K_XL/GLM-5.2-UD-Q3_K_XL-00006-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 105 |
+
UD-Q3_K_XL/GLM-5.2-UD-Q3_K_XL-00007-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 106 |
+
UD-Q3_K_XL/GLM-5.2-UD-Q3_K_XL-00008-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 107 |
+
UD-Q3_K_XL/GLM-5.2-UD-Q3_K_XL-00009-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 108 |
+
UD-Q4_K_XL/GLM-5.2-UD-Q4_K_XL-00001-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 109 |
+
UD-Q4_K_XL/GLM-5.2-UD-Q4_K_XL-00002-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 110 |
+
UD-Q4_K_XL/GLM-5.2-UD-Q4_K_XL-00003-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 111 |
+
UD-Q4_K_XL/GLM-5.2-UD-Q4_K_XL-00004-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 112 |
+
UD-Q4_K_XL/GLM-5.2-UD-Q4_K_XL-00005-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 113 |
+
UD-Q4_K_XL/GLM-5.2-UD-Q4_K_XL-00006-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 114 |
+
UD-Q4_K_XL/GLM-5.2-UD-Q4_K_XL-00007-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 115 |
+
UD-Q4_K_XL/GLM-5.2-UD-Q4_K_XL-00008-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 116 |
+
UD-Q4_K_XL/GLM-5.2-UD-Q4_K_XL-00009-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 117 |
+
UD-Q4_K_XL/GLM-5.2-UD-Q4_K_XL-00010-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 118 |
+
UD-Q4_K_XL/GLM-5.2-UD-Q4_K_XL-00011-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 119 |
+
UD-IQ3_XXS/GLM-5.2-UD-IQ3_XXS-00001-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 120 |
+
UD-IQ3_XXS/GLM-5.2-UD-IQ3_XXS-00002-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 121 |
+
UD-IQ3_XXS/GLM-5.2-UD-IQ3_XXS-00003-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 122 |
+
UD-IQ3_XXS/GLM-5.2-UD-IQ3_XXS-00004-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 123 |
+
UD-IQ3_XXS/GLM-5.2-UD-IQ3_XXS-00005-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 124 |
+
UD-IQ3_XXS/GLM-5.2-UD-IQ3_XXS-00006-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 125 |
+
UD-IQ3_XXS/GLM-5.2-UD-IQ3_XXS-00007-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 126 |
+
UD-IQ1_S/GLM-5.2-UD-IQ1_S-00001-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 127 |
+
UD-IQ1_S/GLM-5.2-UD-IQ1_S-00002-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 128 |
+
UD-IQ1_S/GLM-5.2-UD-IQ1_S-00003-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 129 |
+
UD-IQ1_S/GLM-5.2-UD-IQ1_S-00004-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 130 |
+
UD-IQ1_S/GLM-5.2-UD-IQ1_S-00005-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 131 |
+
UD-IQ1_S/GLM-5.2-UD-IQ1_S-00006-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 132 |
+
UD-IQ2_XXS/GLM-5.2-UD-IQ2_XXS-00001-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 133 |
+
UD-IQ2_XXS/GLM-5.2-UD-IQ2_XXS-00002-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 134 |
+
UD-IQ2_XXS/GLM-5.2-UD-IQ2_XXS-00003-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 135 |
+
UD-IQ2_XXS/GLM-5.2-UD-IQ2_XXS-00004-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 136 |
+
UD-IQ2_XXS/GLM-5.2-UD-IQ2_XXS-00005-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 137 |
+
UD-IQ2_XXS/GLM-5.2-UD-IQ2_XXS-00006-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 138 |
+
UD-IQ4_XS/GLM-5.2-UD-IQ4_XS-00001-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 139 |
+
UD-IQ4_XS/GLM-5.2-UD-IQ4_XS-00002-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 140 |
+
UD-IQ4_XS/GLM-5.2-UD-IQ4_XS-00003-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 141 |
+
UD-IQ4_XS/GLM-5.2-UD-IQ4_XS-00004-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 142 |
+
UD-IQ4_XS/GLM-5.2-UD-IQ4_XS-00005-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 143 |
+
UD-IQ4_XS/GLM-5.2-UD-IQ4_XS-00006-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 144 |
+
UD-IQ4_XS/GLM-5.2-UD-IQ4_XS-00007-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 145 |
+
UD-IQ4_XS/GLM-5.2-UD-IQ4_XS-00008-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 146 |
+
UD-IQ4_XS/GLM-5.2-UD-IQ4_XS-00009-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 147 |
+
UD-Q5_K_XL/GLM-5.2-UD-Q5_K_XL-00001-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 148 |
+
UD-Q5_K_XL/GLM-5.2-UD-Q5_K_XL-00002-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 149 |
+
UD-Q5_K_XL/GLM-5.2-UD-Q5_K_XL-00003-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 150 |
+
UD-Q5_K_XL/GLM-5.2-UD-Q5_K_XL-00004-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 151 |
+
UD-Q5_K_XL/GLM-5.2-UD-Q5_K_XL-00005-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 152 |
+
UD-Q5_K_XL/GLM-5.2-UD-Q5_K_XL-00006-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 153 |
+
UD-Q5_K_XL/GLM-5.2-UD-Q5_K_XL-00007-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 154 |
+
UD-Q5_K_XL/GLM-5.2-UD-Q5_K_XL-00008-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 155 |
+
UD-Q5_K_XL/GLM-5.2-UD-Q5_K_XL-00009-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 156 |
+
UD-Q5_K_XL/GLM-5.2-UD-Q5_K_XL-00010-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 157 |
+
UD-Q5_K_XL/GLM-5.2-UD-Q5_K_XL-00011-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 158 |
+
UD-Q5_K_XL/GLM-5.2-UD-Q5_K_XL-00012-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 159 |
+
UD-Q5_K_XL/GLM-5.2-UD-Q5_K_XL-00013-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 160 |
+
UD-Q3_K_M/GLM-5.2-UD-Q3_K_M-00001-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 161 |
+
UD-Q3_K_M/GLM-5.2-UD-Q3_K_M-00002-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 162 |
+
UD-Q3_K_M/GLM-5.2-UD-Q3_K_M-00003-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 163 |
+
UD-Q3_K_M/GLM-5.2-UD-Q3_K_M-00004-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 164 |
+
UD-Q3_K_M/GLM-5.2-UD-Q3_K_M-00005-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 165 |
+
UD-Q3_K_M/GLM-5.2-UD-Q3_K_M-00006-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 166 |
+
UD-Q3_K_M/GLM-5.2-UD-Q3_K_M-00007-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 167 |
+
UD-Q3_K_M/GLM-5.2-UD-Q3_K_M-00008-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 168 |
+
UD-Q3_K_M/GLM-5.2-UD-Q3_K_M-00009-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 169 |
+
UD-IQ2_M/GLM-5.2-UD-IQ2_M-00001-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 170 |
+
UD-IQ2_M/GLM-5.2-UD-IQ2_M-00002-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 171 |
+
UD-IQ2_M/GLM-5.2-UD-IQ2_M-00003-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 172 |
+
UD-IQ2_M/GLM-5.2-UD-IQ2_M-00004-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 173 |
+
UD-IQ2_M/GLM-5.2-UD-IQ2_M-00005-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 174 |
+
UD-IQ2_M/GLM-5.2-UD-IQ2_M-00006-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 175 |
+
UD-IQ3_S/GLM-5.2-UD-IQ3_S-00001-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 176 |
+
UD-IQ3_S/GLM-5.2-UD-IQ3_S-00002-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 177 |
+
UD-IQ3_S/GLM-5.2-UD-IQ3_S-00003-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 178 |
+
UD-IQ3_S/GLM-5.2-UD-IQ3_S-00004-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 179 |
+
UD-IQ3_S/GLM-5.2-UD-IQ3_S-00005-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 180 |
+
UD-IQ3_S/GLM-5.2-UD-IQ3_S-00006-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 181 |
+
UD-IQ3_S/GLM-5.2-UD-IQ3_S-00007-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 182 |
+
UD-IQ3_S/GLM-5.2-UD-IQ3_S-00008-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 183 |
+
UD-IQ4_NL/GLM-5.2-UD-IQ4_NL-00001-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 184 |
+
UD-IQ4_NL/GLM-5.2-UD-IQ4_NL-00002-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 185 |
+
UD-IQ4_NL/GLM-5.2-UD-IQ4_NL-00003-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 186 |
+
UD-IQ4_NL/GLM-5.2-UD-IQ4_NL-00004-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 187 |
+
UD-IQ4_NL/GLM-5.2-UD-IQ4_NL-00005-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 188 |
+
UD-IQ4_NL/GLM-5.2-UD-IQ4_NL-00006-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 189 |
+
UD-IQ4_NL/GLM-5.2-UD-IQ4_NL-00007-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 190 |
+
UD-IQ4_NL/GLM-5.2-UD-IQ4_NL-00008-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 191 |
+
UD-IQ4_NL/GLM-5.2-UD-IQ4_NL-00009-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 192 |
+
UD-Q5_K_M/GLM-5.2-UD-Q5_K_M-00001-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 193 |
+
UD-Q5_K_M/GLM-5.2-UD-Q5_K_M-00002-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 194 |
+
UD-Q5_K_M/GLM-5.2-UD-Q5_K_M-00003-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 195 |
+
UD-Q5_K_M/GLM-5.2-UD-Q5_K_M-00004-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 196 |
+
UD-Q5_K_M/GLM-5.2-UD-Q5_K_M-00005-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 197 |
+
UD-Q5_K_M/GLM-5.2-UD-Q5_K_M-00006-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 198 |
+
UD-Q5_K_M/GLM-5.2-UD-Q5_K_M-00007-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 199 |
+
UD-Q5_K_M/GLM-5.2-UD-Q5_K_M-00008-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 200 |
+
UD-Q5_K_M/GLM-5.2-UD-Q5_K_M-00009-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 201 |
+
UD-Q5_K_M/GLM-5.2-UD-Q5_K_M-00010-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 202 |
+
UD-Q5_K_M/GLM-5.2-UD-Q5_K_M-00011-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 203 |
+
UD-Q5_K_M/GLM-5.2-UD-Q5_K_M-00012-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 204 |
+
UD-Q5_K_M/GLM-5.2-UD-Q5_K_M-00013-of-00013.gguf filter=lfs diff=lfs merge=lfs -text
|
| 205 |
+
UD-Q5_K_S/GLM-5.2-UD-Q5_K_S-00001-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 206 |
+
UD-Q5_K_S/GLM-5.2-UD-Q5_K_S-00002-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 207 |
+
UD-Q5_K_S/GLM-5.2-UD-Q5_K_S-00003-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 208 |
+
UD-Q5_K_S/GLM-5.2-UD-Q5_K_S-00004-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 209 |
+
UD-Q5_K_S/GLM-5.2-UD-Q5_K_S-00005-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 210 |
+
UD-Q5_K_S/GLM-5.2-UD-Q5_K_S-00006-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 211 |
+
UD-Q5_K_S/GLM-5.2-UD-Q5_K_S-00007-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 212 |
+
UD-Q5_K_S/GLM-5.2-UD-Q5_K_S-00008-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 213 |
+
UD-Q5_K_S/GLM-5.2-UD-Q5_K_S-00009-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 214 |
+
UD-Q5_K_S/GLM-5.2-UD-Q5_K_S-00010-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 215 |
+
UD-Q5_K_S/GLM-5.2-UD-Q5_K_S-00011-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 216 |
+
UD-Q5_K_S/GLM-5.2-UD-Q5_K_S-00012-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 217 |
+
UD-Q4_K_M/GLM-5.2-UD-Q4_K_M-00001-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 218 |
+
UD-Q4_K_M/GLM-5.2-UD-Q4_K_M-00002-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 219 |
+
UD-Q4_K_M/GLM-5.2-UD-Q4_K_M-00003-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 220 |
+
UD-Q4_K_M/GLM-5.2-UD-Q4_K_M-00004-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 221 |
+
UD-Q4_K_M/GLM-5.2-UD-Q4_K_M-00005-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 222 |
+
UD-Q4_K_M/GLM-5.2-UD-Q4_K_M-00006-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 223 |
+
UD-Q4_K_M/GLM-5.2-UD-Q4_K_M-00007-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 224 |
+
UD-Q4_K_M/GLM-5.2-UD-Q4_K_M-00008-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 225 |
+
UD-Q4_K_M/GLM-5.2-UD-Q4_K_M-00009-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 226 |
+
UD-Q4_K_M/GLM-5.2-UD-Q4_K_M-00010-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 227 |
+
UD-Q4_K_M/GLM-5.2-UD-Q4_K_M-00011-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 228 |
+
UD-Q4_K_S/GLM-5.2-UD-Q4_K_S-00001-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 229 |
+
UD-Q4_K_S/GLM-5.2-UD-Q4_K_S-00002-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 230 |
+
UD-Q4_K_S/GLM-5.2-UD-Q4_K_S-00003-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 231 |
+
UD-Q4_K_S/GLM-5.2-UD-Q4_K_S-00004-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 232 |
+
UD-Q4_K_S/GLM-5.2-UD-Q4_K_S-00005-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 233 |
+
UD-Q4_K_S/GLM-5.2-UD-Q4_K_S-00006-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 234 |
+
UD-Q4_K_S/GLM-5.2-UD-Q4_K_S-00007-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 235 |
+
UD-Q4_K_S/GLM-5.2-UD-Q4_K_S-00008-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 236 |
+
UD-Q4_K_S/GLM-5.2-UD-Q4_K_S-00009-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 237 |
+
UD-Q4_K_S/GLM-5.2-UD-Q4_K_S-00010-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 238 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00001-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 239 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00002-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 240 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00003-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 241 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00004-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 242 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00005-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 243 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00006-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 244 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00007-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 245 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00008-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 246 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00009-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 247 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00010-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 248 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00011-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 249 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00012-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 250 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00013-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 251 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00014-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 252 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00015-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 253 |
+
UD-Q6_K_XL/GLM-5.2-UD-Q6_K_XL-00016-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 254 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00001-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 255 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00002-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 256 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00003-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 257 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00004-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 258 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00005-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 259 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00006-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 260 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00007-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 261 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00008-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 262 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00009-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 263 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00010-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 264 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00011-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 265 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00012-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 266 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00013-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 267 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00014-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 268 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00015-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 269 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00016-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 270 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00017-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 271 |
+
UD-Q8_K_XL/GLM-5.2-UD-Q8_K_XL-00018-of-00018.gguf filter=lfs diff=lfs merge=lfs -text
|
| 272 |
+
UD-Q6_K/GLM-5.2-UD-Q6_K-00001-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 273 |
+
UD-Q6_K/GLM-5.2-UD-Q6_K-00002-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 274 |
+
UD-Q6_K/GLM-5.2-UD-Q6_K-00003-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 275 |
+
UD-Q6_K/GLM-5.2-UD-Q6_K-00004-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 276 |
+
UD-Q6_K/GLM-5.2-UD-Q6_K-00005-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 277 |
+
UD-Q6_K/GLM-5.2-UD-Q6_K-00006-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 278 |
+
UD-Q6_K/GLM-5.2-UD-Q6_K-00007-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 279 |
+
UD-Q6_K/GLM-5.2-UD-Q6_K-00008-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 280 |
+
UD-Q6_K/GLM-5.2-UD-Q6_K-00009-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 281 |
+
UD-Q6_K/GLM-5.2-UD-Q6_K-00010-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 282 |
+
UD-Q6_K/GLM-5.2-UD-Q6_K-00011-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 283 |
+
UD-Q6_K/GLM-5.2-UD-Q6_K-00012-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 284 |
+
UD-Q6_K/GLM-5.2-UD-Q6_K-00013-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 285 |
+
UD-Q6_K/GLM-5.2-UD-Q6_K-00014-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 286 |
+
imatrix_unsloth.gguf_file filter=lfs diff=lfs merge=lfs -text
|
BF16/GLM-5.2-BF16-00001-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c5ddaa0fd80caef31d10c1b96ee982e3fb2abd150a3413797a1b37c9de33f11
|
| 3 |
+
size 44974080544
|
BF16/GLM-5.2-BF16-00002-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4fee983cbc0224f06b032694a968e9c1c2b9c00c5977e2a243efdc3d43bf1962
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.2-BF16-00003-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be743351e47c9a084fd065b83fef8969a082ceb0bad5ec12a0e2d5ad01cfda81
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.2-BF16-00004-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:40272b7b58ba56c5a49329d0d1dafc0b2eafc77564591db7e699a53fdac87088
|
| 3 |
+
size 46408197792
|
BF16/GLM-5.2-BF16-00005-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f3449cfe80b651cb3e6277714d1fbd6fc059db53c1841e7ae3a2f0e783e21e3
|
| 3 |
+
size 46779392512
|
BF16/GLM-5.2-BF16-00006-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:22d0dbe4dea0dafe413b0d0f9335595a0d9b83cef96b2997dd38ef4c4ba8af6f
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.2-BF16-00007-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1aaf935b5b6a7d336cf203a39fec1a9e8c2fd10a43dfb5d445e4d36b171d35d1
|
| 3 |
+
size 46332826016
|
BF16/GLM-5.2-BF16-00008-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d64c844afd7f638d0d0c83a416e33674f04b286fce0e09bea07aa7b0762e34d0
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.2-BF16-00009-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a7fd44066c3966b59d2ba8e998b90b3b2f2e8d945f7950ed0f541a55997d4d4
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.2-BF16-00010-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:02ffddd2bafb8d801e47ea85513d328b18ed3cbd63acb95d870a85f970c1d1b5
|
| 3 |
+
size 46408197792
|
BF16/GLM-5.2-BF16-00011-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a2773f2fd076592c238f1a4a4af0dc3fbbbb9cb7068749bdc5666d434442e1ac
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.2-BF16-00012-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6de08d8c2f62b343cc7d577951c4d1a98a56e18538fe554252ed504700522985
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.2-BF16-00013-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:021621fa0d7d36517f58a18f619ac0a16a45c4f8d362420c804dba82ac6f4359
|
| 3 |
+
size 46408197792
|
BF16/GLM-5.2-BF16-00014-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f94ca0e339707a248f77aef4ce4cae49536a9fd126ee6e2a926b5aa7369921f
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.2-BF16-00015-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e9a61e362c0814a421c52d701cb7ad5e2759a56e3637d048fa330e54c00e29c0
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.2-BF16-00016-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:445af48926edbbe07c50c60aeb6fee7bc61304adfd5465ee51b31ea620b4d43d
|
| 3 |
+
size 46408197792
|
BF16/GLM-5.2-BF16-00017-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ceabd9b63d7ad269853e5157fb184a323e90f312923d3f0fedf7b83659e1de25
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.2-BF16-00018-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e0d1381d089ebf063cb29a71c4280c283e5e5611116311d0ac7b4043d3a61ea7
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.2-BF16-00019-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f90f958d3da370b6565de794de29d9f51864b1c18ff8f1446339fd6aa04fd70
|
| 3 |
+
size 46408197760
|
BF16/GLM-5.2-BF16-00020-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:abf6cb86ad8348c5fc68f9e5b2881756083162833b85635ad8a80bd4c68050c4
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.2-BF16-00021-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3aea56006856790a92268c8151be7d7bd548bd48bdb66d3513a56ead266e096b
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.2-BF16-00022-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae15732104d3364f71262ceb81965201b682e4192a60182ed09ea18e879f7c96
|
| 3 |
+
size 46332826016
|
BF16/GLM-5.2-BF16-00023-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:051b714be1700f458751d64c041b7642232392820ff405802c3d098ed1c1ac8a
|
| 3 |
+
size 45996308192
|
BF16/GLM-5.2-BF16-00024-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:447eca36139945c45c7d2f408f8acb99f3f95993febb39252ede639d4457f148
|
| 3 |
+
size 45996308160
|
BF16/GLM-5.2-BF16-00025-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f4b663351f131ee7bae9787ac18de822fa5e975f3a51d42a7bb11bc985bd7ddf
|
| 3 |
+
size 46408197792
|
BF16/GLM-5.2-BF16-00026-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5830fa329f46d3a44ad5d9c0b038a0104b3cb1e47b158f59407747ed7ff7d713
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.2-BF16-00027-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1365a227d9a2f361a6dbdd49d3b2628465d8d6b247b94f3261ce447214a4640e
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.2-BF16-00028-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1734989ad370ec0d3114302f57720125aed75b7f68c210b6583fc0b9deef740
|
| 3 |
+
size 46332825984
|
BF16/GLM-5.2-BF16-00029-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5467d86c3c3257b4c094e4ae1c4bb428922f88a688ceac6c03e811aaf3dd59c8
|
| 3 |
+
size 45996308224
|
BF16/GLM-5.2-BF16-00030-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:91960f9dfce7e81a1d9e42566a816e2c72b6d895f587603ce7f0a8b5d2eb2c2f
|
| 3 |
+
size 45920936416
|
BF16/GLM-5.2-BF16-00031-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ac1b708f51bcfc995e08f73e4be87170b048c418cbb89807486e9ceef8982ea
|
| 3 |
+
size 46408197792
|
BF16/GLM-5.2-BF16-00032-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b8b9492eb2b90ebc00de0ab005fa35b07f180f240279d11ef36a34f21619ce0
|
| 3 |
+
size 46091143200
|
BF16/GLM-5.2-BF16-00033-of-00033.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ef960fc2b20a6a0e262c0fa68f598dd9f412a36deddc1e133083107b5ffb206
|
| 3 |
+
size 33036034336
|
Q8_0/GLM-5.2-Q8_0-00001-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d04fe0b6dda2b1acc8a2e47b20a249c6c8e5db99f3a64af1df84a1297167811f
|
| 3 |
+
size 48305484672
|
Q8_0/GLM-5.2-Q8_0-00002-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e872a77c3a56d93536531c46f86dbc4bc04e82903cc2b9fd841a5ff19888e514
|
| 3 |
+
size 49105526048
|
Q8_0/GLM-5.2-Q8_0-00003-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be4812dac3a6fd7b55e0d0285ece06269a523599f435c16141e176eedee22ae8
|
| 3 |
+
size 49299773536
|
Q8_0/GLM-5.2-Q8_0-00004-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ac8eb3c5a802a6e2dec70015fbd1fe3a283b5ec9f57987d39be11d2adec8b33
|
| 3 |
+
size 49065113632
|
Q8_0/GLM-5.2-Q8_0-00005-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c314a85181beeaaae11f8f01883e7bae86997a60ed2ed10b9e146fc5ce15e9bb
|
| 3 |
+
size 49065113600
|
Q8_0/GLM-5.2-Q8_0-00006-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6f0ad6bc0a825ed2b8b818ab4c082afee5207242c3be08f4d5ff8fbba98b4770
|
| 3 |
+
size 48843319392
|
Q8_0/GLM-5.2-Q8_0-00007-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cafd62c56e76dcf01ca3eb12177feefcc845eb3ebe62ceec3e56468552a7c08c
|
| 3 |
+
size 49065113600
|
Q8_0/GLM-5.2-Q8_0-00008-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b3a9a428aae5cc1355e3c63857e2e6a0e62ad847e0a9e4de1fce7c9f8590966
|
| 3 |
+
size 49065113632
|
Q8_0/GLM-5.2-Q8_0-00009-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bddf947ee4a3c6162e19d6ceb4d155a03d8e7f30a3a00f712181279155015790
|
| 3 |
+
size 48843319392
|
Q8_0/GLM-5.2-Q8_0-00010-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:126c5d66871a1132e122a2edb86ec5d89cccd1beb97efe98043fee657db6515d
|
| 3 |
+
size 49065113600
|
Q8_0/GLM-5.2-Q8_0-00011-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c779af5b3d7d5d151c00fee376105816ce6f4d04df7bc7eb2f167b72879dee5f
|
| 3 |
+
size 49065113632
|
Q8_0/GLM-5.2-Q8_0-00012-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a9f4634cc88e62f27bd8722016f30c61f7f5b646a323accb9105a42e072ac56
|
| 3 |
+
size 48883731776
|
Q8_0/GLM-5.2-Q8_0-00013-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6c7baef1019b559ca90965d3e4da418662b31f9c6d0c535f4a47d1fad29fc8e
|
| 3 |
+
size 49065113632
|
Q8_0/GLM-5.2-Q8_0-00014-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6cb7990749efba16c56faaad4cba9502eebcc47064674e30a0588bdf382117dc
|
| 3 |
+
size 49065113600
|
Q8_0/GLM-5.2-Q8_0-00015-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fbd2056fd1df4c0729835c7e73a9b7837946388c90d1160082ef7b65ddd6823
|
| 3 |
+
size 48843319392
|
Q8_0/GLM-5.2-Q8_0-00016-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d5469b815db12244c40232d7232f1260091530d5eb4c62d1780098f527ac93ab
|
| 3 |
+
size 49155939904
|