Instructions to use lovedheart/Qwen3-253B-A22B-IQ1_M with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use lovedheart/Qwen3-253B-A22B-IQ1_M with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("lovedheart/Qwen3-253B-A22B-IQ1_M", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use lovedheart/Qwen3-253B-A22B-IQ1_M 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 lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S # Run inference directly in the terminal: llama cli -hf lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S # Run inference directly in the terminal: llama cli -hf lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S
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 lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S # Run inference directly in the terminal: ./llama-cli -hf lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S
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 lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S # Run inference directly in the terminal: ./build/bin/llama-cli -hf lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S
Use Docker
docker model run hf.co/lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S
- LM Studio
- Jan
- Ollama
How to use lovedheart/Qwen3-253B-A22B-IQ1_M with Ollama:
ollama run hf.co/lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S
- Unsloth Studio
How to use lovedheart/Qwen3-253B-A22B-IQ1_M 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 lovedheart/Qwen3-253B-A22B-IQ1_M 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 lovedheart/Qwen3-253B-A22B-IQ1_M to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for lovedheart/Qwen3-253B-A22B-IQ1_M to start chatting
- Pi
How to use lovedheart/Qwen3-253B-A22B-IQ1_M with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S
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": "lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use lovedheart/Qwen3-253B-A22B-IQ1_M with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S
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 "lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S" \ --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 lovedheart/Qwen3-253B-A22B-IQ1_M with Docker Model Runner:
docker model run hf.co/lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S
- Lemonade
How to use lovedheart/Qwen3-253B-A22B-IQ1_M with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S
Run and chat with the model
lemonade run user.Qwen3-253B-A22B-IQ1_M-IQ1_M_S
List all available models
lemonade list
- Hermes Agent
How to use lovedheart/Qwen3-253B-A22B-IQ1_M with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S
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 lovedheart/Qwen3-253B-A22B-IQ1_M:IQ1_M_S
Run Hermes
hermes
- Atomic Chat
Upload 10 files
Browse files- .gitattributes +10 -0
- IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00001-of-00010.gguf +3 -0
- IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00002-of-00010.gguf +3 -0
- IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00003-of-00010.gguf +3 -0
- IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00004-of-00010.gguf +3 -0
- IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00005-of-00010.gguf +3 -0
- IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00006-of-00010.gguf +3 -0
- IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00007-of-00010.gguf +3 -0
- IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00008-of-00010.gguf +3 -0
- IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00009-of-00010.gguf +3 -0
- IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00010-of-00010.gguf +3 -0
.gitattributes
CHANGED
|
@@ -43,3 +43,13 @@ Qwen3-235B-A22B-IQ1_M-00007-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 43 |
Qwen3-235B-A22B-IQ1_M-00008-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
Qwen3-235B-A22B-IQ1_M-00009-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
Qwen3-235B-A22B-IQ1_M-00010-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
Qwen3-235B-A22B-IQ1_M-00008-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
Qwen3-235B-A22B-IQ1_M-00009-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
Qwen3-235B-A22B-IQ1_M-00010-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00001-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00002-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00003-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00004-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00005-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00006-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00007-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00008-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00009-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00010-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00001-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e9202bfd62376fb406f9c047e91aa1270367aefb6b8be5d495bcc83981dd7b1
|
| 3 |
+
size 6202120192
|
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00002-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9f72faefa770bf6ebf55b6326991c275aa9257e6af0de9e73172645edbc7a758
|
| 3 |
+
size 5881823328
|
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00003-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad1969a9a962c861af33d781c38a827fee6ec0b12cb34b79d64539aca2cff747
|
| 3 |
+
size 5963499008
|
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00004-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:467b41cd24d214f3e959b92d6a162bfd7dcf497536f9702e1dbda1ee50b1a333
|
| 3 |
+
size 5913167360
|
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00005-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d75f866858e04535e481e23e24116de54b6cf48ecd7f95336a18bf2cd057423e
|
| 3 |
+
size 5938333184
|
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00006-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dfc8100a560631141704fef5891b5fa79c8c13159bd38a10c483178d8096189f
|
| 3 |
+
size 5938333184
|
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00007-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a44013664d37da1f34d2cd8e5779a66afa2bb6004f542691ff758d95b12a6a8a
|
| 3 |
+
size 5938333184
|
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00008-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ff563596684d09d6cd94976a82048fa242360de7d1711f7f35735cf01e357d5
|
| 3 |
+
size 5938333184
|
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00009-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a0e76f390b725f0b6b857238ebd4e69feec86eb58b18c8f69e0aa6bbb87eebd7
|
| 3 |
+
size 6114493952
|
IQ1_M_S/Qwen3-235B-A22B-IQ1_M_S-00010-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69b2f741d9e1716257137e774d59edcfa70757327f5c06b8833c9aca8715a2c3
|
| 3 |
+
size 3069975872
|