Instructions to use sizzlebop/minimind-3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sizzlebop/minimind-3-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="sizzlebop/minimind-3-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("sizzlebop/minimind-3-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use sizzlebop/minimind-3-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 sizzlebop/minimind-3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf sizzlebop/minimind-3-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 sizzlebop/minimind-3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf sizzlebop/minimind-3-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 sizzlebop/minimind-3-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf sizzlebop/minimind-3-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 sizzlebop/minimind-3-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf sizzlebop/minimind-3-GGUF:Q4_K_M
Use Docker
docker model run hf.co/sizzlebop/minimind-3-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use sizzlebop/minimind-3-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "sizzlebop/minimind-3-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": "sizzlebop/minimind-3-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/sizzlebop/minimind-3-GGUF:Q4_K_M
- SGLang
How to use sizzlebop/minimind-3-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 "sizzlebop/minimind-3-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": "sizzlebop/minimind-3-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 "sizzlebop/minimind-3-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": "sizzlebop/minimind-3-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use sizzlebop/minimind-3-GGUF with Ollama:
ollama run hf.co/sizzlebop/minimind-3-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use sizzlebop/minimind-3-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf sizzlebop/minimind-3-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": "sizzlebop/minimind-3-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use sizzlebop/minimind-3-GGUF with Docker Model Runner:
docker model run hf.co/sizzlebop/minimind-3-GGUF:Q4_K_M
- Lemonade
How to use sizzlebop/minimind-3-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull sizzlebop/minimind-3-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.minimind-3-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use sizzlebop/minimind-3-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 sizzlebop/minimind-3-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 sizzlebop/minimind-3-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use sizzlebop/minimind-3-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf sizzlebop/minimind-3-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 "sizzlebop/minimind-3-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"
MiniMind 3 GGUF
This repository provides GGUF quantizations for scikit-plots/minimind-3 (from the MiniMind series by Jingyao Gong).
MiniMind-3 is an ultra-compact language model (60M parameters) developed from scratch to demonstrate full-lifecycle LLM pretraining, supervised fine-tuning, and reasoning alignment at extreme efficiency. Despite its minuscule memory footprint (40 MB for Q4_K_M), it supports ChatML formatting, reasoning traces (<think>...</think>), and tool use.
All GGUF files were converted from the original safetensors weights using llama.cpp at native F16 precision, followed by standard k-quant quantization.
Available Files and Quantizations
| File | Quant Type | Size | Description / Recommendation |
|---|---|---|---|
minimind-3-F16.gguf |
F16 | 122.16 MB | Full precision base conversion. Highest fidelity reference weights. |
minimind-3-Q8_0.gguf |
Q8_0 | 65.03 MB | Near-lossless 8-bit quantization. Recommended for best quality evaluation. |
minimind-3-Q6_K.gguf |
Q6_K | 53.72 MB | High quality retention with minimal degradation. |
minimind-3-Q5_K_M.gguf |
Q5_K_M | 46.07 MB | Balanced performance and memory footprint. |
minimind-3-Q4_K_M.gguf |
Q4_K_M | 40.51 MB | Lightweight 4-bit quant. Recommended default for microcontroller and edge deployment. |
minimind-3-Q3_K_M.gguf |
Q3_K_M | 32.94 MB | Ultra-compact footprint for tightly memory-constrained devices. |
minimind-3-Q2_K.gguf |
Q2_K | 26.61 MB | Extreme compression (~26 MB). |
Model Architecture Details
- Base Architecture:
Qwen3ForCausalLM(qwen3) - Parameters: ~60M (60,486,912)
- Layers: 8
- Hidden Size: 768
- Attention Heads: 8 query heads / 4 KV heads (GQA), head dimension 96
- Intermediate Size: 2432
- Context Length: 32,768 tokens
- Vocabulary Size: 6,400 (compact BPE tokenizer)
- RoPE Theta: 1,000,000.0
Prompt Format and Chat Template
MiniMind-3 utilizes ChatML format with optional <think> reasoning blocks:
<|im_start|>system
You are a helpful assistant.<|im_end|>
<|im_start|>user
What is 25 * 4?<|im_end|>
<|im_start|>assistant
<think>
Quickstart Guide
1. llama.cpp
Run interactive text generation with llama-cli:
llama-cli -m ./minimind-3-Q4_K_M.gguf \
-p "<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n<|im_start|>user\nHello! Who are you?<|im_end|>\n<|im_start|>assistant\n" \
-n 256 \
--temp 0.7 \
--top-p 0.85
Launch a local inference server with llama-server:
llama-server -m ./minimind-3-Q4_K_M.gguf \
--port 8080 \
-c 4096
2. Ollama
Create a Modelfile:
FROM ./minimind-3-Q4_K_M.gguf
TEMPLATE """{{ if .System }}<|im_start|>system
{{ .System }}<|im_end|>
{{ end }}{{ if .Prompt }}<|im_start|>user
{{ .Prompt }}<|im_end|>
{{ end }}<|im_start|>assistant
{{ .Response }}<|im_end|>"""
PARAMETER stop "<|im_end|>"
PARAMETER stop "<|endoftext|>"
PARAMETER temperature 0.7
Build and run:
ollama create minimind-3 -f Modelfile
ollama run minimind-3 "Explain what gravity is."
3. LM Studio
- Copy the
.gguffile to your LM Studio models folder. - Select
minimind-3-Q4_K_M.gguf. - Choose ChatML preset (
<|im_start|>/<|im_end|>).
- Downloads last month
- -
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
16-bit
Model tree for sizzlebop/minimind-3-GGUF
Base model
scikit-plots/minimind-3