---
license: other
license_name: lfm1.0
license_link: LICENSE
language:
- en
- ar
- zh
- fr
- de
- ja
- ko
- es
pipeline_tag: text-generation
tags:
- liquid
- lfm2
- edge
- llama.cpp
- gguf
base_model:
- LiquidAI/LFM2.5-350M
---
# LFM2.5-350M-GGUF
LFM2 is a new generation of hybrid models developed by [Liquid AI](https://www.liquid.ai/), specifically designed for edge AI and on-device deployment. It sets a new standard in terms of quality, speed, and memory efficiency.
Find more details in the original model card: https://huggingface.co/LiquidAI/LFM2.5-350M
## 🏃 How to run LFM2.5
Example usage with [llama.cpp](https://github.com/ggml-org/llama.cpp):
```
llama-cli -hf LiquidAI/LFM2.5-350M-GGUF --conversation \
--temp 0.1 --top-k 50 --repeat-penalty 1.05
```
## QAD Q4_0 GGUF
The Quantization-Aware Distillation (QAD) checkpoint is available as
[`LFM2.5-350M-QAD-Q4_0.gguf`](https://huggingface.co/LiquidAI/LFM2.5-350M-GGUF/blob/main/LFM2.5-350M-QAD-Q4_0.gguf).
This is distinct from the post-training-quantized `LFM2.5-350M-Q4_0.gguf`;
both use the GGUF Q4_0 format.
Example usage with [llama.cpp](https://github.com/ggml-org/llama.cpp):
```
llama-cli -hf LiquidAI/LFM2.5-350M-GGUF \
--hf-file LFM2.5-350M-QAD-Q4_0.gguf \
-p "What is C. elegans?"
```