Image-Text-to-Text
GGUF
muse-glimmer
abliterated
quantized
agentic
multimodal
llama.cpp
dflash
experimental
conversational
Instructions to use Blackfrost-AI/Muse-Glimmer-30B-Abliterated-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 Blackfrost-AI/Muse-Glimmer-30B-Abliterated-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 Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Blackfrost-AI/Muse-Glimmer-30B-Abliterated-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 Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Blackfrost-AI/Muse-Glimmer-30B-Abliterated-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 Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Blackfrost-AI/Muse-Glimmer-30B-Abliterated-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 Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Blackfrost-AI/Muse-Glimmer-30B-Abliterated-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": "Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF:Q4_K_M
- Ollama
How to use Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF with Ollama:
ollama run hf.co/Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Blackfrost-AI/Muse-Glimmer-30B-Abliterated-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": "Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF with Docker Model Runner:
docker model run hf.co/Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF:Q4_K_M
- Lemonade
How to use Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Muse-Glimmer-30B-Abliterated-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Blackfrost-AI/Muse-Glimmer-30B-Abliterated-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 Blackfrost-AI/Muse-Glimmer-30B-Abliterated-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 Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Blackfrost-AI/Muse-Glimmer-30B-Abliterated-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Blackfrost-AI/Muse-Glimmer-30B-Abliterated-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 "Blackfrost-AI/Muse-Glimmer-30B-Abliterated-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"
Upload deploy/DEPLOYMENT.md with huggingface_hub
Browse files- deploy/DEPLOYMENT.md +86 -0
deploy/DEPLOYMENT.md
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Muse-Glimmer-30B-Abliterated-GGUF — Deployment Kit
|
| 2 |
+
|
| 3 |
+
Serve the abliterated Muse Glimmer 30B locally with **llama.cpp**, optionally with the
|
| 4 |
+
**DFlash** block-diffusion drafter for ~1.6–3× faster decoding (lossless — identical output).
|
| 5 |
+
|
| 6 |
+
---
|
| 7 |
+
|
| 8 |
+
## 1. Requirements
|
| 9 |
+
|
| 10 |
+
- A recent **llama.cpp** build with CUDA/Metal (DFlash support merged in [ggml-org/llama.cpp#26841](https://github.com/ggml-org/llama.cpp/pull/26841)). Build from `master`.
|
| 11 |
+
- Disk for the quant you pick (Q4_K_M ≈ 16 GB, Q8_0 ≈ 28 GB) + the DFlash drafter (≈ 4.8 GB).
|
| 12 |
+
- A GPU with enough VRAM for the quant, or CPU (slower).
|
| 13 |
+
|
| 14 |
+
## 2. Get the files
|
| 15 |
+
|
| 16 |
+
Text quant (pick one) + the DFlash drafter, from this repo:
|
| 17 |
+
|
| 18 |
+
```bash
|
| 19 |
+
hf download Blackfrost-Research/Muse-Glimmer-30B-Abliterated-GGUF \
|
| 20 |
+
Muse-Glimmer-30B-Abliterated-Q8_0.gguf \
|
| 21 |
+
dflash-Muse-Glimmer-30B-Abliterated-F16.gguf \
|
| 22 |
+
--local-dir ./muse
|
| 23 |
+
# for image input, also grab a projector:
|
| 24 |
+
hf download Blackfrost-Research/Muse-Glimmer-30B-Abliterated-GGUF \
|
| 25 |
+
mmproj-Muse-Glimmer-30B-Abliterated-F16.gguf --local-dir ./muse
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
## 3. Serve
|
| 29 |
+
|
| 30 |
+
**Plain (no speculation):**
|
| 31 |
+
```bash
|
| 32 |
+
llama-server -m ./muse/Muse-Glimmer-30B-Abliterated-Q8_0.gguf \
|
| 33 |
+
-ngl 999 --jinja --host 0.0.0.0 --port 8080 -c 16384 \
|
| 34 |
+
--temp 1.0 --top-p 0.95 --top-k 64
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
**With DFlash speculative decoding (recommended — faster, same output):**
|
| 38 |
+
```bash
|
| 39 |
+
llama-server -m ./muse/Muse-Glimmer-30B-Abliterated-Q8_0.gguf \
|
| 40 |
+
-md ./muse/dflash-Muse-Glimmer-30B-Abliterated-F16.gguf \
|
| 41 |
+
--spec-type draft-dflash --spec-draft-n-max 15 \
|
| 42 |
+
-ngl 999 -ngld 999 --jinja --host 0.0.0.0 --port 8080 -c 16384 \
|
| 43 |
+
--temp 1.0 --top-p 0.95 --top-k 64
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
- `--spec-type draft-dflash` selects the block-diffusion draft path (block size 16, drafter injects the target's hidden states into its attention). DFlash must run under `llama-server` (it needs the shared target context) — not `llama-cli`.
|
| 47 |
+
- `--spec-draft-n-max 15` is the draft block length (clamped to the trained 16).
|
| 48 |
+
- `-md` = the DFlash drafter file; `-ngld 999` offloads it to GPU too.
|
| 49 |
+
|
| 50 |
+
**Multimodal (image input):** add the projector to either command:
|
| 51 |
+
```bash
|
| 52 |
+
--mmproj ./muse/mmproj-Muse-Glimmer-30B-Abliterated-F16.gguf
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
Or run the ready-made script in this kit: `bash serve.sh` (see `serve.sh`).
|
| 56 |
+
|
| 57 |
+
## 4. Query (OpenAI-compatible)
|
| 58 |
+
|
| 59 |
+
```bash
|
| 60 |
+
curl http://localhost:8080/v1/chat/completions -H 'content-type: application/json' -d '{
|
| 61 |
+
"messages":[{"role":"user","content":"Write a binary search in Python."}],
|
| 62 |
+
"max_tokens": 2048, "temperature": 1.0, "top_p": 0.95, "top_k": 64
|
| 63 |
+
}'
|
| 64 |
+
```
|
| 65 |
+
|
| 66 |
+
## 5. Important notes
|
| 67 |
+
|
| 68 |
+
- **Heavy thinker.** Muse spends tokens on a reasoning channel first. Use a **generous `max_tokens` (≥ 1024)** or the answer can come back empty (the budget is consumed by reasoning). llama-server returns the reasoning in `reasoning_content` and the answer in `content`.
|
| 69 |
+
- **Sampling (Meta guidance):** `temperature 1.0, top_p 0.95, top_k 64`. Steer depth with a `Reasoning strength: low/medium/high/xhigh` line in the system prompt.
|
| 70 |
+
- **Flash attention:** `-fa on` is fastest and lets DFlash reach its peak speedup. If your GPU/CUDA combo hangs at load with `-fa on` (seen on some brand-new archs paired with an older CUDA toolkit), use `-fa off` — everything works, at a modest speed cost.
|
| 71 |
+
- **Persona:** ships with an "AI assistant" system template baked in; override with your own system message.
|
| 72 |
+
|
| 73 |
+
## 6. Reference performance
|
| 74 |
+
|
| 75 |
+
Single NVIDIA RTX PRO 6000 (Blackwell), Q8_0, `-fa off`:
|
| 76 |
+
|
| 77 |
+
| config | decode tok/s | speedup |
|
| 78 |
+
|---|--:|--:|
|
| 79 |
+
| baseline | ~46 | 1.0× |
|
| 80 |
+
| + DFlash | ~73 | **1.6×** |
|
| 81 |
+
|
| 82 |
+
DFlash speedup rises with structured/code output and with `-fa on`. Meta reports up to 3.1× on an RTX 5090.
|
| 83 |
+
|
| 84 |
+
---
|
| 85 |
+
|
| 86 |
+
*Built by [Blackfrost](https://x.com/Blackfrost_AI) · Las Vegas, NV. Not affiliated with Meta.*
|