Instructions to use mradermacher/Yee-R1-mini-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Yee-R1-mini-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Yee-R1-mini-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/Yee-R1-mini-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/Yee-R1-mini-GGUF", filename="Yee-R1-mini.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/Yee-R1-mini-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-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Yee-R1-mini-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-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Yee-R1-mini-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-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Yee-R1-mini-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-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Yee-R1-mini-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Yee-R1-mini-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Yee-R1-mini-GGUF with Ollama:
ollama run hf.co/mradermacher/Yee-R1-mini-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Yee-R1-mini-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-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-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-GGUF to start chatting
- Pi
How to use mradermacher/Yee-R1-mini-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-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-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/Yee-R1-mini-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-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-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/Yee-R1-mini-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-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-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"
- Docker Model Runner
How to use mradermacher/Yee-R1-mini-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Yee-R1-mini-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Yee-R1-mini-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Yee-R1-mini-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Yee-R1-mini-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from kaos
Browse files- .gitattributes +12 -0
- Yee-R1-mini.IQ4_XS.gguf +3 -0
- Yee-R1-mini.Q2_K.gguf +3 -0
- Yee-R1-mini.Q3_K_L.gguf +3 -0
- Yee-R1-mini.Q3_K_M.gguf +3 -0
- Yee-R1-mini.Q3_K_S.gguf +3 -0
- Yee-R1-mini.Q4_K_M.gguf +3 -0
- Yee-R1-mini.Q4_K_S.gguf +3 -0
- Yee-R1-mini.Q5_K_M.gguf +3 -0
- Yee-R1-mini.Q5_K_S.gguf +3 -0
- Yee-R1-mini.Q6_K.gguf +3 -0
- Yee-R1-mini.Q8_0.gguf +3 -0
- Yee-R1-mini.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 |
+
Yee-R1-mini.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Yee-R1-mini.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Yee-R1-mini.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Yee-R1-mini.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Yee-R1-mini.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Yee-R1-mini.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Yee-R1-mini.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Yee-R1-mini.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Yee-R1-mini.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Yee-R1-mini.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Yee-R1-mini.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Yee-R1-mini.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Yee-R1-mini.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5926729d6343d24fade30d4934e7d6075b47087c155b776b6ad6bd15e4b48a4e
|
| 3 |
+
size 1016281568
|
Yee-R1-mini.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5190ec350a2f5a3b847c025970745565839a26c8a38faefeed393eb642051d8c
|
| 3 |
+
size 777796064
|
Yee-R1-mini.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60cad88c8e9f38780eda141e35e617936131474bd77d3a9b41ad99ae717bbf5b
|
| 3 |
+
size 1003502048
|
Yee-R1-mini.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36767c0d2cbb826a4d6872fa51ea35ff78e305e295b68be36df777b126ea531e
|
| 3 |
+
size 939538912
|
Yee-R1-mini.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5d183aa17cadeed4bfc458f6a3aaf17367b9f64cd947d12a9d6873c7e64eedba
|
| 3 |
+
size 867252704
|
Yee-R1-mini.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5fb34ca2514f4c2a88081986989422ecd2a6d8558635734034bc333f7681e3b
|
| 3 |
+
size 1107409376
|
Yee-R1-mini.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e807c86030eeb4606855d8fe86b54c4178cd7e245524a58f778fb6ebcc36f46a
|
| 3 |
+
size 1060190688
|
Yee-R1-mini.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:32bba7d8084ff6148edab3830b0db495725ea1c2fe451a6f8eb8cee5c6b108e4
|
| 3 |
+
size 1257880032
|
Yee-R1-mini.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ebddd29b8381c084c95b0bb41d8718096e8b2a7c512f5cf9651876c2a817a078
|
| 3 |
+
size 1230584288
|
Yee-R1-mini.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:13559bf7189c427683f08603fe0e389513c163152afdb1f571f920a88738bf47
|
| 3 |
+
size 1417755104
|
Yee-R1-mini.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e12c7fb19d84f2dfdce4f0195e8b0534170193f6d1c486d09bbaeaf5fce8f4e
|
| 3 |
+
size 1834426848
|
Yee-R1-mini.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0292678677264df0fc10ab7b55949079b8be4a79a04ddaeb96c296054610a43a
|
| 3 |
+
size 3447349728
|