Views
No views yet
Qwen/Qwen3.5-35B-A3B, prepared for local inference on Apple Silicon.henrybravo. All model capabilities, limitations, and licensing inherit from the original Qwen release.Qwen/Qwen3.5-35B-A3BQwen3_5MoeForConditionalGeneration (qwen3_5_moe)64, primary weights at 4-bit8-bit (as reflected in config.json)safetensors (4 shards)mlx-vlm / MLX ecosystem on macOS20 GBmax_tokens = 16384pip install -U mlx==0.31.0 mlx-lm==0.31.0 mlx-vlm==0.4.0 transformers==5.3.0mlx-router.mlx_vlm.generate, or serve the model through mlx-router.1python -m mlx_vlm.generate \
2 --model /path/to/Qwen3.5-35B-A3B-4bit \
3 --max-tokens 100 \
4 --temperature 0.0 \
5 --prompt "Hello, what model are you?"1python -m mlx_vlm.generate \
2 --model /path/to/Qwen3.5-35B-A3B-4bit \
3 --max-tokens 200 \
4 --temperature 0.0 \
5 --prompt "Describe this image in detail." \
6 --image https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Camponotus_flavomarginatus_ant.jpg/320px-Camponotus_flavomarginatus_ant.jpg1mlx_vlm.convert \
2 --hf-path Qwen/Qwen3.5-35B-A3B \
3 --mlx-path ~/models/models--henrybravo--Qwen3.5-35B-A3B-4bit \
4 -q \
5 --q-bits 4 \
6 --dtype bfloat16