Instructions to use divinetribe/Muse-Glimmer-30B-Abliterated-MM-bf16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use divinetribe/Muse-Glimmer-30B-Abliterated-MM-bf16 with MLX:
# Make sure mlx-vlm is installed # pip install --upgrade mlx-vlm from mlx_vlm import load, generate from mlx_vlm.prompt_utils import apply_chat_template from mlx_vlm.utils import load_config # Load the model model, processor = load("divinetribe/Muse-Glimmer-30B-Abliterated-MM-bf16") config = load_config("divinetribe/Muse-Glimmer-30B-Abliterated-MM-bf16") # Prepare input image = ["http://images.cocodataset.org/val2017/000000039769.jpg"] prompt = "Describe this image." # Apply chat template formatted_prompt = apply_chat_template( processor, config, prompt, num_images=1 ) # Generate output output = generate(model, processor, formatted_prompt, image) print(output) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use divinetribe/Muse-Glimmer-30B-Abliterated-MM-bf16 with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "divinetribe/Muse-Glimmer-30B-Abliterated-MM-bf16"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "divinetribe/Muse-Glimmer-30B-Abliterated-MM-bf16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use divinetribe/Muse-Glimmer-30B-Abliterated-MM-bf16 with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "divinetribe/Muse-Glimmer-30B-Abliterated-MM-bf16"
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 "divinetribe/Muse-Glimmer-30B-Abliterated-MM-bf16" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Hermes Agent
How to use divinetribe/Muse-Glimmer-30B-Abliterated-MM-bf16 with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "divinetribe/Muse-Glimmer-30B-Abliterated-MM-bf16"
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 divinetribe/Muse-Glimmer-30B-Abliterated-MM-bf16
Run Hermes
hermes
- Atomic Chat
Muse-Glimmer-30B-Abliterated — Multimodal (bf16, MLX)
The full multimodal (vision + language) Muse-Glimmer-30B with refusal directions removed (abliterated), in bf16 for Apple Silicon / MLX. 1,436 tensors — the vision tower, adapter, and projection are intact, so image understanding works.
Demo
One local model — recognition, fine-grained ID, landmarks, in-the-wild OCR, and chart reading. Every answer is a real, unedited on-device output:
▶ Watch on YouTube · or click the poster:
It doesn't just caption — it names the exact Jaguar F-Type from the spoiler shape with the badge blurred out, places the Taj Mahal in Agra, reads "1501 BROADWAY" off a storefront, and pulls Q4 = $73M off a bar chart.
Believed to be the first abliterated multimodal model running on Apple MLX: the same weights both describe images and answer without the stock refusal behavior.
What it is
- Base:
mlx-community/Muse-Glimmer-30B-bf16(Meta Muse-Glimmer-30B, MLX conversion). - Abliteration: directional ablation (Arditi et al.). Refusal direction taken from
layer 26 (diff-of-means over harmful/harmless prompts) and orthogonalized out of
embed_tokens+ everyself_attn.o_projandmlp.down_proj. Language weights only — the vision tower is untouched. - Vision: Qwen2.5-VL-style 50-layer ViT (2D-RoPE, window/full attention, 2×2 spatial merge) → GELU adapter → projection into the text stream, spliced at the image token.
Running it (MLX)
Vision support lives in nicedreamzapp/mlx-vlm-muse-glimmer.
Install the model class into your mlx-vlm, then:
from mlx_vlm import load, generate
from mlx_vlm.prompt_utils import apply_chat_template
model, processor = load("divinetribe/Muse-Glimmer-30B-Abliterated-MM-bf16")
prompt = apply_chat_template(processor, model.config,
"What is in this image?", num_images=1)
print(generate(model, processor, prompt, image=["photo.jpg"], max_tokens=128))
Text-only works with num_images=0 and no image= argument.
Notes
- ~60 GB in bf16; needs a large-memory Apple Silicon machine.
- The chat template ends the generation prompt at
assistant to=user<|message|>so the model answers directly instead of emitting its own reasoning channel.
Intended use & safety
This model has had its refusal behavior removed. It is released for research and for users who need an unconstrained assistant on their own hardware. You are responsible for how you use it and for complying with all applicable laws and the base model's license.
- Downloads last month
- 201
Quantized
Model tree for divinetribe/Muse-Glimmer-30B-Abliterated-MM-bf16
Base model
meta-models/Muse-Glimmer-30B