Instructions to use mradermacher/Yee-R1-mini-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Yee-R1-mini-i1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Yee-R1-mini-i1-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Yee-R1-mini-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/Yee-R1-mini-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Yee-R1-mini-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/Yee-R1-mini-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Yee-R1-mini-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/Yee-R1-mini-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Yee-R1-mini-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/Yee-R1-mini-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Yee-R1-mini-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Yee-R1-mini-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Yee-R1-mini-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/Yee-R1-mini-i1-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Yee-R1-mini-i1-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/Yee-R1-mini-i1-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/Yee-R1-mini-i1-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/Yee-R1-mini-i1-GGUF to start chatting
- Pi
How to use mradermacher/Yee-R1-mini-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/Yee-R1-mini-i1-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/Yee-R1-mini-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/Yee-R1-mini-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Yee-R1-mini-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Yee-R1-mini-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Yee-R1-mini-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Yee-R1-mini-i1-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/Yee-R1-mini-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/Yee-R1-mini-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/Yee-R1-mini-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/Yee-R1-mini-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/Yee-R1-mini-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/Yee-R1-mini-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 kaos
Browse files- .gitattributes +24 -0
- Yee-R1-mini.i1-IQ1_M.gguf +3 -0
- Yee-R1-mini.i1-IQ1_S.gguf +3 -0
- Yee-R1-mini.i1-IQ2_M.gguf +3 -0
- Yee-R1-mini.i1-IQ2_S.gguf +3 -0
- Yee-R1-mini.i1-IQ2_XS.gguf +3 -0
- Yee-R1-mini.i1-IQ2_XXS.gguf +3 -0
- Yee-R1-mini.i1-IQ3_M.gguf +3 -0
- Yee-R1-mini.i1-IQ3_S.gguf +3 -0
- Yee-R1-mini.i1-IQ3_XS.gguf +3 -0
- Yee-R1-mini.i1-IQ3_XXS.gguf +3 -0
- Yee-R1-mini.i1-IQ4_NL.gguf +3 -0
- Yee-R1-mini.i1-IQ4_XS.gguf +3 -0
- Yee-R1-mini.i1-Q2_K.gguf +3 -0
- Yee-R1-mini.i1-Q2_K_S.gguf +3 -0
- Yee-R1-mini.i1-Q3_K_L.gguf +3 -0
- Yee-R1-mini.i1-Q3_K_M.gguf +3 -0
- Yee-R1-mini.i1-Q3_K_S.gguf +3 -0
- Yee-R1-mini.i1-Q4_0.gguf +3 -0
- Yee-R1-mini.i1-Q4_1.gguf +3 -0
- Yee-R1-mini.i1-Q4_K_M.gguf +3 -0
- Yee-R1-mini.i1-Q4_K_S.gguf +3 -0
- Yee-R1-mini.i1-Q5_K_M.gguf +3 -0
- Yee-R1-mini.i1-Q5_K_S.gguf +3 -0
- Yee-R1-mini.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 |
+
Yee-R1-mini.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Yee-R1-mini.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Yee-R1-mini.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Yee-R1-mini.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Yee-R1-mini.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Yee-R1-mini.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Yee-R1-mini.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Yee-R1-mini.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Yee-R1-mini.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Yee-R1-mini.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Yee-R1-mini.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Yee-R1-mini.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Yee-R1-mini.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Yee-R1-mini.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Yee-R1-mini.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Yee-R1-mini.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Yee-R1-mini.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Yee-R1-mini.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
Yee-R1-mini.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
Yee-R1-mini.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
Yee-R1-mini.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
Yee-R1-mini.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
Yee-R1-mini.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
Yee-R1-mini.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
Yee-R1-mini.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6019445ade37317cda345bb6e61cd4c5f4b7ab4ceec2828a7dd3d18f1824ad07
|
| 3 |
+
size 543793856
|
Yee-R1-mini.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1881530414b102c88f2abd8eca593227e8c9c61db43e5de38d74b3c30966e6e
|
| 3 |
+
size 515777216
|
Yee-R1-mini.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78b688ff5d826b2ece3b7c353a75868a6bdf8c3f42a3c0e9795f39deab7f7bc1
|
| 3 |
+
size 695182016
|
Yee-R1-mini.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:507a6f2c4390fc90e6902404aaab8cd0ede9d73a2146aec17fcb830716a4f763
|
| 3 |
+
size 657826496
|
Yee-R1-mini.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b059cd40b34c4bb9e91f3811a5ecfd85a5447fbfb7731fffc0fe6fe650e0c62d
|
| 3 |
+
size 631513792
|
Yee-R1-mini.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b39d952c433627dac92f545cd2b618000b16dc06faa9392f93710ba5c6ba9138
|
| 3 |
+
size 590488256
|
Yee-R1-mini.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f80518e77ce351e6a64acf2fe632ba9bfdbd73e262b80780a02880c0025a2c0d
|
| 3 |
+
size 895662784
|
Yee-R1-mini.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:372a327ce48381dc66c5179d015602bc87dbffc29ab7f5d07953316f0e9b7be0
|
| 3 |
+
size 867252928
|
Yee-R1-mini.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:55284021654c01abc54ce68ee275a4dee8e1659049aaed4dcc697346f781ee8b
|
| 3 |
+
size 834222784
|
Yee-R1-mini.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b2128f0437a5a9ce33e50885927c24b663ad3c0da11c603656a7df3feaef5a5
|
| 3 |
+
size 754361024
|
Yee-R1-mini.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:40bee2e71b849cbdc28cbbfd7e7a9fb06fbb37e34c1ab5e3786b76b9a15b0e54
|
| 3 |
+
size 1054423744
|
Yee-R1-mini.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08823f5f373eb432b5d36bcd9bf35af6562ce81ccf5efcbff9df74f009155936
|
| 3 |
+
size 1010383552
|
Yee-R1-mini.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b78651807a538dfad28854cd45cc0c79eb382946e0844b2764feebc2bcdd0f76
|
| 3 |
+
size 777796288
|
Yee-R1-mini.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:137375e53c325ec9c1ce0ce70b8f51e9c05e65d9e152835731c23b75e7443d2e
|
| 3 |
+
size 732969664
|
Yee-R1-mini.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9de8de5c3dbdc7b3e4dab18fd86e7bac9d058625e060c8b644a14c22125aeece
|
| 3 |
+
size 1003502272
|
Yee-R1-mini.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:73ad71827990f0239eade905b4e76175c51f996aff6d59bad4fd975e969f4a7d
|
| 3 |
+
size 939539136
|
Yee-R1-mini.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:741e38c74dee55f57d89af6a03e4922f9de64cdd75c52e2ed5a4aeb16105d5bd
|
| 3 |
+
size 867252928
|
Yee-R1-mini.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e585793c133be325fd428a0a8a5553924595268bd244452a1babe427ab011e34
|
| 3 |
+
size 1056783040
|
Yee-R1-mini.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f239a4017e13ce840479cf05b9d2d4c79b99f3a88d243850699ccd312d84332e
|
| 3 |
+
size 1142504128
|
Yee-R1-mini.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4dba7cf2bd66574b5640e9c222a0c4ac2aac14e9fe53dc46834e8d6c83b0b912
|
| 3 |
+
size 1107409600
|
Yee-R1-mini.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:152e1b3721275433ad9fd1fecd87cd8b820512aa3a7bf4de46e59f418170f344
|
| 3 |
+
size 1060190912
|
Yee-R1-mini.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d85e8e7dfa86d8c752533df7de5062d87be33ab4aa737ca6637d3c0358d1407
|
| 3 |
+
size 1257880256
|
Yee-R1-mini.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c52a741c3e227fb3340888acb0f3b24624e198fc33c1a0ec7222a8e4e0bc1ee9
|
| 3 |
+
size 1230584512
|
Yee-R1-mini.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7678faf603f14dca2a882f7c0aac9df60bfe17de89f827c5ca585e6452de75d
|
| 3 |
+
size 1417755328
|