Instructions to use mradermacher/BlackSheep-Llama3.2-3B-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/BlackSheep-Llama3.2-3B-i1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/BlackSheep-Llama3.2-3B-i1-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/BlackSheep-Llama3.2-3B-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/BlackSheep-Llama3.2-3B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/BlackSheep-Llama3.2-3B-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/BlackSheep-Llama3.2-3B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/BlackSheep-Llama3.2-3B-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/BlackSheep-Llama3.2-3B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/BlackSheep-Llama3.2-3B-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/BlackSheep-Llama3.2-3B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/BlackSheep-Llama3.2-3B-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/BlackSheep-Llama3.2-3B-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/BlackSheep-Llama3.2-3B-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/BlackSheep-Llama3.2-3B-i1-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use mradermacher/BlackSheep-Llama3.2-3B-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/BlackSheep-Llama3.2-3B-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/BlackSheep-Llama3.2-3B-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/BlackSheep-Llama3.2-3B-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/BlackSheep-Llama3.2-3B-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/BlackSheep-Llama3.2-3B-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/BlackSheep-Llama3.2-3B-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.BlackSheep-Llama3.2-3B-i1-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/BlackSheep-Llama3.2-3B-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/BlackSheep-Llama3.2-3B-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/BlackSheep-Llama3.2-3B-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/BlackSheep-Llama3.2-3B-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/BlackSheep-Llama3.2-3B-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/BlackSheep-Llama3.2-3B-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
- BlackSheep-Llama3.2-3B.i1-IQ1_M.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-IQ1_S.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-IQ2_M.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-IQ2_S.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-IQ2_XS.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-IQ2_XXS.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-IQ3_M.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-IQ3_S.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-IQ3_XS.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-IQ3_XXS.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-IQ4_NL.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-IQ4_XS.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-Q2_K.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-Q2_K_S.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-Q3_K_L.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-Q3_K_M.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-Q3_K_S.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-Q4_0.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-Q4_1.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-Q4_K_M.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-Q4_K_S.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-Q5_K_M.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-Q5_K_S.gguf +3 -0
- BlackSheep-Llama3.2-3B.i1-Q6_K.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,27 @@ saved_model/**/* 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
BlackSheep-Llama3.2-3B.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
BlackSheep-Llama3.2-3B.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
BlackSheep-Llama3.2-3B.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
BlackSheep-Llama3.2-3B.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
BlackSheep-Llama3.2-3B.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
BlackSheep-Llama3.2-3B.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
BlackSheep-Llama3.2-3B.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
BlackSheep-Llama3.2-3B.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
BlackSheep-Llama3.2-3B.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
BlackSheep-Llama3.2-3B.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
BlackSheep-Llama3.2-3B.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
BlackSheep-Llama3.2-3B.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
BlackSheep-Llama3.2-3B.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
BlackSheep-Llama3.2-3B.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
BlackSheep-Llama3.2-3B.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
BlackSheep-Llama3.2-3B.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
BlackSheep-Llama3.2-3B.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
BlackSheep-Llama3.2-3B.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
BlackSheep-Llama3.2-3B.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
BlackSheep-Llama3.2-3B.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
BlackSheep-Llama3.2-3B.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
BlackSheep-Llama3.2-3B.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
BlackSheep-Llama3.2-3B.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
BlackSheep-Llama3.2-3B.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
BlackSheep-Llama3.2-3B.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8927c8254ab21847829b45996a58ae319e73163b3216162d7bec11a9a3fb0afc
|
| 3 |
+
size 924191424
|
BlackSheep-Llama3.2-3B.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:faaae572024880cf38555da90fccebf7b7e3cc820ab9fcb4dfe3cebfed0f81a3
|
| 3 |
+
size 868158144
|
BlackSheep-Llama3.2-3B.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c491d42ae14abcdaee55684c36b3836cb01b5bd8e9dacd7a079381fce799358
|
| 3 |
+
size 1229032128
|
BlackSheep-Llama3.2-3B.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:022633d68231b7a254e719343c7823e33dd1fad7c36a519b30f9221c9bbdcc2c
|
| 3 |
+
size 1154321088
|
BlackSheep-Llama3.2-3B.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48f93b6a6a520d28ac3a6e715a3bf0b4f84599e62708dc6a46bd27fd2a32a7e4
|
| 3 |
+
size 1100548800
|
BlackSheep-Llama3.2-3B.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:068e345632829b2b404c731583a5825ad9127a24ed2aae6d53dd7b29d591999e
|
| 3 |
+
size 1017580224
|
BlackSheep-Llama3.2-3B.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67c1f80442a50ac092fcd05112593e8b3904db4c24411a42ceeefea1108af922
|
| 3 |
+
size 1599668928
|
BlackSheep-Llama3.2-3B.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4f51c76d392ea35b99224d7572656a940788f95fbae184f96e535786e33efbc
|
| 3 |
+
size 1542849216
|
BlackSheep-Llama3.2-3B.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b0e6e9555142b1abb6806a80e495de93ad131078a8031f4b39791e1066b74ce
|
| 3 |
+
size 1476788928
|
BlackSheep-Llama3.2-3B.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:96d2b0c234d0c39f7a2fd58cf2dbbf11ef0556abd477eb22501b2aad61650cdc
|
| 3 |
+
size 1348766400
|
BlackSheep-Llama3.2-3B.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cbec97369e500da930d389aa43131c049a3dd84bd45972c32992faa352744e51
|
| 3 |
+
size 1917190848
|
BlackSheep-Llama3.2-3B.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95c9c699b3f8f81410ee415515e7355a48e2d94b1088dd59993aeda22d448ffb
|
| 3 |
+
size 1829110464
|
BlackSheep-Llama3.2-3B.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24259d17b7151988701a06bf7e7dbfaac2ddb6f3d4bfc5647c9b2b177f09dd31
|
| 3 |
+
size 1363935936
|
BlackSheep-Llama3.2-3B.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19b1cbd5751b5d0e2a7d69a55d7d7e74a152851383a8c5410576f8e79a3adcb0
|
| 3 |
+
size 1274282688
|
BlackSheep-Llama3.2-3B.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db5c66f988dd65c410ac970a9165978fe0cf5dce687a01f7a281b2b18ef48ee7
|
| 3 |
+
size 1815347904
|
BlackSheep-Llama3.2-3B.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:988cd34d4dae1d5c6c121229104ce004b8bc6f007c01e3ba5aed7fee2d13a9bf
|
| 3 |
+
size 1687159488
|
BlackSheep-Llama3.2-3B.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:33257e07188c666a2e682e4e1ae3eb9e57f0f11f4f9d1cc2faa895f82c4a4f7d
|
| 3 |
+
size 1542849216
|
BlackSheep-Llama3.2-3B.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b859fd814dc4f816311ff21cd434ab829611df300f7d934ed8c3697e9f83f43
|
| 3 |
+
size 1921909440
|
BlackSheep-Llama3.2-3B.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:923f89d9406a42c8c4ebf799932a277bae609abfdabbe6c214eb509cfb9f87d6
|
| 3 |
+
size 2093351616
|
BlackSheep-Llama3.2-3B.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:23340aa97f58f05d8b88e698cf719737dbd68e3ba4e441e2fbbd5834a9d2b8dc
|
| 3 |
+
size 2019377856
|
BlackSheep-Llama3.2-3B.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:937f48540b11e373417026925f1d003907fa8a6131cf9472e24bd0a6a9bd0e15
|
| 3 |
+
size 1928200896
|
BlackSheep-Llama3.2-3B.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e647a69d9e7daf5bab0b0e55117ba2f717a4d2b3ae6523a19de879d0d451fb6
|
| 3 |
+
size 2322154176
|
BlackSheep-Llama3.2-3B.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:849c5d51d7a44c39d3eec1a9b7ab223831dcb11b409d716d17e195cc8a011263
|
| 3 |
+
size 2269512384
|
BlackSheep-Llama3.2-3B.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f2c83ff0dafe0c9f91e38128e3aa36ec9088fd05ec94764ca7339119a6733d2d
|
| 3 |
+
size 2643854016
|