Views
No views yet

[!NOTE] These GGUFs are self-quantized from the original weights, not a repack. The importance matrix keeps low-bit quants closer to the full-precision model.
[!IMPORTANT] Always pass--jinjaso the Laguna S 2.1 chat template is applied. Without it the model can emit malformed turns.
| Property | Value |
|---|---|
| Base model | poolside/Laguna-S-2.1 |
| Parameters | 117.6B |
| Layers | 48 |
| Experts | 256 routed (top-10) |
| Sliding window | 512 tokens |
| Context length | 1,048,576 tokens (1M) |
| Vocabulary | 100,352 |
| Modalities | Text |
| Architecture | Mixture-of-Experts, 256 experts (top-10), hybrid sliding-window (512) and global attention, 48 attention heads over 8 KV heads, LagunaForCausalLM |
| This repo | GGUF quants (imatrix); the importance matrix is published here as imatrix-coding.gguf. Quants: coding-IQ2_XS, coding-IQ2_M, coding-IQ3_M, coding-IQ4_XS, Q4_K_S, Q4_K_M, Q5_K_M, Q6_K, Q8_0 |

poolside/Laguna-S-2.1, not our own measurements. Quantization preserves the large majority of this; Q4_K_M and up stay close to full precision.| Quant | Size | Notes |
|---|---|---|
coding-IQ2_XS | 34.4 GB | Very low memory. |
coding-IQ2_M | 38.4 GB | Very low memory, imatrix keeps it coherent. |
coding-IQ3_M | 51.5 GB | Beats Q3 at a similar size thanks to imatrix. Best low-RAM pick. |
coding-IQ4_XS | 62.7 GB | Excellent quality for size. Recommended low-bit. |
Q4_K_S | 66.9 GB | Compact 4-bit, fast. |
Q4_K_M | 71.2 GB | Recommended default. Best balance of size, speed and quality. |
Q5_K_M | 83.5 GB | Higher quality, low loss. |
Q6_K | 96.6 GB | Near lossless, noticeably lighter than Q8_0. |
Q8_0 | 125.0 GB | Effectively lossless, reference quality. |
[!TIP] Pick the largest file that fits your (V)RAM with room for context.Q4_K_Mis the sweet spot for most setups;Q6_KorQ8_0for maximum fidelity.
AtomicChat/Laguna-S-2.1-GGUF, pick a quant, hit Use this model.llama-server -hf AtomicChat/Laguna-S-2.1-GGUF:Q4_K_M --jinja -c 8192ollama run hf.co/AtomicChat/Laguna-S-2.1-GGUF:Q4_K_M| Parameter | Value |
|---|---|
| temperature | 1.0 |
| top_p | 1.0 |
| top_k | 20 |
| min_p | 0.0 |
poolside/Laguna-S-2.1.1git clone https://github.com/ggml-org/llama.cpp
2cmake llama.cpp -B llama.cpp/build -DBUILD_SHARED_LIBS=OFF -DGGML_CUDA=ON
3cmake --build llama.cpp/build --config Release -j --target llama-cli llama-server1./llama.cpp/build/bin/llama-server \
2 -hf AtomicChat/Laguna-S-2.1-GGUF:Q4_K_M \
3 --jinja -ngl 99 -c 8192 -fa onpoolside/Laguna-S-2.1 (original weights).imatrix-coding.gguf.--imatrix.