mlx-community/InternVL3-8B-MLX-4bit
082
InternVL3-8B-MLX-4bit
This repository contains a 4-bit MLX quantized conversion of mlx-community/InternVL3-8B-bf16 for Apple Silicon inference.
Conversion Details
Conversion command used:
python3 -m mlx_vlm convert \
--hf-path "mlx-community/InternVL3-8B-bf16" \
--mlx-path "./models/InternVL3-8B-4bit" \
-q --q-bits 4 --q-group-size 64Validation
Verification command:
python3 -m mlx_vlm generate \
--model "./models/InternVL3-8B-4bit" \
--prompt "Reply with exactly: OK" \
--max-tokens 8 --temperature 0Observed response: OK
Usage
Install:
python3 -m pip install -U mlx-vlmRun locally from this folder:
python3 -m mlx_vlm generate \
--model "." \
--prompt "Describe the image briefly." \
--image path/to/image.jpg \
--max-tokens 256 \
--temperature 0Run from Hugging Face after upload:
python3 -m mlx_vlm generate \
--model "mlx-community/InternVL3-8B-MLX-4bit" \
--prompt "Describe the image briefly." \
--image path/to/image.jpg \
--max-tokens 256 \
--temperature 0Notes
- This conversion does not upload anything automatically.
- Quantization changes numerical behavior relative to bf16 weights.
- During local tests,
mlx_vlmemitted an upstream tokenizer regex warning from the source model assets.
Links
- Source model: https://huggingface.co/mlx-community/InternVL3-8B-bf16
- MLX: https://github.com/ml-explore/mlx
- mlx-vlm: https://github.com/Blaizzy/mlx-vlm
License
Follows the upstream model license terms from the source repository.
