Instructions to use mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-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-Instruct-r01-Reflect-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-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-Instruct-r01-Reflect-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-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-Instruct-r01-Reflect-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-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-Instruct-r01-Reflect-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-GGUF with Ollama:
ollama run hf.co/mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-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-Instruct-r01-Reflect-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-Instruct-r01-Reflect-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-Instruct-r01-Reflect-GGUF to start chatting
- Pi
How to use mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-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-Instruct-r01-Reflect-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-Instruct-r01-Reflect-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.ReasoningCore-3B-Instruct-r01-Reflect-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-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-Instruct-r01-Reflect-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-Instruct-r01-Reflect-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/ReasoningCore-3B-Instruct-r01-Reflect-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-Instruct-r01-Reflect-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-Instruct-r01-Reflect-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-Instruct-r01-Reflect.IQ4_XS.gguf +3 -0
- ReasoningCore-3B-Instruct-r01-Reflect.Q2_K.gguf +3 -0
- ReasoningCore-3B-Instruct-r01-Reflect.Q3_K_L.gguf +3 -0
- ReasoningCore-3B-Instruct-r01-Reflect.Q3_K_M.gguf +3 -0
- ReasoningCore-3B-Instruct-r01-Reflect.Q3_K_S.gguf +3 -0
- ReasoningCore-3B-Instruct-r01-Reflect.Q4_K_M.gguf +3 -0
- ReasoningCore-3B-Instruct-r01-Reflect.Q4_K_S.gguf +3 -0
- ReasoningCore-3B-Instruct-r01-Reflect.Q5_K_M.gguf +3 -0
- ReasoningCore-3B-Instruct-r01-Reflect.Q5_K_S.gguf +3 -0
- ReasoningCore-3B-Instruct-r01-Reflect.Q6_K.gguf +3 -0
- ReasoningCore-3B-Instruct-r01-Reflect.Q8_0.gguf +3 -0
- ReasoningCore-3B-Instruct-r01-Reflect.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-Instruct-r01-Reflect.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
ReasoningCore-3B-Instruct-r01-Reflect.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
ReasoningCore-3B-Instruct-r01-Reflect.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
ReasoningCore-3B-Instruct-r01-Reflect.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
ReasoningCore-3B-Instruct-r01-Reflect.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
ReasoningCore-3B-Instruct-r01-Reflect.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
ReasoningCore-3B-Instruct-r01-Reflect.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
ReasoningCore-3B-Instruct-r01-Reflect.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
ReasoningCore-3B-Instruct-r01-Reflect.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
ReasoningCore-3B-Instruct-r01-Reflect.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
ReasoningCore-3B-Instruct-r01-Reflect.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
ReasoningCore-3B-Instruct-r01-Reflect.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
ReasoningCore-3B-Instruct-r01-Reflect.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c0400756e7f3455fea8e73fc6a2683ae3647f5e36e233c6a38c606d4fe554902
|
| 3 |
+
size 1840907392
|
ReasoningCore-3B-Instruct-r01-Reflect.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26df892aed40b1190c1035e580057b781ddaa2905d418445167b14991e12c480
|
| 3 |
+
size 1363936384
|
ReasoningCore-3B-Instruct-r01-Reflect.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92bfc4028a2216dd0b7e3f042b90e870d37aee98779524d5155b86bda5b62eea
|
| 3 |
+
size 1815348352
|
ReasoningCore-3B-Instruct-r01-Reflect.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36cc7f9fe24dfa0b34c941e8be4626905f6cd4664671e3679bfe2afc19ddb594
|
| 3 |
+
size 1687159936
|
ReasoningCore-3B-Instruct-r01-Reflect.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:47c56e3e013f22c1823f9a9754f6205291ea082cd0740603e8484c2b3c193a33
|
| 3 |
+
size 1542849664
|
ReasoningCore-3B-Instruct-r01-Reflect.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0a6581f681b114b367ac663f1fead2bee84fbeed8704ebd3f409d31eefb4bda9
|
| 3 |
+
size 2019378304
|
ReasoningCore-3B-Instruct-r01-Reflect.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9227c2845b05c360f72937a95bb938ca152b2e924af47d135bb0516458a57492
|
| 3 |
+
size 1928201344
|
ReasoningCore-3B-Instruct-r01-Reflect.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d829d16d84824abe9fda24c0eabaae501b608f8637cd7daa3a22879a635a0332
|
| 3 |
+
size 2322154624
|
ReasoningCore-3B-Instruct-r01-Reflect.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:216161a360316595a2b247515f8068f120cdbd820ac903ba5a83478f89cabcac
|
| 3 |
+
size 2269512832
|
ReasoningCore-3B-Instruct-r01-Reflect.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:238444deea7baaeb3e466ba9633412c4f1483d1cb71592f14bff4259aa5c4f77
|
| 3 |
+
size 2643854464
|
ReasoningCore-3B-Instruct-r01-Reflect.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e2c888796971e9c7db8b593fe218b1c9edd584d4e9fd85af000cdce1569c271
|
| 3 |
+
size 3421899904
|
ReasoningCore-3B-Instruct-r01-Reflect.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:699639443a4b3f4b33aaeeca02978ab71c53fc45512afe76618d14bf5c4593c1
|
| 3 |
+
size 6433688704
|