Views
No views yet
mlx-community/gemma-4-e2b-it-4bitvision_tower.*, embed_vision.*, audio_tower.*, embed_audio.* tensors (1,415 of 2,511 total)config.json: audio_config set to null; vision_config left in place structurally (some MLX loaders instantiate the vision module unconditionally) — load with strict=False if your loader errors on the missing vision weights1pip install mlx-vlm
2python -m mlx_vlm generate \
3 --model ddalcu/gemma-4-e2b-it-4bit-textonly \
4 --prompt "Explain what a black hole is in two sentences." \
5 --max-tokens 80mlx-vlm version raises a shape error while loading, load with
strict=False:1from mlx_vlm import load, generate
2model, processor = load("ddalcu/gemma-4-e2b-it-4bit-textonly", strict=False)