Instructions to use bartowski/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 bartowski/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="bartowski/MiMo-V2.5-Pro-GGUF", filename="MiMo-V2.5-Pro-IQ1_M/MiMo-V2.5-Pro-IQ1_M-00001-of-00006.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 bartowski/MiMo-V2.5-Pro-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 bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf bartowski/MiMo-V2.5-Pro-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 bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf bartowski/MiMo-V2.5-Pro-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 bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf bartowski/MiMo-V2.5-Pro-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 bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
Use Docker
docker model run hf.co/bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use bartowski/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 "bartowski/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": "bartowski/MiMo-V2.5-Pro-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
- Ollama
How to use bartowski/MiMo-V2.5-Pro-GGUF with Ollama:
ollama run hf.co/bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
- Unsloth Studio
How to use bartowski/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 bartowski/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 bartowski/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 bartowski/MiMo-V2.5-Pro-GGUF to start chatting
- Pi
How to use bartowski/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 serve -hf bartowski/MiMo-V2.5-Pro-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": "bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use bartowski/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 serve -hf bartowski/MiMo-V2.5-Pro-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 bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use bartowski/MiMo-V2.5-Pro-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf bartowski/MiMo-V2.5-Pro-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 "bartowski/MiMo-V2.5-Pro-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 bartowski/MiMo-V2.5-Pro-GGUF with Docker Model Runner:
docker model run hf.co/bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
- Lemonade
How to use bartowski/MiMo-V2.5-Pro-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.MiMo-V2.5-Pro-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +17 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00001-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00002-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00003-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00004-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00005-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00006-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00007-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00008-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00009-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00010-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00011-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00012-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00013-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00014-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00015-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00016-of-00017.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00017-of-00017.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,20 @@ 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 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00001-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00002-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00003-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00004-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00005-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00006-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00007-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00008-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00009-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00010-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00011-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00012-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00013-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00014-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00015-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00016-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00017-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00001-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6d9758b0f37297beef8ade13612b36a97d06709d27b2fc5e2a207458219a651
|
| 3 |
+
size 37445780704
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00002-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da64c3def1953889b9e2b2b5cfa32bc39d3ef1a62fb3ef712e0ee49012174fd8
|
| 3 |
+
size 38459582464
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00003-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:402385b8850f81839216156ca0de18aa7f0dafb1bacd1926c81bfbc61f710ff0
|
| 3 |
+
size 37646365632
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00004-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f640a0a643e4d72662386a480f9521416bf7f2d4329b52faca69e01c6bd9dc8c
|
| 3 |
+
size 38686075008
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00005-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fcc3eef1e84eaaa5cbd66da7015b1159946386ec5b5b13fb549d6a85ce98d18a
|
| 3 |
+
size 37449829152
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00006-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:150374dabd3802d2f90fbaa7a48f568ebc3bb1bf0ef307e6a2add5fd8ee3e874
|
| 3 |
+
size 37646365088
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00007-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:05f703142199a432d6211f7d9c553354be074f1a99a0913ae881d7a1608d64d3
|
| 3 |
+
size 38686075584
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00008-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ed0db054af0815ba55f39a4d10b2508d4b755b24cbfc8b966bf69e936050d642
|
| 3 |
+
size 37449828608
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00009-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:47ab7e65f193c0ec2280122624c9cb5c4ea01af0256784c540d472ac8f9569fd
|
| 3 |
+
size 38892073376
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00010-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:735693714a1830acf62af28749d4d617442795e2c17797c5cd1c372b6f57adaf
|
| 3 |
+
size 37440367296
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00011-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4652c4a6ab2476b7f36c314f6e6caf23e96dc4ad1c5b9bff2de93834d4190a38
|
| 3 |
+
size 38695536896
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00012-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6fd38f4b86eba02c555b58880428f1f2ffc996d907d9947149680113e046493f
|
| 3 |
+
size 37646365664
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00013-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5004c6806b48d0f15e4aeed510a7d41362167e3092fec2da6ba2f0dfcb4d021a
|
| 3 |
+
size 38686075008
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00014-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e7a445ee0615ec9e3373c7f94ca93d4df6fc98e89d7931d5def7b55383a537b
|
| 3 |
+
size 37449829152
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00015-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26a31b50845c217195ea1d5ce77354e2a920da673b5978f3cadc1f9391a36070
|
| 3 |
+
size 38459582528
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00016-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4b0d5e3e591e93256db937503f67e8d7e1dc58695913a70a486ea30f49d66a0c
|
| 3 |
+
size 38459583072
|
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00017-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f4bfc58b83298e3bba07ec944e517df917bc56b862ce029d82721cbea12332b
|
| 3 |
+
size 13665957760
|