Views
No views yet
| Variant | Size | Notes |
|---|---|---|
| 8bit | 116 GB | near-lossless |
| 6bit | 89 GB | high quality |
| 4bit | 62 GB | balanced default |
| 3bit | 48 GB | smallest footprint |
| 2bit | 35 GB | mixed-precision, smallest |
| bf16 | 219 GB | full precision |
laguna.py loaderlaguna architecture is not in stock mlx-lm, so this repo bundles the
numerically-validated MLX implementation as laguna.py. Register it once, then
use mlx-lm normally:1pip install mlx mlx-lm
2python - <<'PY'
3import os, shutil, mlx_lm
4from huggingface_hub import hf_hub_download
5dst = os.path.join(os.path.dirname(mlx_lm.__file__), "models", "laguna.py")
6shutil.copy(hf_hub_download("pipenetwork/Laguna-S-2.1-MLX-8bit", "laguna.py"), dst)
7print("registered laguna ->", dst)
8PY1mlx_lm.generate --model pipenetwork/Laguna-S-2.1-MLX-8bit \
2 --prompt "Write a Rust function that reverses a linked list." --max-tokens 256