Views
No views yet
prithivMLmods/Qwen3-VL-8B-Instruct-abliterated-v2, an abliterated (refusal-removed) build of Qwen3-VL-8B-Instruct.mlx-vlm — typically faster than
llama.cpp/Metal for image encoding, with no separate vision-encoder (mmproj)
file needed.As of conversion, no MLX build of this model existed — this is a community conversion to bring it to Apple Silicon users.
pip install mlx-vlm1from mlx_vlm import load, stream_generate
2from mlx_vlm.prompt_utils import apply_chat_template
3from mlx_vlm.utils import load_config
4
5model, processor = load("LethalDonkey/Qwen3-VL-8B-Instruct-abliterated-v2-MLX-4bit")
6config = load_config("LethalDonkey/Qwen3-VL-8B-Instruct-abliterated-v2-MLX-4bit")
7
8messages = [
9 {"role": "system", "content": "You are a helpful assistant that describes images accurately and in detail."},
10 {"role": "user", "content": "Describe this image in detail."},
11]
12prompt = apply_chat_template(processor, config, messages, num_images=1)
13
14for chunk in stream_generate(model, processor, prompt, image=["your_image.jpg"], max_tokens=512):
15 print(chunk.text, end="", flush=True)mlx_vlm.convert