Instructions to use unsloth/MiMo-V2.5-Pro-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use unsloth/MiMo-V2.5-Pro-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="unsloth/MiMo-V2.5-Pro-GGUF", filename="BF16/MiMo-V2.5-Pro-BF16-00001-of-00043.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use unsloth/MiMo-V2.5-Pro-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M # Run inference directly in the terminal: llama-cli -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M # Run inference directly in the terminal: llama-cli -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-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 unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-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 unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
Use Docker
docker model run hf.co/unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
- LM Studio
- Jan
- vLLM
How to use unsloth/MiMo-V2.5-Pro-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "unsloth/MiMo-V2.5-Pro-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": "unsloth/MiMo-V2.5-Pro-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
- Ollama
How to use unsloth/MiMo-V2.5-Pro-GGUF with Ollama:
ollama run hf.co/unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
- Unsloth Studio
How to use unsloth/MiMo-V2.5-Pro-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 unsloth/MiMo-V2.5-Pro-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 unsloth/MiMo-V2.5-Pro-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for unsloth/MiMo-V2.5-Pro-GGUF to start chatting
- Pi
How to use unsloth/MiMo-V2.5-Pro-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-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": "unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use unsloth/MiMo-V2.5-Pro-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-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 unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use unsloth/MiMo-V2.5-Pro-GGUF with Docker Model Runner:
docker model run hf.co/unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
- Lemonade
How to use unsloth/MiMo-V2.5-Pro-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
Run and chat with the model
lemonade run user.MiMo-V2.5-Pro-GGUF-UD-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00001-of-00012.gguf +3 -0
- UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00002-of-00012.gguf +3 -0
- UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00003-of-00012.gguf +3 -0
- UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00004-of-00012.gguf +3 -0
- UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00005-of-00012.gguf +3 -0
- UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00006-of-00012.gguf +3 -0
- UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00007-of-00012.gguf +3 -0
- UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00008-of-00012.gguf +3 -0
- UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00009-of-00012.gguf +3 -0
- UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00010-of-00012.gguf +3 -0
- UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00011-of-00012.gguf +3 -0
- UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00012-of-00012.gguf +3 -0
.gitattributes
CHANGED
|
@@ -212,3 +212,15 @@ UD-IQ2_XXS/MiMo-V2.5-Pro-UD-IQ2_XXS-00005-of-00008.gguf filter=lfs diff=lfs merg
|
|
| 212 |
UD-IQ2_XXS/MiMo-V2.5-Pro-UD-IQ2_XXS-00006-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 213 |
UD-IQ2_XXS/MiMo-V2.5-Pro-UD-IQ2_XXS-00007-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 214 |
UD-IQ2_XXS/MiMo-V2.5-Pro-UD-IQ2_XXS-00008-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 212 |
UD-IQ2_XXS/MiMo-V2.5-Pro-UD-IQ2_XXS-00006-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 213 |
UD-IQ2_XXS/MiMo-V2.5-Pro-UD-IQ2_XXS-00007-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 214 |
UD-IQ2_XXS/MiMo-V2.5-Pro-UD-IQ2_XXS-00008-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 215 |
+
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00001-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 216 |
+
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00002-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 217 |
+
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00003-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 218 |
+
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00004-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 219 |
+
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00005-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 220 |
+
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00006-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 221 |
+
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00007-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 222 |
+
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00008-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 223 |
+
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00009-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 224 |
+
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00010-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 225 |
+
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00011-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 226 |
+
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00012-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00001-of-00012.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7148e2bc8f2c1295b37a2f86fd15a5362bbac154a4657699b59f01109b55bb99
|
| 3 |
+
size 5954240
|
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00002-of-00012.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6bfb172be64fd36884fe70ddd92e6213c1f7984b7917abadd2a812e18dfb92b
|
| 3 |
+
size 48355215520
|
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00003-of-00012.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff454b9ac2f26f02bafe6837134a343f48ff792c4f2565089cb6402248c2c43b
|
| 3 |
+
size 47429093760
|
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00004-of-00012.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16015fe06ad40844359ae3ebb58f3423eb27d3122fb3c909f4e50d07e76b8d2f
|
| 3 |
+
size 49969856256
|
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00005-of-00012.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78b0419defa6cbdf516b73a03ef4511c9bbd3e5c468ff0e91d3539d9b672df1d
|
| 3 |
+
size 48407365152
|
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00006-of-00012.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e9f56c6f28764977f847df85021c5b3e4bb2d7127fb24c0e0b8ae06873e2481
|
| 3 |
+
size 47429093216
|
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00007-of-00012.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ce688e704279ae58813d04d1e5ad36e28b958f295d0f8f34329f3637b65d591
|
| 3 |
+
size 49969856256
|
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00008-of-00012.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:04f9f7517b97ec565ecbf9b0397cab1621c8277f25324813de58325906de88b4
|
| 3 |
+
size 47963842272
|
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00009-of-00012.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a16ec0e3b0882c901bcf02542c5301f19c62dcf36b0605d1c1b0669271f69d95
|
| 3 |
+
size 48061360416
|
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00010-of-00012.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0024423669457a4d334f501366c4fa3ed612b8557bc61509b7d44bc546439b35
|
| 3 |
+
size 47429093216
|
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00011-of-00012.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:45b809666b57e5628431a6b55d77804e97e2a4d570b4217d7b34eebf8dd0b5eb
|
| 3 |
+
size 49969856256
|
UD-IQ4_NL/MiMo-V2.5-Pro-UD-IQ4_NL-00012-of-00012.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31febaae818851fb81f756143ab210514f918a415fa257943b0e018409282f33
|
| 3 |
+
size 16276644160
|