Views
No views yet
mlx/.Note on vocab padding: For MLX compatibility, the tokenizer/embeddings were padded to the next multiple of 64 tokens.
In this build: 262,208 tokens (added 64 placeholder tokens named<pad_ex_*>).
| Path | Bits | Group Size | Notes |
|---|---|---|---|
mlx/g128/ | int4 | 128 | Smallest & fastest |
mlx/g64/ | int4 | 64 | Slightly larger, often steadier |
mlx/int8/ | 8 | — | Closest to fp16 quality (slower) |
1python -m mlx_lm.generate \
2 --model hf://Daizee/Gemma3-Callous-Calla-4B-mlx/mlx/g64 \
3 --prompt "Summarize the Bill of Rights for 7th graders in 4 bullet points." \
4 --max-tokens 180 --temp 0.3 --top-p 0.92