Views
No views yet
mlx-community/Qwen3.8-27B-bf16
using mlx-vlm version 0.6.13.
Refer to the original model card for more details on the model.pip install -U mlx-vlmpython -m mlx_vlm.generate --model zherebetskyy/Qwen3.8-27B-4bit-mlx --max-tokens 100 --temperature 0.0 --prompt "Describe this image." --image <path_to_image>1from mlx_lm import load, generate
2
3model, tokenizer = load("zherebetskyy/Qwen3.8-27B-4bit-mlx")
4
5prompt="hello"
6
7if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
8 messages = [{"role": "user", "content": prompt}]
9 prompt = tokenizer.apply_chat_template(
10 messages, tokenize=False, add_generation_prompt=True
11 )
12
13response = generate(model, tokenizer, prompt=prompt, verbose=True)