Instructions to use mradermacher/Wiki-R1-3B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Wiki-R1-3B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Wiki-R1-3B-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/Wiki-R1-3B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/Wiki-R1-3B-GGUF", filename="Wiki-R1-3B.IQ4_XS.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/Wiki-R1-3B-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/Wiki-R1-3B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Wiki-R1-3B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/Wiki-R1-3B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Wiki-R1-3B-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/Wiki-R1-3B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Wiki-R1-3B-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/Wiki-R1-3B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Wiki-R1-3B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Wiki-R1-3B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Wiki-R1-3B-GGUF with Ollama:
ollama run hf.co/mradermacher/Wiki-R1-3B-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Wiki-R1-3B-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/Wiki-R1-3B-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/Wiki-R1-3B-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/Wiki-R1-3B-GGUF to start chatting
- Pi
How to use mradermacher/Wiki-R1-3B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf mradermacher/Wiki-R1-3B-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/Wiki-R1-3B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/Wiki-R1-3B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf mradermacher/Wiki-R1-3B-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/Wiki-R1-3B-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use mradermacher/Wiki-R1-3B-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Wiki-R1-3B-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Wiki-R1-3B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Wiki-R1-3B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Wiki-R1-3B-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from nico1
Browse files- .gitattributes +12 -0
- Wiki-R1-3B.IQ4_XS.gguf +3 -0
- Wiki-R1-3B.Q2_K.gguf +3 -0
- Wiki-R1-3B.Q3_K_L.gguf +3 -0
- Wiki-R1-3B.Q3_K_M.gguf +3 -0
- Wiki-R1-3B.Q3_K_S.gguf +3 -0
- Wiki-R1-3B.Q4_K_M.gguf +3 -0
- Wiki-R1-3B.Q4_K_S.gguf +3 -0
- Wiki-R1-3B.Q5_K_M.gguf +3 -0
- Wiki-R1-3B.Q5_K_S.gguf +3 -0
- Wiki-R1-3B.Q6_K.gguf +3 -0
- Wiki-R1-3B.Q8_0.gguf +3 -0
- Wiki-R1-3B.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -35,3 +35,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
Wiki-R1-3B.mmproj-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
Wiki-R1-3B.mmproj-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
Wiki-R1-3B.mmproj-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
Wiki-R1-3B.mmproj-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Wiki-R1-3B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Wiki-R1-3B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Wiki-R1-3B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Wiki-R1-3B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Wiki-R1-3B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Wiki-R1-3B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Wiki-R1-3B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Wiki-R1-3B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Wiki-R1-3B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Wiki-R1-3B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Wiki-R1-3B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Wiki-R1-3B.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Wiki-R1-3B.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af01ef201ba1ccd872aeda302f95e77f85cdddfaf15b4ab0990d4634d7a4c441
|
| 3 |
+
size 1918491584
|
Wiki-R1-3B.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0aa238522865559e2d6fe0605308a065c1b419d22672a3f79cc68c0c0f1acb01
|
| 3 |
+
size 1376857024
|
Wiki-R1-3B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71696909d65ef57d20f3bbefb3f9e7262acc1c6666b8d36e3c02966b8c22f837
|
| 3 |
+
size 1841095616
|
Wiki-R1-3B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43da69e1c1f91bfc4334e4c96396d540677468198d06165a862dcebe322b2ec5
|
| 3 |
+
size 1724179392
|
Wiki-R1-3B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf9c36e756cd03a416cd24d4e4f3b8f0375b8924b04f12daa40b73924a340241
|
| 3 |
+
size 1588061120
|
Wiki-R1-3B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:652f21079d6fe967a9406d04379dbe71e2c7f1169c883bfce334799d7efc2e7d
|
| 3 |
+
size 2104933312
|
Wiki-R1-3B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f91d7d944801d372dd601a59f0e686184dbb9577f0ea8f150ad345c17d19a912
|
| 3 |
+
size 2009414592
|
Wiki-R1-3B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:64a3f7ce84c6c934e07cace0bab85f6fdbaf1b961d1f71d489ac90092b8270af
|
| 3 |
+
size 2438740928
|
Wiki-R1-3B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:694edf5146cf8ce93d962b5721256877780d9def901421f5d7b035cba8c977a5
|
| 3 |
+
size 2383592384
|
Wiki-R1-3B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0176758f7187a226ea5b10d2259bec3c4e5bfed40058a51e97fa2cdf5023b75d
|
| 3 |
+
size 2793411520
|
Wiki-R1-3B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:def3dda9a4a7de4db591d3e258cb3212926eb65afda92314a5127c61d8121447
|
| 3 |
+
size 3616089024
|
Wiki-R1-3B.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:62dee53087a1f803b8a8d4346da3be6abebc381eeff32a5de5da3e6532483bc7
|
| 3 |
+
size 6800647104
|