Instructions to use Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF", filename="Qwen3.5-27B-GLM5.1-Distill-v1-4A-4BIT-CHAMPION.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-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 Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-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 Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-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 Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-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 Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF with Ollama:
ollama run hf.co/Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF:Q4_K_M
- Unsloth Studio
How to use Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-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 Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-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 Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF to start chatting
- Pi
How to use Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF: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": "Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-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 Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-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 Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-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 "Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-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"
- Docker Model Runner
How to use Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF with Docker Model Runner:
docker model run hf.co/Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF:Q4_K_M
- Lemonade
How to use Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Fredred89/Qwen3.5-27B-GLM5.1-Distill-v1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.5-27B-GLM5.1-Distill-v1-GGUF-Q4_K_M
List all available models
lemonade list
Upload APEX-Quality-v5.tensor_types.txt with huggingface_hub
Browse files
APEX-Quality-v5.tensor_types.txt
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
blk.0.attn_gate.weight=q5_K
|
| 2 |
+
blk.0.ffn_gate.weight=q5_K
|
| 3 |
+
blk.0.ffn_up.weight=q5_K
|
| 4 |
+
blk.0.ssm_alpha.weight=q5_K
|
| 5 |
+
blk.0.ssm_beta.weight=q5_K
|
| 6 |
+
blk.0.ssm_out.weight=q5_K
|
| 7 |
+
blk.1.attn_gate.weight=q5_K
|
| 8 |
+
blk.1.ffn_gate.weight=q5_K
|
| 9 |
+
blk.1.ffn_up.weight=q5_K
|
| 10 |
+
blk.1.ssm_alpha.weight=q5_K
|
| 11 |
+
blk.1.ssm_beta.weight=q5_K
|
| 12 |
+
blk.1.ssm_out.weight=q5_K
|
| 13 |
+
blk.2.attn_gate.weight=q5_K
|
| 14 |
+
blk.2.ffn_gate.weight=q5_K
|
| 15 |
+
blk.2.ffn_up.weight=q5_K
|
| 16 |
+
blk.2.ssm_alpha.weight=q5_K
|
| 17 |
+
blk.2.ssm_beta.weight=q5_K
|
| 18 |
+
blk.2.ssm_out.weight=q5_K
|
| 19 |
+
blk.3.attn_k.weight=q5_K
|
| 20 |
+
blk.3.attn_output.weight=q5_K
|
| 21 |
+
blk.3.attn_q.weight=q5_K
|
| 22 |
+
blk.3.ffn_gate.weight=q5_K
|
| 23 |
+
blk.3.ffn_up.weight=q5_K
|
| 24 |
+
blk.4.attn_gate.weight=q5_K
|
| 25 |
+
blk.4.ffn_gate.weight=q5_K
|
| 26 |
+
blk.4.ffn_up.weight=q5_K
|
| 27 |
+
blk.4.ssm_alpha.weight=q5_K
|
| 28 |
+
blk.4.ssm_beta.weight=q5_K
|
| 29 |
+
blk.4.ssm_out.weight=q5_K
|
| 30 |
+
blk.5.attn_gate.weight=q5_K
|
| 31 |
+
blk.5.ffn_gate.weight=q5_K
|
| 32 |
+
blk.5.ffn_up.weight=q5_K
|
| 33 |
+
blk.5.ssm_alpha.weight=q5_K
|
| 34 |
+
blk.5.ssm_beta.weight=q5_K
|
| 35 |
+
blk.5.ssm_out.weight=q5_K
|
| 36 |
+
blk.56.attn_gate.weight=q5_K
|
| 37 |
+
blk.56.ffn_gate.weight=q5_K
|
| 38 |
+
blk.56.ffn_up.weight=q5_K
|
| 39 |
+
blk.56.ssm_alpha.weight=q5_K
|
| 40 |
+
blk.56.ssm_beta.weight=q5_K
|
| 41 |
+
blk.56.ssm_out.weight=q5_K
|
| 42 |
+
blk.57.attn_gate.weight=q5_K
|
| 43 |
+
blk.57.ffn_gate.weight=q5_K
|
| 44 |
+
blk.57.ffn_up.weight=q5_K
|
| 45 |
+
blk.57.ssm_alpha.weight=q5_K
|
| 46 |
+
blk.57.ssm_beta.weight=q5_K
|
| 47 |
+
blk.57.ssm_out.weight=q5_K
|
| 48 |
+
blk.58.attn_gate.weight=q5_K
|
| 49 |
+
blk.58.ffn_gate.weight=q5_K
|
| 50 |
+
blk.58.ffn_up.weight=q5_K
|
| 51 |
+
blk.58.ssm_alpha.weight=q5_K
|
| 52 |
+
blk.58.ssm_beta.weight=q5_K
|
| 53 |
+
blk.58.ssm_out.weight=q5_K
|
| 54 |
+
blk.59.attn_k.weight=q5_K
|
| 55 |
+
blk.59.attn_output.weight=q5_K
|
| 56 |
+
blk.59.attn_q.weight=q5_K
|
| 57 |
+
blk.59.ffn_gate.weight=q5_K
|
| 58 |
+
blk.59.ffn_up.weight=q5_K
|
| 59 |
+
blk.6.attn_gate.weight=q5_K
|
| 60 |
+
blk.6.ffn_gate.weight=q5_K
|
| 61 |
+
blk.6.ffn_up.weight=q5_K
|
| 62 |
+
blk.6.ssm_alpha.weight=q5_K
|
| 63 |
+
blk.6.ssm_beta.weight=q5_K
|
| 64 |
+
blk.6.ssm_out.weight=q5_K
|
| 65 |
+
blk.60.attn_gate.weight=q5_K
|
| 66 |
+
blk.60.ffn_gate.weight=q5_K
|
| 67 |
+
blk.60.ffn_up.weight=q5_K
|
| 68 |
+
blk.60.ssm_alpha.weight=q5_K
|
| 69 |
+
blk.60.ssm_beta.weight=q5_K
|
| 70 |
+
blk.60.ssm_out.weight=q5_K
|
| 71 |
+
blk.61.attn_gate.weight=q5_K
|
| 72 |
+
blk.61.ffn_gate.weight=q5_K
|
| 73 |
+
blk.61.ffn_up.weight=q5_K
|
| 74 |
+
blk.61.ssm_alpha.weight=q5_K
|
| 75 |
+
blk.61.ssm_beta.weight=q5_K
|
| 76 |
+
blk.61.ssm_out.weight=q5_K
|
| 77 |
+
blk.62.attn_gate.weight=q5_K
|
| 78 |
+
blk.62.ffn_gate.weight=q5_K
|
| 79 |
+
blk.62.ffn_up.weight=q5_K
|
| 80 |
+
blk.62.ssm_alpha.weight=q5_K
|
| 81 |
+
blk.62.ssm_beta.weight=q5_K
|
| 82 |
+
blk.62.ssm_out.weight=q5_K
|
| 83 |
+
blk.63.attn_k.weight=q5_K
|
| 84 |
+
blk.63.attn_output.weight=q5_K
|
| 85 |
+
blk.63.attn_q.weight=q5_K
|
| 86 |
+
blk.63.ffn_gate.weight=q5_K
|
| 87 |
+
blk.63.ffn_up.weight=q5_K
|
| 88 |
+
blk.7.attn_k.weight=q5_K
|
| 89 |
+
blk.7.attn_output.weight=q5_K
|
| 90 |
+
blk.7.attn_q.weight=q5_K
|
| 91 |
+
blk.7.ffn_gate.weight=q5_K
|
| 92 |
+
blk.7.ffn_up.weight=q5_K
|
| 93 |
+
token_embd.weight=q6_K
|