πŸ“‹ Model Description


base_model: HuggingFaceTB/SmolLM2-1.7B-Instruct language:
  • en
license: apache-2.0 pipeline_tag: text-generation quantized_by: bartowski

Llamacpp imatrix Quantizations of SmolLM2-1.7B-Instruct

Using llama.cpp release b3991 for quantization.

Original model: https://huggingface.co/HuggingFaceTB/SmolLM2-1.7B-Instruct

All quants made using imatrix option with dataset from here

Run them in LM Studio

Prompt format

<|im_start|>system
{systemprompt}<|imend|>
<|im_start|>user
{prompt}<|im_end|>
<|im_start|>assistant

Download a file (not the whole branch) from below:

FilenameQuant typeFile SizeSplitDescription
SmolLM2-1.7B-Instruct-f16.gguff163.42GBfalseFull F16 weights.
SmolLM2-1.7B-Instruct-Q80.ggufQ801.82GBfalseExtremely high quality, generally unneeded but max available quant.
SmolLM2-1.7B-Instruct-Q6KL.ggufQ6KL1.43GBfalseUses Q80 for embed and output weights. Very high quality, near perfect, recommended.
SmolLM2-1.7B-Instruct-Q6K.ggufQ6K1.41GBfalseVery high quality, near perfect, recommended.
SmolLM2-1.7B-Instruct-Q5KL.ggufQ5KL1.25GBfalseUses Q80 for embed and output weights. High quality, recommended.
SmolLM2-1.7B-Instruct-Q5KM.ggufQ5K_M1.23GBfalseHigh quality, recommended.
SmolLM2-1.7B-Instruct-Q5KS.ggufQ5K_S1.19GBfalseHigh quality, recommended.
SmolLM2-1.7B-Instruct-Q4KL.ggufQ4KL1.08GBfalseUses Q80 for embed and output weights. Good quality, recommended.
SmolLM2-1.7B-Instruct-Q4KM.ggufQ4K_M1.06GBfalseGood quality, default size for must use cases, recommended.
SmolLM2-1.7B-Instruct-Q4KS.ggufQ4K_S1.00GBfalseSlightly lower quality with more space savings, recommended.
SmolLM2-1.7B-Instruct-Q4088.ggufQ40880.99GBfalseOptimized for ARM inference. Requires 'sve' support (see link below). Don't use on Mac or Windows.
SmolLM2-1.7B-Instruct-Q4048.ggufQ40480.99GBfalseOptimized for ARM inference. Requires 'i8mm' support (see link below). Don't use on Mac or Windows.
SmolLM2-1.7B-Instruct-Q4044.ggufQ40440.99GBfalseOptimized for ARM inference. Should work well on all ARM chips, pick this if you're unsure. Don't use on Mac or Windows.
SmolLM2-1.7B-Instruct-Q40.ggufQ400.99GBfalseLegacy format, generally not worth using over similarly sized formats
SmolLM2-1.7B-Instruct-Q3KXL.ggufQ3KXL0.96GBfalseUses Q80 for embed and output weights. Lower quality but usable, good for low RAM availability.
SmolLM2-1.7B-Instruct-IQ4XS.ggufIQ4XS0.94GBfalseDecent quality, smaller than Q4KS with similar performance, recommended.
SmolLM2-1.7B-Instruct-Q3KL.ggufQ3K_L0.93GBfalseLower quality but usable, good for low RAM availability.
SmolLM2-1.7B-Instruct-Q3KM.ggufQ3K_M0.86GBfalseLow quality.
SmolLM2-1.7B-Instruct-IQ3M.ggufIQ3M0.81GBfalseMedium-low quality, new method with decent performance comparable to Q3KM.
SmolLM2-1.7B-Instruct-Q3KS.ggufQ3K_S0.78GBfalseLow quality, not recommended.
SmolLM2-1.7B-Instruct-IQ3XS.ggufIQ3XS0.74GBfalseLower quality, new method with decent performance, slightly better than Q3KS.
SmolLM2-1.7B-Instruct-Q2KL.ggufQ2KL0.70GBfalseUses Q80 for embed and output weights. Very low quality but surprisingly usable.
SmolLM2-1.7B-Instruct-Q2K.ggufQ2K0.67GBfalseVery low quality but surprisingly usable.

Embed/output weights

Some of these quants (Q3KXL, Q4KL etc) are the standard quantization method with the embeddings and output weights quantized to Q8_0 instead of what they would normally default to.

Some say that this improves the quality, others don't notice any difference. If you use these models PLEASE COMMENT with your findings. I would like feedback that these are actually used and useful so I don't keep uploading quants no one is using.

Thanks!

Downloading using huggingface-cli

First, make sure you have hugginface-cli installed:

pip install -U "huggingface_hub[cli]"

Then, you can target the specific file you want:

huggingface-cli download bartowski/SmolLM2-1.7B-Instruct-GGUF --include "SmolLM2-1.7B-Instruct-Q4KM.gguf" --local-dir ./

