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 XS 2.1 chat template is applied. Without it the model can emit malformed turns.
| Property | Value |
|---|---|
| Base model | poolside/Laguna-XS-2.1 |
| Parameters | 33.4B |
| Layers | 40 |
| Experts | 256 routed (top-8) |
| Sliding window | 512 tokens |
| Context length | 262,144 tokens (256K) |
| Vocabulary | 100,352 |
| Modalities | Text |
| Architecture | Mixture-of-Experts, 256 experts (top-8), hybrid sliding-window (512) and global attention, 48 attention heads over 8 KV heads, LagunaForCausalLM |
| This repo | GGUF quants (imatrix). Quants: Q3_K_M, Q4_K_M, Q5_K_M, Q6_K, Q8_0 |
poolside/Laguna-XS-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 |
|---|---|---|
Q3_K_M | 16.1 GB | Low quality but usable. |
Q4_K_M | 20.3 GB | Recommended default. Best balance of size, speed and quality. |
Q5_K_M | 23.8 GB | Higher quality, low loss. |
Q6_K | 27.5 GB | Near lossless, noticeably lighter than Q8_0. |
Q8_0 | 35.6 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-XS-2.1-GGUF, pick a quant, hit Use this model.llama-server -hf AtomicChat/Laguna-XS-2.1-GGUF:Q4_K_M --jinja -c 8192ollama run hf.co/AtomicChat/Laguna-XS-2.1-GGUF:Q4_K_M| Parameter | Value |
|---|---|
| temperature | 1.0 |
| top_p | 1 |
| top_k | 20 |
| min_p | 0.0 |
poolside/Laguna-XS-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-XS-2.1-GGUF:Q4_K_M \
3 --jinja -ngl 99 -c 8192 -fa onpoolside/Laguna-XS-2.1 (original weights).--imatrix.