Text Generation
Transformers
GGUF
English
code
programming
mathematics
reasoning
conversational
qwen2
Instructions to use mradermacher/ucoder-mini-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/ucoder-mini-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mradermacher/ucoder-mini-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/ucoder-mini-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/ucoder-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/ucoder-mini-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/ucoder-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/ucoder-mini-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/ucoder-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/ucoder-mini-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/ucoder-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/ucoder-mini-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/ucoder-mini-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/ucoder-mini-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use mradermacher/ucoder-mini-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mradermacher/ucoder-mini-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/ucoder-mini-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/mradermacher/ucoder-mini-GGUF:Q4_K_M
- SGLang
How to use mradermacher/ucoder-mini-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "mradermacher/ucoder-mini-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/ucoder-mini-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "mradermacher/ucoder-mini-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/ucoder-mini-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use mradermacher/ucoder-mini-GGUF with Ollama:
ollama run hf.co/mradermacher/ucoder-mini-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/ucoder-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/ucoder-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/ucoder-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/ucoder-mini-GGUF to start chatting
- Pi
How to use mradermacher/ucoder-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/ucoder-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/ucoder-mini-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use mradermacher/ucoder-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/ucoder-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/ucoder-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/ucoder-mini-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/ucoder-mini-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/ucoder-mini-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/ucoder-mini-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.ucoder-mini-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/ucoder-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/ucoder-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/ucoder-mini-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
uploaded from leia
Browse files- .gitattributes +12 -0
- ucoder-mini.IQ4_XS.gguf +3 -0
- ucoder-mini.Q2_K.gguf +3 -0
- ucoder-mini.Q3_K_L.gguf +3 -0
- ucoder-mini.Q3_K_M.gguf +3 -0
- ucoder-mini.Q3_K_S.gguf +3 -0
- ucoder-mini.Q4_K_M.gguf +3 -0
- ucoder-mini.Q4_K_S.gguf +3 -0
- ucoder-mini.Q5_K_M.gguf +3 -0
- ucoder-mini.Q5_K_S.gguf +3 -0
- ucoder-mini.Q6_K.gguf +3 -0
- ucoder-mini.Q8_0.gguf +3 -0
- ucoder-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 |
+
ucoder-mini.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
ucoder-mini.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
ucoder-mini.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
ucoder-mini.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
ucoder-mini.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
ucoder-mini.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
ucoder-mini.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
ucoder-mini.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
ucoder-mini.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
ucoder-mini.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
ucoder-mini.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
ucoder-mini.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
ucoder-mini.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2290f553b78a4a49e9da61fca15f4395ac63916c0a9b7447b26591fd2ea4763f
|
| 3 |
+
size 902183136
|
ucoder-mini.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:998a750d58c933d29459228ecd060f6155a3b6c10c0aa60edfb5cb078baf0b21
|
| 3 |
+
size 676305120
|
ucoder-mini.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3091605238445e9ff5c7f08448e0ebfc2973595fe0922567ce5f1cbf9030f2c4
|
| 3 |
+
size 880163040
|
ucoder-mini.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be5fe73225daa4746cb98ade7f0ef4e1046bef1136094b51f7a2fbb8a15955a2
|
| 3 |
+
size 824178912
|
ucoder-mini.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f4f70032af9723f6b8cbce439b07ad17c81f578822f2ff20d251c07c434459d
|
| 3 |
+
size 760944864
|
ucoder-mini.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49ab830f03d154780cd8e0690cd4bd8a7b8f678d747f82bde91da2348e88fbbc
|
| 3 |
+
size 986048736
|
ucoder-mini.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e64983d8ce74b1a62108c3ce1ff21d1a69a22bdca4235a9584e16e6fdc4c17cc
|
| 3 |
+
size 940312800
|
ucoder-mini.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a4673174f09a66895362771495072abf288c2eafa77a4cffd2cebeb435ddb8fd
|
| 3 |
+
size 1125050592
|
ucoder-mini.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6a1f111916cab410da55eccc6f5ab9f14288c23a57b015eb6e655f193753b46
|
| 3 |
+
size 1098729696
|
ucoder-mini.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b9e0e30493cac88c1103b780edec4143c108568dbf5e8ec0e96784535803039c
|
| 3 |
+
size 1272740064
|
ucoder-mini.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70977e97d351843b5397887be5fa0925baa5ccd87745bf6119511319154d34ef
|
| 3 |
+
size 1646573280
|
ucoder-mini.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a3fb867631bbf3d1d954bd2b395ee1cd0e01dbff7e987b1e593647ff7c156533
|
| 3 |
+
size 3093669600
|