Instructions to use kelvinlamptey/Solid_LFM2.5-2.6B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use kelvinlamptey/Solid_LFM2.5-2.6B-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use kelvinlamptey/Solid_LFM2.5-2.6B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "kelvinlamptey/Solid_LFM2.5-2.6B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kelvinlamptey/Solid_LFM2.5-2.6B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M
- Ollama
How to use kelvinlamptey/Solid_LFM2.5-2.6B-GGUF with Ollama:
ollama run hf.co/kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use kelvinlamptey/Solid_LFM2.5-2.6B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use kelvinlamptey/Solid_LFM2.5-2.6B-GGUF with Docker Model Runner:
docker model run hf.co/kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M
- Lemonade
How to use kelvinlamptey/Solid_LFM2.5-2.6B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Solid_LFM2.5-2.6B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use kelvinlamptey/Solid_LFM2.5-2.6B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use kelvinlamptey/Solid_LFM2.5-2.6B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "kelvinlamptey/Solid_LFM2.5-2.6B-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Commit 路
3933b90
0
Parent(s):
Duplicate from bartowski/LiquidAI_LFM2.5-2.6B-GGUF
Browse filesCo-authored-by: Bartowski <bartowski@users.noreply.huggingface.co>
- .gitattributes +60 -0
- LiquidAI_LFM2.5-2.6B-IQ2_M.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-IQ3_M.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-IQ3_XS.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-IQ3_XXS.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-IQ4_NL.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-IQ4_XS.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q2_K.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q2_K_L.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q3_K_L.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q3_K_M.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q3_K_S.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q3_K_XL.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q4_0.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q4_1.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q4_K_L.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q4_K_M.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q4_K_S.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q5_K_L.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q5_K_M.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q5_K_S.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q6_K.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q6_K_L.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-Q8_0.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-bf16.gguf +3 -0
- LiquidAI_LFM2.5-2.6B-imatrix.gguf +3 -0
- README.md +175 -0
.gitattributes
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
LiquidAI_LFM2.5-2.6B-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
LiquidAI_LFM2.5-2.6B-Q6_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
LiquidAI_LFM2.5-2.6B-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
LiquidAI_LFM2.5-2.6B-Q5_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
LiquidAI_LFM2.5-2.6B-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
LiquidAI_LFM2.5-2.6B-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
LiquidAI_LFM2.5-2.6B-Q4_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
LiquidAI_LFM2.5-2.6B-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
LiquidAI_LFM2.5-2.6B-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
LiquidAI_LFM2.5-2.6B-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
LiquidAI_LFM2.5-2.6B-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
LiquidAI_LFM2.5-2.6B-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
LiquidAI_LFM2.5-2.6B-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
LiquidAI_LFM2.5-2.6B-Q3_K_XL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
LiquidAI_LFM2.5-2.6B-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
LiquidAI_LFM2.5-2.6B-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
LiquidAI_LFM2.5-2.6B-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
LiquidAI_LFM2.5-2.6B-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
LiquidAI_LFM2.5-2.6B-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
LiquidAI_LFM2.5-2.6B-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
LiquidAI_LFM2.5-2.6B-Q2_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
LiquidAI_LFM2.5-2.6B-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
LiquidAI_LFM2.5-2.6B-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
LiquidAI_LFM2.5-2.6B-bf16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
LiquidAI_LFM2.5-2.6B-imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
LiquidAI_LFM2.5-2.6B-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4411044044c637274ad07cab250bad3dd9d804b3d5fd823827f78736ea84ce6
|
| 3 |
+
size 1022470432
|
LiquidAI_LFM2.5-2.6B-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e6d4876484c09246831062afc4961efa45405e06c622765f8e5c31c484b4096
|
| 3 |
+
size 1292470560
|
LiquidAI_LFM2.5-2.6B-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6ad8fa13972d24c82527b858f47224344169048cb8481cc2bae029b2f2baae95
|
| 3 |
+
size 1229596960
|
LiquidAI_LFM2.5-2.6B-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60e72d4976b7a3b43101a05563624d4c55cb5b8e10a1d8f5ea80194cd9b25f08
|
| 3 |
+
size 1130490144
|
LiquidAI_LFM2.5-2.6B-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6ef7c1c666977f144c23693bdae622775940fb45264f7ae9fbc717488daf355
|
| 3 |
+
size 1598220576
|
LiquidAI_LFM2.5-2.6B-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:34844da05ab6e4ca773299d97a2691e47f4f0e1587a3a632f4ca82b3916754b6
|
| 3 |
+
size 1522657568
|
LiquidAI_LFM2.5-2.6B-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67bc2f2c18cff83ffd82d3c83583f01a1ed937ba860ab7de052235bc8d2ce880
|
| 3 |
+
size 1102850336
|
LiquidAI_LFM2.5-2.6B-Q2_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:455470f8d123d034df5b8fbb2aac1774018a37256c78ff9f3622fc5392ef840d
|
| 3 |
+
size 1166338336
|
LiquidAI_LFM2.5-2.6B-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e98aec36cffe8f21c37bd1b230caa424e44746b2c4f5a31625e2973b26a7e402
|
| 3 |
+
size 1454008608
|
LiquidAI_LFM2.5-2.6B-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08dc6cb8cfe80722e20e523564f49d2624265721f7b596d6b9c167001b058ff9
|
| 3 |
+
size 1373661472
|
LiquidAI_LFM2.5-2.6B-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b6c2408cf0d287b51268ba131d43f388fb534ad31719b53cc13df26ece5e2ed7
|
| 3 |
+
size 1277077792
|
LiquidAI_LFM2.5-2.6B-Q3_K_XL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cad506e52d105bc8138e42cac42f347c320584da9fc966cc35d98b63282512bc
|
| 3 |
+
size 1517496608
|
LiquidAI_LFM2.5-2.6B-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68b0e51637960e8c75c32ef10b73ed241a2cecbf8224fd8fb720434b15dc304d
|
| 3 |
+
size 1602349344
|
LiquidAI_LFM2.5-2.6B-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:261c0986fb6d97463c16eb0873433ddfe244e03bda2edc0b5da95aa2436eecdf
|
| 3 |
+
size 1749346592
|
LiquidAI_LFM2.5-2.6B-Q4_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:240d0d0e2415f297772580c6480eeaab38c65f57676570367fa0300c3cfef8d3
|
| 3 |
+
size 1747511584
|
LiquidAI_LFM2.5-2.6B-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03ab6106f4636ae7f316245d2adf7394ccf3cd80a684ec0c473b1a4720f3108e
|
| 3 |
+
size 1684023584
|
LiquidAI_LFM2.5-2.6B-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d2109c5be64fdbd0a4139d136190be1ef96068cae384beb1fedd51deb8eb40a3
|
| 3 |
+
size 1607002400
|
LiquidAI_LFM2.5-2.6B-Q5_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fcf7008dfc678e8129b418d407a5fdce6509338c271b10ecc60790885a97a2b
|
| 3 |
+
size 2011031840
|
LiquidAI_LFM2.5-2.6B-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:89f1f9739a61bd8edf245b7b0c24cb2a20abc287665e35653a3772e7474506a6
|
| 3 |
+
size 1947543840
|
LiquidAI_LFM2.5-2.6B-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:73e692b159fea4e02423952bdca1cca5ba694c0ebad2c9293f045e96f2a8f0c3
|
| 3 |
+
size 1900472608
|
LiquidAI_LFM2.5-2.6B-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:499c120820935273c5eec587333ce18e0d4369911bd795b537f041ab4b20052f
|
| 3 |
+
size 2236852512
|
LiquidAI_LFM2.5-2.6B-Q6_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6ebd3b3d64967bbdbfcf0f0bbacc18686d9faab552c9d369ba18743cd68148c7
|
| 3 |
+
size 2300340512
|
LiquidAI_LFM2.5-2.6B-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:83bbdbb27c8a2b8636e554f364dad63f76588d4dec4629c819093a0317f07da8
|
| 3 |
+
size 2874779936
|
LiquidAI_LFM2.5-2.6B-bf16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:917b46ebb876cfbda1243567a819bd754cdaa8d912508e0030938792182ef66a
|
| 3 |
+
size 5403158560
|
LiquidAI_LFM2.5-2.6B-imatrix.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b6dfa9f4fac87d56a418a6cb9774c849fc5d375bc08b0dfcfb3ba091c4d79fef
|
| 3 |
+
size 2430880
|
README.md
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
quantized_by: bartowski
|
| 3 |
+
pipeline_tag: text-generation
|
| 4 |
+
license_link: LICENSE
|
| 5 |
+
language:
|
| 6 |
+
- ar
|
| 7 |
+
- zh
|
| 8 |
+
- en
|
| 9 |
+
- fr
|
| 10 |
+
- de
|
| 11 |
+
- hi
|
| 12 |
+
- id
|
| 13 |
+
- it
|
| 14 |
+
- ja
|
| 15 |
+
- ko
|
| 16 |
+
- pl
|
| 17 |
+
- pt
|
| 18 |
+
- ru
|
| 19 |
+
- es
|
| 20 |
+
- th
|
| 21 |
+
- vi
|
| 22 |
+
base_model_relation: quantized
|
| 23 |
+
base_model: LiquidAI/LFM2.5-2.6B
|
| 24 |
+
license_name: lfm1.0
|
| 25 |
+
tags:
|
| 26 |
+
- liquid
|
| 27 |
+
- lfm2.5
|
| 28 |
+
- edge
|
| 29 |
+
license: other
|
| 30 |
+
---
|
| 31 |
+
|
| 32 |
+
## Llamacpp imatrix Quantizations of LFM2.5-2.6B by LiquidAI
|
| 33 |
+
|
| 34 |
+
Using <a href="https://github.com/ggml-org/llama.cpp/">llama.cpp</a> release <a href="https://github.com/ggml-org/llama.cpp/releases/tag/b10262">b10262</a> for quantization.
|
| 35 |
+
|
| 36 |
+
Original model: https://huggingface.co/LiquidAI/LFM2.5-2.6B
|
| 37 |
+
|
| 38 |
+
**Model details:**
|
| 39 |
+
- Parameter count: 3B
|
| 40 |
+
- Input support: text
|
| 41 |
+
- MTP: no
|
| 42 |
+
- imatrix: yes - [details](#imatrix)
|
| 43 |
+
|
| 44 |
+
[How to run](#how-to-run)
|
| 45 |
+
|
| 46 |
+
## Prompt format
|
| 47 |
+
|
| 48 |
+
```
|
| 49 |
+
<|startoftext|><|im_start|>system
|
| 50 |
+
{system_prompt}<|im_end|>
|
| 51 |
+
<|im_start|>user
|
| 52 |
+
{prompt}<|im_end|>
|
| 53 |
+
<|im_start|>assistant
|
| 54 |
+
<think>
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
**Don't know which to choose?** Grab [Q4_K_M](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q4_K_M.gguf) (1.68GB) - usually a good mix of size and performance. Download instructions available [here](#downloading-using-the-hugging-face-cli)
|
| 58 |
+
|
| 59 |
+
## Available files:
|
| 60 |
+
|
| 61 |
+
| Filename | Quant type | File Size | Split | Description |
|
| 62 |
+
| -------- | ---------- | --------- | ----- | ----------- |
|
| 63 |
+
| [LiquidAI_LFM2.5-2.6B-bf16.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-bf16.gguf) | bf16 | 5.40GB | false | Full BF16 weights. |
|
| 64 |
+
| [LiquidAI_LFM2.5-2.6B-Q8_0.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q8_0.gguf) | Q8_0 | 2.87GB | false | Extremely high quality, generally unneeded but max available quant. |
|
| 65 |
+
| [LiquidAI_LFM2.5-2.6B-Q6_K_L.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q6_K_L.gguf) | Q6_K_L | 2.30GB | false | Uses Q8_0 for embed and output weights. Very high quality, near perfect, *recommended*. |
|
| 66 |
+
| [LiquidAI_LFM2.5-2.6B-Q6_K.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q6_K.gguf) | Q6_K | 2.24GB | false | Very high quality, near perfect, *recommended*. |
|
| 67 |
+
| [LiquidAI_LFM2.5-2.6B-Q5_K_L.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q5_K_L.gguf) | Q5_K_L | 2.01GB | false | Uses Q8_0 for embed and output weights. High quality, *recommended*. |
|
| 68 |
+
| [LiquidAI_LFM2.5-2.6B-Q5_K_M.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q5_K_M.gguf) | Q5_K_M | 1.95GB | false | High quality, *recommended*. |
|
| 69 |
+
| [LiquidAI_LFM2.5-2.6B-Q5_K_S.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q5_K_S.gguf) | Q5_K_S | 1.90GB | false | High quality, *recommended*. |
|
| 70 |
+
| [LiquidAI_LFM2.5-2.6B-Q4_1.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q4_1.gguf) | Q4_1 | 1.75GB | false | Legacy format, similar performance to Q4_K_S but with improved tokens/watt on Apple silicon. |
|
| 71 |
+
| [LiquidAI_LFM2.5-2.6B-Q4_K_L.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q4_K_L.gguf) | Q4_K_L | 1.75GB | false | Uses Q8_0 for embed and output weights. Good quality, *recommended*. |
|
| 72 |
+
| [LiquidAI_LFM2.5-2.6B-Q4_K_M.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q4_K_M.gguf) | Q4_K_M | 1.68GB | false | Good quality, default size for most use cases, *recommended*. |
|
| 73 |
+
| [LiquidAI_LFM2.5-2.6B-Q4_K_S.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q4_K_S.gguf) | Q4_K_S | 1.61GB | false | Slightly lower quality with more space savings, *recommended*. |
|
| 74 |
+
| [LiquidAI_LFM2.5-2.6B-Q4_0.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q4_0.gguf) | Q4_0 | 1.60GB | false | Legacy format, kept for compatibility with older tools. |
|
| 75 |
+
| [LiquidAI_LFM2.5-2.6B-IQ4_NL.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-IQ4_NL.gguf) | IQ4_NL | 1.60GB | false | Similar to IQ4_XS, but slightly larger. |
|
| 76 |
+
| [LiquidAI_LFM2.5-2.6B-IQ4_XS.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-IQ4_XS.gguf) | IQ4_XS | 1.52GB | false | Decent quality, smaller than Q4_K_S with similar performance, *recommended*. |
|
| 77 |
+
| [LiquidAI_LFM2.5-2.6B-Q3_K_XL.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q3_K_XL.gguf) | Q3_K_XL | 1.52GB | false | Uses Q8_0 for embed and output weights. Lower quality but usable, good for low RAM availability. |
|
| 78 |
+
| [LiquidAI_LFM2.5-2.6B-Q3_K_L.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q3_K_L.gguf) | Q3_K_L | 1.45GB | false | Lower quality but usable, good for low RAM availability. |
|
| 79 |
+
| [LiquidAI_LFM2.5-2.6B-Q3_K_M.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q3_K_M.gguf) | Q3_K_M | 1.37GB | false | Low quality. |
|
| 80 |
+
| [LiquidAI_LFM2.5-2.6B-IQ3_M.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-IQ3_M.gguf) | IQ3_M | 1.29GB | false | Medium-low quality, new method with decent performance comparable to Q3_K_M. |
|
| 81 |
+
| [LiquidAI_LFM2.5-2.6B-Q3_K_S.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q3_K_S.gguf) | Q3_K_S | 1.28GB | false | Low quality, not recommended. |
|
| 82 |
+
| [LiquidAI_LFM2.5-2.6B-IQ3_XS.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-IQ3_XS.gguf) | IQ3_XS | 1.23GB | false | Lower quality, new method with decent performance, slightly better than Q3_K_S. |
|
| 83 |
+
| [LiquidAI_LFM2.5-2.6B-Q2_K_L.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q2_K_L.gguf) | Q2_K_L | 1.17GB | false | Uses Q8_0 for embed and output weights. Very low quality but surprisingly usable. |
|
| 84 |
+
| [LiquidAI_LFM2.5-2.6B-IQ3_XXS.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-IQ3_XXS.gguf) | IQ3_XXS | 1.13GB | false | Lower quality, new method with decent performance, comparable to Q3 quants. |
|
| 85 |
+
| [LiquidAI_LFM2.5-2.6B-Q2_K.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-Q2_K.gguf) | Q2_K | 1.10GB | false | Very low quality but surprisingly usable. |
|
| 86 |
+
| [LiquidAI_LFM2.5-2.6B-IQ2_M.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-IQ2_M.gguf) | IQ2_M | 1.02GB | false | Relatively low quality, uses SOTA techniques to be surprisingly usable. |
|
| 87 |
+
|
| 88 |
+
Download a specific file:
|
| 89 |
+
|
| 90 |
+
```
|
| 91 |
+
hf download bartowski/LiquidAI_LFM2.5-2.6B-GGUF --include "LiquidAI_LFM2.5-2.6B-Q4_K_M.gguf" --local-dir ./
|
| 92 |
+
```
|
| 93 |
+
|
| 94 |
+
## Downloading using the Hugging Face CLI
|
| 95 |
+
|
| 96 |
+
<details>
|
| 97 |
+
<summary>Click to view download instructions</summary>
|
| 98 |
+
|
| 99 |
+
First, make sure you have the Hugging Face CLI installed:
|
| 100 |
+
|
| 101 |
+
```
|
| 102 |
+
pip install -U "huggingface_hub[cli]"
|
| 103 |
+
```
|
| 104 |
+
|
| 105 |
+
Download a specific file:
|
| 106 |
+
|
| 107 |
+
```
|
| 108 |
+
hf download bartowski/LiquidAI_LFM2.5-2.6B-GGUF --include "LiquidAI_LFM2.5-2.6B-Q4_K_M.gguf" --local-dir ./
|
| 109 |
+
```
|
| 110 |
+
|
| 111 |
+
</details>
|
| 112 |
+
|
| 113 |
+
## How to run
|
| 114 |
+
|
| 115 |
+
These quants run with [llama.cpp](https://github.com/ggml-org/llama.cpp) - installable in one line via [llama.app](https://llama.app/):
|
| 116 |
+
|
| 117 |
+
```
|
| 118 |
+
curl -LsSf https://llama.app/install.sh | sh
|
| 119 |
+
llama-server -hf bartowski/LiquidAI_LFM2.5-2.6B-GGUF:Q4_K_M
|
| 120 |
+
```
|
| 121 |
+
|
| 122 |
+
llama-server includes a built-in chat web UI, served at http://localhost:8080 by default.
|
| 123 |
+
|
| 124 |
+
These quants were made with llama.cpp release b10262 - if this model's architecture is newly supported, you'll need that release or newer to run them.
|
| 125 |
+
|
| 126 |
+
They also work in: [LM Studio](https://lmstudio.ai/) 路 [koboldcpp](https://github.com/LostRuins/koboldcpp) 路 [ramalama](https://github.com/containers/ramalama) 路 [Jan AI](https://www.jan.ai/) 路 [Text Generation Web UI](https://github.com/oobabooga/text-generation-webui) 路 [LoLLMs](https://github.com/ParisNeo/lollms) 路 [Atomic Chat](https://atomic.chat/)
|
| 127 |
+
|
| 128 |
+
## imatrix
|
| 129 |
+
|
| 130 |
+
All quants made using imatrix option with dataset from [here](https://gist.github.com/bartowski1182/82ae9b520227f57d79ba04add13d0d0d). The imatrix is available here: [LiquidAI_LFM2.5-2.6B-imatrix.gguf](https://huggingface.co/bartowski/LiquidAI_LFM2.5-2.6B-GGUF/blob/main/LiquidAI_LFM2.5-2.6B-imatrix.gguf).
|
| 131 |
+
|
| 132 |
+
## Embed/output weights
|
| 133 |
+
|
| 134 |
+
Some of these quants (Q3_K_XL, Q4_K_L etc) are the standard quantization method with the embeddings and output weights quantized to Q8_0 instead of what they would normally default to.
|
| 135 |
+
|
| 136 |
+
## ARM/AVX information
|
| 137 |
+
|
| 138 |
+
llama.cpp automatically "repacks" weights into an interleaved layout at load time for faster inference on ARM and AVX machines - details in [this PR](https://github.com/ggml-org/llama.cpp/pull/9921). This once required downloading special Q4_0_4_4/4_8/8_8 files; those are long gone. Online repacking now covers Q4_0, IQ4_NL, and most K-quants, so no special quant choice is needed for CPU inference.
|
| 139 |
+
|
| 140 |
+
## Which file should I choose?
|
| 141 |
+
|
| 142 |
+
<details>
|
| 143 |
+
<summary>Click here for details</summary>
|
| 144 |
+
|
| 145 |
+
An older (early 2024) but still useful write-up with charts comparing quant performances is provided by Artefact2 [here](https://gist.github.com/Artefact2/b5f810600771265fc1e39442288e8ec9)
|
| 146 |
+
|
| 147 |
+
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.
|
| 148 |
+
|
| 149 |
+
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.
|
| 150 |
+
|
| 151 |
+
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.
|
| 152 |
+
|
| 153 |
+
Hugging Face can also do this math for you: add your hardware in your [Local Apps settings](https://huggingface.co/settings/local-apps) and the model page will show which files fit.
|
| 154 |
+
|
| 155 |
+
Next, you'll need to decide if you want to use an 'I-quant' or a 'K-quant'.
|
| 156 |
+
|
| 157 |
+
If you don't want to think too much, grab one of the K-quants. These are in format 'QX_K_X', like Q5_K_M.
|
| 158 |
+
|
| 159 |
+
If you want to get more into the weeds, you can check out this extremely useful feature chart:
|
| 160 |
+
|
| 161 |
+
[llama.cpp feature matrix](https://github.com/ggml-org/llama.cpp/wiki/Feature-matrix)
|
| 162 |
+
|
| 163 |
+
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 IQX_X, like IQ3_M. These are newer and offer better performance for their size.
|
| 164 |
+
|
| 165 |
+
These I-quants can also be used on CPU, but will be slower than their K-quant equivalent, so speed vs performance is a tradeoff you'll have to decide.
|
| 166 |
+
|
| 167 |
+
</details>
|
| 168 |
+
|
| 169 |
+
## Credits
|
| 170 |
+
|
| 171 |
+
Thank you kalomaze and Dampf for assistance in creating the imatrix calibration dataset.
|
| 172 |
+
|
| 173 |
+
Thank you ZeroWw for the inspiration to experiment with embed/output.
|
| 174 |
+
|
| 175 |
+
Want to support my work? Visit my ko-fi page here: https://ko-fi.com/bartowski
|