Views
No views yet
qwen2-vl-2b-v3+f2), packaged here to run natively
on Apple Silicon Macs with MLX (Metal) — no server, no CUDA.| Base | Qwen/Qwen2-VL-2B-Instruct |
| Fine-tune | DAM v3 LoRA, merged |
| Format | MLX, 8-bit affine quantization (group size 64) |
| Size on disk | ~2.97 GB |
| Architecture | Qwen2VLForConditionalGeneration |
| Converter | mlx-vlm 0.6.2 (mlx 0.31.2) |
1pip install mlx-vlm
2python -m mlx_vlm generate \
3 --model Munchit/dam-vision-v3-mlx \
4 --image your_frame.jpg \
5 --prompt "Describe this image." \
6 --max-tokens 128 --temperature 0.01from mlx_vlm import load, generate
2from mlx_vlm.prompt_utils import apply_chat_template
3
4model, processor = load("Munchit/dam-vision-v3-mlx")
5config = model.config
6prompt = apply_chat_template(processor, config, "Describe this image.", num_images=1)
7out = generate(model, processor, prompt, ["your_frame.jpg"], max_tokens=128, temp=0.0)
8print(out)