Image-Text-to-Text
MLX
Safetensors
Transformers
English
qwen3_5
text-generation-inference
unsloth
conversational
8-bit precision
How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("image-text-to-text", model="shamsghi/Qwen3.5-2b-Kimi-and-Opus-Distillation-MLX-8bit")
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
            {"type": "text", "text": "What animal is on the candy?"}
        ]
    },
]
pipe(text=messages)
# Load model directly
from transformers import AutoProcessor, AutoModelForMultimodalLM

processor = AutoProcessor.from_pretrained("shamsghi/Qwen3.5-2b-Kimi-and-Opus-Distillation-MLX-8bit")
model = AutoModelForMultimodalLM.from_pretrained("shamsghi/Qwen3.5-2b-Kimi-and-Opus-Distillation-MLX-8bit", device_map="auto")
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
            {"type": "text", "text": "What animal is on the candy?"}
        ]
    },
]
inputs = processor.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

Qwen3.5-2b-Kimi-and-Opus-Distillation-MLX-8bit

This is an MLX 8-bit conversion of ertghiu256/Qwen3.5-2b-Kimi-and-Opus-Distillation for Apple Silicon.

Model Details

  • Base model: ertghiu256/Qwen3.5-2b-Kimi-and-Opus-Distillation
  • Format: MLX safetensors
  • Runtime: mlx-vlm
  • Quantization: 8-bit
  • License: Apache-2.0

Release Notes

v1.0.0 - 2026-04-15

  • Initial MLX 8-bit release.
  • Converted from the original Hugging Face checkpoint to MLX format.
  • Includes tokenizer and processor config files.
  • Verified locally after conversion.

Usage

mlx_vlm.generate \
  --model shamsghi/Qwen3.5-2b-Kimi-and-Opus-Distillation-MLX-8bit \
  --prompt "Write a short hello world in Python." \
  --max-tokens 100
Downloads last month
187
Safetensors
Model size
2B params
Tensor type
U32
·
F16
·
F32
·
MLX
Hardware compatibility
Log In to add your hardware

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for shamsghi/Qwen3.5-2b-Kimi-and-Opus-Distillation-MLX-8bit

Finetuned
Qwen/Qwen3.5-2B
Quantized
(4)
this model

Datasets used to train shamsghi/Qwen3.5-2b-Kimi-and-Opus-Distillation-MLX-8bit