Transformers
GGUF
English
text-generation-inference
unsloth
qwen2
trl
gammacorpus
zurich
chat
conversational
imatrix
Instructions to use mradermacher/Zurich-1.5B-GCv2-1m-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Zurich-1.5B-GCv2-1m-i1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Zurich-1.5B-GCv2-1m-i1-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Zurich-1.5B-GCv2-1m-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/Zurich-1.5B-GCv2-1m-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Zurich-1.5B-GCv2-1m-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/Zurich-1.5B-GCv2-1m-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Zurich-1.5B-GCv2-1m-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/Zurich-1.5B-GCv2-1m-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Zurich-1.5B-GCv2-1m-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/Zurich-1.5B-GCv2-1m-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Zurich-1.5B-GCv2-1m-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Zurich-1.5B-GCv2-1m-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Zurich-1.5B-GCv2-1m-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/Zurich-1.5B-GCv2-1m-i1-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use mradermacher/Zurich-1.5B-GCv2-1m-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/Zurich-1.5B-GCv2-1m-i1-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": "mradermacher/Zurich-1.5B-GCv2-1m-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/Zurich-1.5B-GCv2-1m-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Zurich-1.5B-GCv2-1m-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Zurich-1.5B-GCv2-1m-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Zurich-1.5B-GCv2-1m-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Zurich-1.5B-GCv2-1m-i1-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/Zurich-1.5B-GCv2-1m-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/Zurich-1.5B-GCv2-1m-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/Zurich-1.5B-GCv2-1m-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/Zurich-1.5B-GCv2-1m-i1-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/Zurich-1.5B-GCv2-1m-i1-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 "mradermacher/Zurich-1.5B-GCv2-1m-i1-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"
uploaded from rain
Browse files- .gitattributes +24 -0
- Zurich-1.5B-GCv2-1m.i1-IQ1_M.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-IQ1_S.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-IQ2_M.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-IQ2_S.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-IQ2_XS.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-IQ2_XXS.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-IQ3_M.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-IQ3_S.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-IQ3_XS.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-IQ3_XXS.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-IQ4_NL.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-IQ4_XS.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-Q2_K.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-Q2_K_S.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-Q3_K_L.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-Q3_K_M.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-Q3_K_S.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-Q4_0.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-Q4_1.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-Q4_K_M.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-Q4_K_S.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-Q5_K_M.gguf +3 -0
- Zurich-1.5B-GCv2-1m.i1-Q5_K_S.gguf +3 -0
- Zurich-1.5B-GCv2-1m.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 |
imatrix.dat 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 |
imatrix.dat filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Zurich-1.5B-GCv2-1m.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Zurich-1.5B-GCv2-1m.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Zurich-1.5B-GCv2-1m.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Zurich-1.5B-GCv2-1m.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Zurich-1.5B-GCv2-1m.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Zurich-1.5B-GCv2-1m.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Zurich-1.5B-GCv2-1m.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Zurich-1.5B-GCv2-1m.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Zurich-1.5B-GCv2-1m.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Zurich-1.5B-GCv2-1m.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Zurich-1.5B-GCv2-1m.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Zurich-1.5B-GCv2-1m.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Zurich-1.5B-GCv2-1m.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Zurich-1.5B-GCv2-1m.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Zurich-1.5B-GCv2-1m.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Zurich-1.5B-GCv2-1m.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Zurich-1.5B-GCv2-1m.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Zurich-1.5B-GCv2-1m.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
Zurich-1.5B-GCv2-1m.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
Zurich-1.5B-GCv2-1m.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
Zurich-1.5B-GCv2-1m.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
Zurich-1.5B-GCv2-1m.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
Zurich-1.5B-GCv2-1m.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
Zurich-1.5B-GCv2-1m.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
Zurich-1.5B-GCv2-1m.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:83a29aa1f5ae1731088ed984519dc21148ecc9dd2f0b37853dc2ef9e3de35328
|
| 3 |
+
size 464462784
|
Zurich-1.5B-GCv2-1m.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88490dd0ec826169088e11f95537f68d8b419aee406478fecb2caa3cf98a982a
|
| 3 |
+
size 436529088
|
Zurich-1.5B-GCv2-1m.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:058aca25efaa336750ab7e91ef9903ef83023d4822453797b345abaaefda1398
|
| 3 |
+
size 601056192
|
Zurich-1.5B-GCv2-1m.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c25d7f1c207a78ac19413258173011f839d438c5bc2197f4032fa3afd1efbd1f
|
| 3 |
+
size 563811264
|
Zurich-1.5B-GCv2-1m.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e556f69a5bbec528b4a5494b156ef8ea7beb46964194d71a1400057a47b78eb6
|
| 3 |
+
size 550328256
|
Zurich-1.5B-GCv2-1m.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f2be01991ca737e1b9d7c53b52a6453bf1ed1b2b481e54267901c102d6f1b1c0
|
| 3 |
+
size 511018944
|
Zurich-1.5B-GCv2-1m.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e15c3bf67057fccd51b013ead52e102d95669a015733d69d920d42bbc6799ad
|
| 3 |
+
size 776665536
|
Zurich-1.5B-GCv2-1m.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11d5cea91ace37897827048112ff67175d3fa8cbdba6c94d7d97afa9b8cb68dc
|
| 3 |
+
size 762408384
|
Zurich-1.5B-GCv2-1m.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc2952c81a92e03b14c0e37b870f87805ddf2bf02a93b6dec93285afad5a87a9
|
| 3 |
+
size 731700672
|
Zurich-1.5B-GCv2-1m.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2df38be469b9801af0026d328f17245d5c83420d87e4dfadef33846490c4a3db
|
| 3 |
+
size 668793792
|
Zurich-1.5B-GCv2-1m.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99fa751b76f394f9d72b1a0b996e179fae14d571a93344890938fc15ac1bb10a
|
| 3 |
+
size 936332736
|
Zurich-1.5B-GCv2-1m.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a77927f0a9fb01fa089349818fdad10e464133f2c66b22421fe443c3ff2c1004
|
| 3 |
+
size 895733184
|
Zurich-1.5B-GCv2-1m.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:584838a12024f6cb9ee70bcbfbe7a471abbd1925f29cb92f7a20a21181260f63
|
| 3 |
+
size 676306368
|
Zurich-1.5B-GCv2-1m.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a605f0af8e77f6ffb19b64536173c1228e87e66cbdb28b9ba72653c8f755e33e
|
| 3 |
+
size 640136640
|
Zurich-1.5B-GCv2-1m.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:64223aba504a688835b1c9a3a5f4114ebaa1f5f805006afb2a629001e1b3a5ff
|
| 3 |
+
size 880164288
|
Zurich-1.5B-GCv2-1m.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b14db1dd9c0d6f0ea640ae96f024d26cdb41f80682e27d6d763d43dc13b7bca4
|
| 3 |
+
size 824180160
|
Zurich-1.5B-GCv2-1m.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0896b2fbdac3d642e1cdcdd30433c72a18d0e14935062d8ca446703e0a7787bf
|
| 3 |
+
size 760946112
|
Zurich-1.5B-GCv2-1m.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:93c24ae9789c569b228024047f7a4cee5bb72860ad64f31155f75654fff78d15
|
| 3 |
+
size 937536960
|
Zurich-1.5B-GCv2-1m.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:efd858a74b2df4c43f7943856741c532109333b9fdb4d25a952c82ded807eb6e
|
| 3 |
+
size 1016843712
|
Zurich-1.5B-GCv2-1m.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:623cb05c6ea31cac8b9a55c3262762a64208b5b98b0e4d8d20aedc7c79b9e95b
|
| 3 |
+
size 986049984
|
Zurich-1.5B-GCv2-1m.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a45229b273bdb1da1bca028e2ab58af13033c236fcc3cda708fe5fd17f36d0f
|
| 3 |
+
size 940314048
|
Zurich-1.5B-GCv2-1m.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e02e21d47e86625adff2eb46662bb468999d016436d5675e53238aa7c445e17d
|
| 3 |
+
size 1125051840
|
Zurich-1.5B-GCv2-1m.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1cb8ca2021ecc1f1cd0a5a51deb24697caa3359bcadb80bafb218048133e56f3
|
| 3 |
+
size 1098730944
|
Zurich-1.5B-GCv2-1m.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:89376b73a6b11fd7753caf9eef0bf63007ab541624262aac89053a6de2ef1330
|
| 3 |
+
size 1272741312
|