Instructions to use mradermacher/Verus-R1-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Verus-R1-i1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Verus-R1-i1-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/Verus-R1-i1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/Verus-R1-i1-GGUF", filename="Verus-R1.i1-IQ1_M.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Verus-R1-i1-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 mradermacher/Verus-R1-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Verus-R1-i1-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 mradermacher/Verus-R1-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Verus-R1-i1-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 mradermacher/Verus-R1-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Verus-R1-i1-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 mradermacher/Verus-R1-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Verus-R1-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Verus-R1-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Verus-R1-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/Verus-R1-i1-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Verus-R1-i1-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for mradermacher/Verus-R1-i1-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for mradermacher/Verus-R1-i1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/Verus-R1-i1-GGUF to start chatting
- Pi
How to use mradermacher/Verus-R1-i1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/Verus-R1-i1-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "mradermacher/Verus-R1-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/Verus-R1-i1-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 mradermacher/Verus-R1-i1-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 mradermacher/Verus-R1-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/Verus-R1-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Verus-R1-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Verus-R1-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Verus-R1-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Verus-R1-i1-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from nico1
Browse files- .gitattributes +24 -0
- Verus-R1.i1-IQ1_M.gguf +3 -0
- Verus-R1.i1-IQ1_S.gguf +3 -0
- Verus-R1.i1-IQ2_M.gguf +3 -0
- Verus-R1.i1-IQ2_S.gguf +3 -0
- Verus-R1.i1-IQ2_XS.gguf +3 -0
- Verus-R1.i1-IQ2_XXS.gguf +3 -0
- Verus-R1.i1-IQ3_M.gguf +3 -0
- Verus-R1.i1-IQ3_S.gguf +3 -0
- Verus-R1.i1-IQ3_XS.gguf +3 -0
- Verus-R1.i1-IQ3_XXS.gguf +3 -0
- Verus-R1.i1-IQ4_NL.gguf +3 -0
- Verus-R1.i1-IQ4_XS.gguf +3 -0
- Verus-R1.i1-Q2_K.gguf +3 -0
- Verus-R1.i1-Q2_K_S.gguf +3 -0
- Verus-R1.i1-Q3_K_L.gguf +3 -0
- Verus-R1.i1-Q3_K_M.gguf +3 -0
- Verus-R1.i1-Q3_K_S.gguf +3 -0
- Verus-R1.i1-Q4_0.gguf +3 -0
- Verus-R1.i1-Q4_1.gguf +3 -0
- Verus-R1.i1-Q4_K_M.gguf +3 -0
- Verus-R1.i1-Q4_K_S.gguf +3 -0
- Verus-R1.i1-Q5_K_M.gguf +3 -0
- Verus-R1.i1-Q5_K_S.gguf +3 -0
- Verus-R1.i1-Q6_K.gguf +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,27 @@ saved_model/**/* 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 |
Verus-R1.imatrix.gguf 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 |
Verus-R1.imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Verus-R1.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Verus-R1.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Verus-R1.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Verus-R1.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Verus-R1.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Verus-R1.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Verus-R1.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Verus-R1.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Verus-R1.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Verus-R1.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Verus-R1.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Verus-R1.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Verus-R1.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Verus-R1.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Verus-R1.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Verus-R1.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Verus-R1.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Verus-R1.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
Verus-R1.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
Verus-R1.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
Verus-R1.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
Verus-R1.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
Verus-R1.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
Verus-R1.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
Verus-R1.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5314710b2f7b38289bbc7d10d9fb63713fee357944dcb2177e27fa6cfa4a8a56
|
| 3 |
+
size 748204544
|
Verus-R1.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fe245cbe69b523723d02a3464c12af3b7d7e0c3193f65c44d9bb3b3040ead0f4
|
| 3 |
+
size 722961920
|
Verus-R1.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:54f32a65e4542c56763a3e4a0811d066dea1d23a73ecba555b60aee292d828f5
|
| 3 |
+
size 865748480
|
Verus-R1.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5e4f9e373fe62327c2cbd227a821b3a6ce5defadd39231005d8597605dc4c46b
|
| 3 |
+
size 832091648
|
Verus-R1.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8794694ddb4d391cf8500567bbbdc25a4ab45606997d3c287d9f0df9509d6193
|
| 3 |
+
size 824718848
|
Verus-R1.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d44bd80f91647f55eb9cdd25e01e82ecaec8e11d30295df9a2d1bc16ac20fa8e
|
| 3 |
+
size 790275584
|
Verus-R1.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c9849647f7f9170f27ca349c4f1161493a4ecdd3e6f6efc4ea7bc51bf363d87
|
| 3 |
+
size 1059446272
|
Verus-R1.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f0f086764b8d1d0327f97f1e55db19533c6e721df25c5f985d8fcfa9f3fcfb6
|
| 3 |
+
size 1051090432
|
Verus-R1.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:331023ec58cdcbdb1f545b3261c64c8c470457ddfed2b060f78a08107512dca8
|
| 3 |
+
size 1027202560
|
Verus-R1.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6064adde50ddebbd8420fa53702128a9c28a74f18553b45572ff30fc0e49b60b
|
| 3 |
+
size 927753728
|
Verus-R1.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:980acf7b8f65d5118671369886ac5d445e5553ff90ceed5980bc87c5f506350d
|
| 3 |
+
size 1231585792
|
Verus-R1.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fd3171bd3e764e2e23ba27c3fe1179729fa1e547283085494acecab36aed0d0
|
| 3 |
+
size 1195962880
|
Verus-R1.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9ca7f54eca16f14050fef96d801332b02c1dcee8d46183ca53f30694eaaeafe
|
| 3 |
+
size 968542720
|
Verus-R1.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:261afef526ede9e59cfb00ae3b002b3e04bb2b6a896fe2c064a1c552fc4658d1
|
| 3 |
+
size 944163328
|
Verus-R1.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90ce50b78e7ae8b9725f183d9e03f2c8c0c82c6ed6e3b1f0aab181cc2b4c1c98
|
| 3 |
+
size 1164533248
|
Verus-R1.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:28fd78637f04bb6e9d5fda0894fa4d1f3376ab5c980e985a54c633301b9ad160
|
| 3 |
+
size 1099259392
|
Verus-R1.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7734f3087347c6491a9a6b372e7392947f1a00011b00503df3f8447d6c7a6b6
|
| 3 |
+
size 1020173824
|
Verus-R1.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2975f1efe290edfb6eb89498787b1cf4baaf3d2fce05994c8e10556a9a7bc835
|
| 3 |
+
size 1204847104
|
Verus-R1.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a181c42ceed949a43a4aea77f717c2014813e4ad10cf888b986fb21d2fbc3c81
|
| 3 |
+
size 1288282624
|
Verus-R1.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d35003557ffa755fd38621fdd508748ccd0934d3aadc3b1312725325c1d01308
|
| 3 |
+
size 1274397184
|
Verus-R1.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2302f2c4b5e4b426307ad87cad677489155323a7a9cfa99362a980d236baf33b
|
| 3 |
+
size 1212056064
|
Verus-R1.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:efaffc0b26f713c9c25db3b8618727bffbd7261115dd109f1ea4012fbe2e18f9
|
| 3 |
+
size 1411121664
|
Verus-R1.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b620eb3955486c737c966ace8dd46a72038421a9ca2e95e45eef6b709b5e0dcc
|
| 3 |
+
size 1374077440
|
Verus-R1.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1773ecad9917d553dee6191cb979fe86590f4db202d8e700d93d19508ea8addc
|
| 3 |
+
size 1556391424
|