Views
No views yet
--q-group-size 64.| Variant | Repo | Disk | ~Min unified RAM | Role |
|---|---|---|---|---|
| MLX bf16 | Qwen2.5-7B-Instruct-MLX-bf16 | 15.24 GB | ~18 GB | Reference |
| MLX 8bit | Qwen2.5-7B-Instruct-MLX-8bit | 8.1 GB | ~10 GB | Near-lossless |
| MLX 6bit | Qwen2.5-7B-Instruct-MLX-6bit | 6.2 GB | ~8 GB | Quality / size middle |
| MLX 4bit-gs32 | Qwen2.5-7B-Instruct-MLX-4bit-gs32 | 4.77 GB | ~7 GB | 4-bit, group size 32 |
| MLX 4bit-gs64 (this repo) | this | 4.3 GB | ~6 GB | 4-bit, group size 64 (mlx-lm default) |
| MLX 4bit-gs128 | Qwen2.5-7B-Instruct-MLX-4bit-gs128 | 4.06 GB | ~6 GB | 4-bit, group size 128 |
| MLX 3bit | Qwen2.5-7B-Instruct-MLX-3bit | 3.34 GB | ~5 GB | Smaller, expect quality drop |
| MLX 2bit | Qwen2.5-7B-Instruct-MLX-2bit | 2.39 GB | ~4 GB | Aggressive — verify on workload |
1pip install mlx-lm
2mlx_lm.generate --model zaydiscold/Qwen2.5-7B-Instruct-MLX-4bit-gs64 \
3 --prompt "Explain quantum entanglement in one paragraph" --max-tokens 2001python -m mlx_lm convert \
2 --hf-path Qwen/Qwen2.5-7B-Instruct \
3 --mlx-path ./Qwen2.5-7B-Instruct-MLX-4bit-gs64 \
4 -q --q-bits 4 --q-group-size 64