Instructions to use FreedomAISVR/Muse-Glimmer-30B-NVFP4-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 FreedomAISVR/Muse-Glimmer-30B-NVFP4-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 FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4 # Run inference directly in the terminal: llama cli -hf FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4 # Run inference directly in the terminal: llama cli -hf FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4
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 FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4 # Run inference directly in the terminal: ./llama-cli -hf FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4
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 FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4 # Run inference directly in the terminal: ./build/bin/llama-cli -hf FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4
Use Docker
docker model run hf.co/FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4
- LM Studio
- Jan
- vLLM
How to use FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "FreedomAISVR/Muse-Glimmer-30B-NVFP4-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": "FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4
- Ollama
How to use FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF with Ollama:
ollama run hf.co/FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4
- Unsloth Desktop
- Pi
How to use FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4
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": "FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF with Docker Model Runner:
docker model run hf.co/FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4
- Lemonade
How to use FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4
Run and chat with the model
lemonade run user.Muse-Glimmer-30B-NVFP4-GGUF-NVFP4
List all available models
lemonade list
- Hermes Agent
How to use FreedomAISVR/Muse-Glimmer-30B-NVFP4-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 FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4
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 FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4
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 "FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF:NVFP4" \ --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"
Muse-Glimmer-30B NVFP4 GGUF
Base Model
Muse-Glimmer-30B by Meta — a 27.8B-parameter dense causal transformer with integrated vision encoder (ViT-G/14, ~1.8B params). Apache 2.0 licensed. Supports images, screenshots, charts, documents, and 131K+ context. No MTP heads — uses DFlash speculative decoding instead.
Vision Support
This model includes a full vision encoder (mmproj) embedded in the GGUF. Use llama-mtmd-cli or llama-server --mmproj for vision capabilities. The vision encoder uses dynamic-size input with patch size 14 and temporal patch 2.
Quantization
- Format: NVIDIA FP4 (NVFP4) — 4-bit E2M1 values with E4M3 scaling per 16 values + FP32 tensor scale
- BPW: 4.69 bits per weight
- Size: 15.6 GB
- Target hardware: NVIDIA Blackwell GPUs (RTX 50 series) — requires CUDA kernels at inference
Tested Settings (llama.cpp build 1647+, RTX 5060 Ti 16GB)
llama-cli -m muse-glimmer-30b-nvfp4.gguf \
-ngl 99 \
--ctx-size 131072 \
--flash-attn on \
--cache-type-k q8_0 --cache-type-v q8_0 \
--reasoning off \
-t 8 --temp 0.7 --top-k 20 --top-p 0.95
Performance Results
| Metric | Result |
|---|---|
| Prompt processing | 80.2 t/s |
| Token generation | 8.7 t/s |
| Context | 128K |
| KV Cache | Q8_0 |
| Test prompt | "Explain to me in detail what is superpositioning and Quantum computing" |
| Output quality | Coherent, detailed, accurate — covered Dirac notation, Bloch sphere, interference, quantum parallelism |
Usage
llama.cpp CLI (text generation)
llama-cli -m muse-glimmer-30b-nvfp4.gguf -ngl 99 -c 131072 --flash-attn on --cache-type-k q8_0 --cache-type-v q8_0 --reasoning off -p "Your prompt here"
llama.cpp Server (API)
llama-server -m muse-glimmer-30b-nvfp4.gguf -ngl 99 -c 131072 --flash-attn on --cache-type-k q8_0 --cache-type-v q8_0 --reasoning off --host 0.0.0.0 --port 8080
Vision (requires llama-mtmd-cli)
llama-mtmd-cli -m muse-glimmer-30b-nvfp4.gguf -ngl 99 --flash-attn on --reasoning off --image /path/to/image.png -p "Describe this image"
Requirements
- llama.cpp build 1647+ with CUDA support (Muse-Glimmer architecture support merged Aug 2026)
- NVIDIA GPU with 16GB+ VRAM (tested on RTX 5060 Ti 16GB)
- Full GPU offload works — model fits entirely in VRAM
--reasoning offrecommended to suppress thinking token leakage
Notes
- Dense model (all 27.8B params active per token) — no
--cpu-moeneeded - Sliding window attention (2048 for 75% of layers, full for 25%) keeps KV cache small at 128K
- For faster generation (~3x), see the MXFP4 variant
- Reasoning cannot be fully disabled via config — use
--reasoning offat inference
License
Apache 2.0 (inherited from base model)
- Downloads last month
- 447
4-bit
Model tree for FreedomAISVR/Muse-Glimmer-30B-NVFP4-GGUF
Base model
meta-models/Muse-Glimmer-30B