Instructions to use eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF", filename="Qwen3.5-122B-A10B-MXFP4_MOE-MTP-merged.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 eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-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 eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE # Run inference directly in the terminal: llama cli -hf eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE # Run inference directly in the terminal: llama cli -hf eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE
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 eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE # Run inference directly in the terminal: ./llama-cli -hf eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE
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 eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE # Run inference directly in the terminal: ./build/bin/llama-cli -hf eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE
Use Docker
docker model run hf.co/eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE
- LM Studio
- Jan
- vLLM
How to use eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-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": "eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE
- Ollama
How to use eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF with Ollama:
ollama run hf.co/eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE
- Unsloth Studio
How to use eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-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 eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-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 eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF to start chatting
- Pi
How to use eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE
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": "eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-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 eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE
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 eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE
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 "eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE" \ --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 eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF with Docker Model Runner:
docker model run hf.co/eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE
- Lemonade
How to use eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF:MXFP4_MOE
Run and chat with the model
lemonade run user.Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF-MXFP4_MOE
List all available models
lemonade list
Qwen3.5-122B-A10B MXFP4_MOE GGUF with MTP Donor
This is a community-merged GGUF build of Qwen3.5-122B-A10B MXFP4_MOE with an injected MTP donor layer for llama.cpp MTP speculative decoding.
This repository is not an official release from Qwen, Unsloth, or LaikaFramework.
This is an experimental community merge. Please report loading issues, MTP compatibility problems, or runtime results in the Discussions tab.
What this repository contains
This repository provides a merged GGUF file:
Qwen3.5-122B-A10B-MXFP4_MOE-MTP-merged.gguf
The model is intended for testing with a custom llama.cpp build that supports MTP speculative decoding.
Sources and attribution
This file was produced from the following sources:
- Original base model:
Qwen/Qwen3.5-122B-A10B - Base GGUF quantization:
unsloth/Qwen3.5-122B-A10B-GGUF,MXFP4_MOE - MTP donor:
LaikaFramework/Qwen3.5-122B-A3B-MTP-Donor - Merge method:
convert.py merge <single-base.gguf> <donor.gguf> <output.gguf> - Runtime: custom
llama.cppbuild with MTP support, PR #22673 style
Why this merge exists
At the time of testing, complete Qwen3.5-122B-A10B GGUF files with working MTP support were not widely available.
This merge adds the missing MTP/NextN layer metadata and tensors to an existing MXFP4_MOE GGUF base.
The key metadata expected after merge is:
general.architecture = qwen35moe
qwen35moe.block_count = 49
qwen35moe.nextn_predict_layers = 1
Tested environment
Local test environment:
OS: Ubuntu 24.04
Hardware: AMD Ryzen AI Max+ 395 / Radeon 8060S
Memory: 128GB unified memory
Backend: llama.cpp Vulkan / RADV
Context tested: 262144
MTP setting: --spec-type mtp --spec-draft-n-max 2
Local test results
On the above AMD/Vulkan system, the model successfully loaded as:
qwen35moe_mtp
Observed local performance:
1200-token test:
decode speed: around 31 tok/s
MTP draft acceptance: around 72%
3000-token test:
decode speed: around 31 tok/s
MTP draft acceptance: around 76%
These numbers are only local observations. Your performance may vary significantly depending on backend, hardware, memory bandwidth, context size, and llama.cpp version.
Recommended llama-server command
Example command:
LLAMA="/path/to/llama-server"
MODEL="/path/to/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-merged.gguf"
"$LLAMA" \
-m "$MODEL" \
--host 0.0.0.0 \
--port 1236 \
--alias qwen35-122b-mxfp4-mtp \
-ngl 999 \
-c 262144 \
-np 1 \
-b 1024 \
-ub 256 \
--cache-type-k q8_0 \
--cache-type-v q8_0 \
--jinja \
--reasoning off \
--reasoning-format deepseek \
--temp 0.3 \
--top-p 0.95 \
--top-k 20 \
--spec-type mtp \
--spec-draft-n-max 2
Low-memory KV option
For lower KV cache memory usage at very long context, you may test:
--cache-type-k q4_0 \
--cache-type-v q4_0
In local testing, q4 KV reduced memory pressure and remained usable, but q8 KV is recommended as the default quality-first configuration.
Important notes
- This model requires a llama.cpp build with MTP support.
- This model is not guaranteed to work with stock llama.cpp releases that do not support MTP.
- This file is a community merge and should be treated as experimental.
- Do not use this repository as evidence of official Qwen, Unsloth, or LaikaFramework support.
- MTP speculative decoding primarily improves decode/generation speed, not prefill speed.
- Very long context still requires substantial KV cache memory.
Verification
A SHA256 checksum is included in SHA256SUMS.
To verify after download:
sha256sum -c SHA256SUMS
License
The upstream Qwen model is released under Apache-2.0.
This repository follows Apache-2.0 and retains attribution to the upstream projects.
Please also review and respect the license terms of the upstream model and source repositories.
- Downloads last month
- 627
4-bit
Model tree for eric717273/Qwen3.5-122B-A10B-MXFP4_MOE-MTP-GGUF
Base model
Qwen/Qwen3.5-122B-A10B