If the model is bigger than 50GB, it will have been split into multiple files. In order to download them all to a local folder, run:

huggingface-cli download bartowski/SmolLM2-1.7B-Instruct-GGUF --include "SmolLM2-1.7B-Instruct-Q8_0/*" --local-dir ./

You can either specify a new local-dir (SmolLM2-1.7B-Instruct-Q8_0) or download them all in place (./)

Q40X_X

These are NOT for Metal (Apple) offloading, only ARM chips.

If you're using an ARM chip, the Q40XX quants will have a substantial speedup. Check out Q4044 speed comparisons on the original pull request

To check which one would work best for your ARM chip, you can check AArch64 SoC features (thanks EloyOn!).

Which file should I choose?

A great write up with charts showing various performances is provided by Artefact2 here

The first thing to figure out is how big a model you can run. To do this, you'll need to figure out how much RAM and/or VRAM you have.

If you want your model running as FAST as possible, you'll want to fit the whole thing on your GPU's VRAM. Aim for a quant with a file size 1-2GB smaller than your GPU's total VRAM.

If you want the absolute maximum quality, add both your system RAM and your GPU's VRAM together, then similarly grab a quant with a file size 1-2GB Smaller than that total.

Next, you'll need to decide if you want to use an 'I-quant' or a 'K-quant'.

If you don't want to think too much, grab one of the K-quants. These are in format 'QXKX', like Q5KM.

If you want to get more into the weeds, you can check out this extremely useful feature chart:

llama.cpp feature matrix

But basically, if you're aiming for below Q4, and you're running cuBLAS (Nvidia) or rocBLAS (AMD), you should look towards the I-quants. These are in format IQXX, like IQ3M. These are newer and offer better performance for their size.

These I-quants can also be used on CPU and Apple Metal, but will be slower than their K-quant equivalent, so speed vs performance is a tradeoff you'll have to decide.

The I-quants are not compatible with Vulcan, which is also AMD, so if you have an AMD card double check if you're using the rocBLAS build or the Vulcan build. At the time of writing this, LM Studio has a preview with ROCm support, and other inference engines have specific builds for ROCm.

Credits

Thank you kalomaze and Dampf for assistance in creating the imatrix calibration dataset

Thank you ZeroWw for the inspiration to experiment with embed/output

Want to support my work? Visit my ko-fi page here: https://ko-fi.com/bartowski

πŸ“‚ GGUF File List

πŸ“ Filename πŸ“¦ Size ⚑ Download
SmolLM2-1.7B-Instruct-IQ3_M.gguf
LFS Q3
772.71 MB Download
SmolLM2-1.7B-Instruct-IQ3_XS.gguf
LFS Q3
704.83 MB Download
SmolLM2-1.7B-Instruct-IQ4_XS.gguf
LFS Q4
896.83 MB Download
SmolLM2-1.7B-Instruct-Q2_K.gguf
LFS Q2
643.33 MB Download
SmolLM2-1.7B-Instruct-Q2_K_L.gguf
LFS Q2
666.58 MB Download
SmolLM2-1.7B-Instruct-Q3_K_L.gguf
LFS Q3
889.33 MB Download
SmolLM2-1.7B-Instruct-Q3_K_M.gguf
LFS Q3
820.33 MB Download
SmolLM2-1.7B-Instruct-Q3_K_S.gguf
LFS Q3
740.83 MB Download
SmolLM2-1.7B-Instruct-Q3_K_XL.gguf
LFS Q3
912.58 MB Download
SmolLM2-1.7B-Instruct-Q4_0.gguf
Recommended LFS Q4
947.83 MB Download
SmolLM2-1.7B-Instruct-Q4_0_4_4.gguf
LFS Q4
944.83 MB Download
SmolLM2-1.7B-Instruct-Q4_0_4_8.gguf
LFS Q4
944.83 MB Download
SmolLM2-1.7B-Instruct-Q4_0_8_8.gguf
LFS Q4
944.83 MB Download
SmolLM2-1.7B-Instruct-Q4_K_L.gguf
LFS Q4
1.01 GB Download
SmolLM2-1.7B-Instruct-Q4_K_M.gguf
LFS Q4
1006.71 MB Download
SmolLM2-1.7B-Instruct-Q4_K_S.gguf
LFS Q4
952.83 MB Download
SmolLM2-1.7B-Instruct-Q5_K_L.gguf
LFS Q5
1.16 GB Download
SmolLM2-1.7B-Instruct-Q5_K_M.gguf
LFS Q5
1.14 GB Download
SmolLM2-1.7B-Instruct-Q5_K_S.gguf
LFS Q5
1.11 GB Download
SmolLM2-1.7B-Instruct-Q6_K.gguf
LFS Q6
1.31 GB Download
SmolLM2-1.7B-Instruct-Q6_K_L.gguf
LFS Q6
1.33 GB Download
SmolLM2-1.7B-Instruct-Q8_0.gguf
LFS Q8
1.7 GB Download
SmolLM2-1.7B-Instruct-f16.gguf
LFS FP16
3.19 GB Download