Instructions to use mradermacher/ReasoningCore-3B-R01-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/ReasoningCore-3B-R01-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/ReasoningCore-3B-R01-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/ReasoningCore-3B-R01-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/ReasoningCore-3B-R01-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/ReasoningCore-3B-R01-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/ReasoningCore-3B-R01-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/ReasoningCore-3B-R01-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/ReasoningCore-3B-R01-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/ReasoningCore-3B-R01-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/ReasoningCore-3B-R01-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/ReasoningCore-3B-R01-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/ReasoningCore-3B-R01-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/ReasoningCore-3B-R01-GGUF with Ollama:
ollama run hf.co/mradermacher/ReasoningCore-3B-R01-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/ReasoningCore-3B-R01-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/ReasoningCore-3B-R01-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/ReasoningCore-3B-R01-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/ReasoningCore-3B-R01-GGUF to start chatting
- Pi
How to use mradermacher/ReasoningCore-3B-R01-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/ReasoningCore-3B-R01-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/ReasoningCore-3B-R01-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/ReasoningCore-3B-R01-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/ReasoningCore-3B-R01-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/ReasoningCore-3B-R01-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/ReasoningCore-3B-R01-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.ReasoningCore-3B-R01-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/ReasoningCore-3B-R01-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/ReasoningCore-3B-R01-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/ReasoningCore-3B-R01-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/ReasoningCore-3B-R01-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/ReasoningCore-3B-R01-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/ReasoningCore-3B-R01-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 marco
Browse files- .gitattributes +12 -0
- ReasoningCore-3B-R01.IQ4_XS.gguf +3 -0
- ReasoningCore-3B-R01.Q2_K.gguf +3 -0
- ReasoningCore-3B-R01.Q3_K_L.gguf +3 -0
- ReasoningCore-3B-R01.Q3_K_M.gguf +3 -0
- ReasoningCore-3B-R01.Q3_K_S.gguf +3 -0
- ReasoningCore-3B-R01.Q4_K_M.gguf +3 -0
- ReasoningCore-3B-R01.Q4_K_S.gguf +3 -0
- ReasoningCore-3B-R01.Q5_K_M.gguf +3 -0
- ReasoningCore-3B-R01.Q5_K_S.gguf +3 -0
- ReasoningCore-3B-R01.Q6_K.gguf +3 -0
- ReasoningCore-3B-R01.Q8_0.gguf +3 -0
- ReasoningCore-3B-R01.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ 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 |
+
ReasoningCore-3B-R01.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
ReasoningCore-3B-R01.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
ReasoningCore-3B-R01.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
ReasoningCore-3B-R01.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
ReasoningCore-3B-R01.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
ReasoningCore-3B-R01.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
ReasoningCore-3B-R01.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
ReasoningCore-3B-R01.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
ReasoningCore-3B-R01.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
ReasoningCore-3B-R01.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
ReasoningCore-3B-R01.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
ReasoningCore-3B-R01.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
ReasoningCore-3B-R01.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3a4c99a3c337049b4aa08f09a539fd3c2cded79202abd672bd7fd054878c054a
|
| 3 |
+
size 1840908128
|
ReasoningCore-3B-R01.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6c1a949f93e1eda892e93781b7c279a98d21aaab29a7de0e2391d1af559d7fc
|
| 3 |
+
size 1363937120
|
ReasoningCore-3B-R01.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ef06791aef8aceb1a4f491ce8fba297215e1a4b9247226e9fdc0f20ce7554bf
|
| 3 |
+
size 1815349088
|
ReasoningCore-3B-R01.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e7b6bc4ff52587d2e5d9e1eb11fdf1a0aafbedde57df1df24ac47bddc9994e7
|
| 3 |
+
size 1687160672
|
ReasoningCore-3B-R01.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38e980eb7cdcf7eb265e1a673b7b4c551d8a5f33cbefaf4413fb29024bb28f55
|
| 3 |
+
size 1542850400
|
ReasoningCore-3B-R01.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e9790a4796334e72d8f9dfb9d3e6de76c00550369831883d6482f1ac4081716
|
| 3 |
+
size 2019379040
|
ReasoningCore-3B-R01.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1438cea9d8665562fa1de8d5aaf072ef45e6b819f13ac5520acb9a5eded058c
|
| 3 |
+
size 1928202080
|
ReasoningCore-3B-R01.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:761acd4bfdb6bde96563f17806b97b0b1ea7eff46e502677928c8a81027bdfbd
|
| 3 |
+
size 2322155360
|
ReasoningCore-3B-R01.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bbef430815b3d3f9614be282504edf90f6a01058474c32fc89d6d3a164900290
|
| 3 |
+
size 2269513568
|
ReasoningCore-3B-R01.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d17f7d33cd2643ce7f23bbf257efd564e5838b7a21ea6ae9dc009a27f97a7722
|
| 3 |
+
size 2643855200
|
ReasoningCore-3B-R01.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a63dc6967c2d48d7cf6c544bfad15133ecf8d64e0cac4fa2a6b9b0a027ae601a
|
| 3 |
+
size 3421900640
|
ReasoningCore-3B-R01.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2672cb6cdc9f5a7a8d0efeecec4701d3109201a7c2117b48ea4701097ab5436f
|
| 3 |
+
size 6433689440
|