Image-Text-to-Text
Transformers
GGUF
llama.cpp
vision
multimodal
text-generation-inference
unsloth
conversational
mtp
multi-token-prediction
speculative-decoding
qwen3_6
Mixture of Experts
reasoning
chain-of-thought
lora
sft
tool-use
function-calling
long-context
Instructions to use Jackrong/Qwopus3.6-35B-A3B-v1-MTP-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Jackrong/Qwopus3.6-35B-A3B-v1-MTP-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="Jackrong/Qwopus3.6-35B-A3B-v1-MTP-GGUF") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Jackrong/Qwopus3.6-35B-A3B-v1-MTP-GGUF", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Jackrong/Qwopus3.6-35B-A3B-v1-MTP-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Jackrong/Qwopus3.6-35B-A3B-v1-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": "Jackrong/Qwopus3.6-35B-A3B-v1-MTP-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/Jackrong/Qwopus3.6-35B-A3B-v1-MTP-GGUF
- SGLang
How to use Jackrong/Qwopus3.6-35B-A3B-v1-MTP-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 "Jackrong/Qwopus3.6-35B-A3B-v1-MTP-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": "Jackrong/Qwopus3.6-35B-A3B-v1-MTP-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "Jackrong/Qwopus3.6-35B-A3B-v1-MTP-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": "Jackrong/Qwopus3.6-35B-A3B-v1-MTP-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Unsloth Studio
How to use Jackrong/Qwopus3.6-35B-A3B-v1-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 Jackrong/Qwopus3.6-35B-A3B-v1-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 Jackrong/Qwopus3.6-35B-A3B-v1-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 Jackrong/Qwopus3.6-35B-A3B-v1-MTP-GGUF to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="Jackrong/Qwopus3.6-35B-A3B-v1-MTP-GGUF", max_seq_length=2048, ) - Docker Model Runner
How to use Jackrong/Qwopus3.6-35B-A3B-v1-MTP-GGUF with Docker Model Runner:
docker model run hf.co/Jackrong/Qwopus3.6-35B-A3B-v1-MTP-GGUF
Commit ·
8643694
0
Parent(s):
Super-squash GGUF cleanup history
Browse files- .gitattributes +48 -0
- Qwopus3.6-35B-A3B-v1-MTP-Q3_K_M.gguf +3 -0
- Qwopus3.6-35B-A3B-v1-MTP-Q4_K_M.gguf +3 -0
- Qwopus3.6-35B-A3B-v1-MTP-Q5_K_M.gguf +3 -0
- Qwopus3.6-35B-A3B-v1-MTP-Q6_K.gguf +3 -0
- Qwopus3.6-35B-A3B-v1-MTP-Q8_0.gguf +3 -0
- README.md +69 -0
- mmproj-F32.gguf +3 -0
.gitattributes
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz 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 |
+
Qwopus3.6-35B-A3B-v1-MTP-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwopus3.6-35B-A3B-v1-MTP-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwopus3.6-35B-A3B-v1-MTP-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwopus3.6-35B-A3B-v1-MTP-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwopus3.6-35B-A3B-v1-MTP-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwopus3.6-35B-A3B-v1-MTP-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwopus3.6-35B-A3B-v1-MTP-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwopus3.6-35B-A3B-v1-MTP-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwopus3.6-35B-A3B-v1-MTP-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwopus3.6-35B-A3B-v1-MTP-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwopus3.6-35B-A3B-v1-MTP-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwopus3.6-35B-A3B-v1-MTP-BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
mmproj-F32.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwopus3.6-35B-A3B-v1-MTP-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c150d81a409d2be6beacbdd7e1b933998b3874e0725443fef1742c31250dc2b
|
| 3 |
+
size 17165606656
|
Qwopus3.6-35B-A3B-v1-MTP-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:54256ec02e6f4798b088e07232ef4bcd2f070fb8014799b7840281ae3bc5aa02
|
| 3 |
+
size 21712410368
|
Qwopus3.6-35B-A3B-v1-MTP-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:137592fe30e8470cebcd3581fd5d240ecd2fb7cc559b7728c4b6b31bae89ec14
|
| 3 |
+
size 25346479872
|
Qwopus3.6-35B-A3B-v1-MTP-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:66ec6ca41c71f40b112ab346eb8ed67cbdf43cea1297acfa1402e4180759308d
|
| 3 |
+
size 29207678720
|
Qwopus3.6-35B-A3B-v1-MTP-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c43eed390935e26b1851973d3cd5bb929cb22393dc7e6186636a759b7f77627
|
| 3 |
+
size 37801096960
|
README.md
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
base_model:
|
| 4 |
+
- unsloth/Qwen3.6-35B-A3B
|
| 5 |
+
tags:
|
| 6 |
+
- gguf
|
| 7 |
+
- llama.cpp
|
| 8 |
+
- image-text-to-text
|
| 9 |
+
- vision
|
| 10 |
+
- multimodal
|
| 11 |
+
- text-generation-inference
|
| 12 |
+
- transformers
|
| 13 |
+
- unsloth
|
| 14 |
+
- conversational
|
| 15 |
+
- mtp
|
| 16 |
+
- multi-token-prediction
|
| 17 |
+
- speculative-decoding
|
| 18 |
+
- qwen3_6
|
| 19 |
+
- moe
|
| 20 |
+
- reasoning
|
| 21 |
+
- chain-of-thought
|
| 22 |
+
- lora
|
| 23 |
+
- sft
|
| 24 |
+
- tool-use
|
| 25 |
+
- function-calling
|
| 26 |
+
- long-context
|
| 27 |
+
license: apache-2.0
|
| 28 |
+
language:
|
| 29 |
+
- en
|
| 30 |
+
- zh
|
| 31 |
+
- es
|
| 32 |
+
- ru
|
| 33 |
+
- ja
|
| 34 |
+
pipeline_tag: image-text-to-text
|
| 35 |
+
datasets:
|
| 36 |
+
- Jackrong/Claude-opus-4.7-TraceInversion-5000x
|
| 37 |
+
- Jackrong/Claude-opus-4.6-TraceInversion-9000x
|
| 38 |
+
---
|
| 39 |
+
# Jackrong/Qwopus3.6-35B-A3B-v1-MTP-GGUF
|
| 40 |
+
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; border: 1px solid #93c5fd; border-radius: 12px; overflow: hidden; background: #ffffff; box-shadow: 0 2px 4px rgba(0,0,0,0.02); margin-bottom: 20px;">
|
| 41 |
+
<div style="background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); padding: 12px 16px; color: white; font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 8px;">
|
| 42 |
+
<span>⚡</span> What is MTP (Multi-Token Prediction)?
|
| 43 |
+
</div>
|
| 44 |
+
<div style="padding: 16px; font-size: 13px; color: #334155; line-height: 1.6;">
|
| 45 |
+
MTP (Multi-Token Prediction) is a technique introduced in the Qwen3.6 architecture that enables the model to predict multiple future tokens simultaneously. By leveraging dedicated MTP heads, this model supports <b>speculative decoding</b>, where a draft model predicts multiple tokens at once and the target model verifies them in parallel, resulting in significant inference speedups without sacrificing output quality.
|
| 46 |
+
<br><br>
|
| 47 |
+
This GGUF release preserves the MTP heads from <code>unsloth/Qwen3.6-35B-A3B</code>, making it compatible with mainstream inference frameworks that support MTP-based speculative decoding (such as llama.cpp and its derivatives). For optimal throughput, pair this MTP-enabled GGUF with a corresponding draft model.
|
| 48 |
+
</div>
|
| 49 |
+
</div>
|
| 50 |
+
|
| 51 |
+
Source model: `Jackrong/Qwopus3.6-35B-A3B-v1`
|
| 52 |
+
MTP source: `unsloth/Qwen3.6-35B-A3B`
|
| 53 |
+
|
| 54 |
+
Uploaded GGUF variants:
|
| 55 |
+
|
| 56 |
+
- `Qwopus3.6-35B-A3B-v1-MTP-Q2_K.gguf`
|
| 57 |
+
- `Qwopus3.6-35B-A3B-v1-MTP-Q3_K_S.gguf`
|
| 58 |
+
- `Qwopus3.6-35B-A3B-v1-MTP-Q3_K_M.gguf`
|
| 59 |
+
- `Qwopus3.6-35B-A3B-v1-MTP-Q3_K_L.gguf`
|
| 60 |
+
- `Qwopus3.6-35B-A3B-v1-MTP-IQ4_XS.gguf`
|
| 61 |
+
- `Qwopus3.6-35B-A3B-v1-MTP-Q4_K_S.gguf`
|
| 62 |
+
- `Qwopus3.6-35B-A3B-v1-MTP-Q4_K_M.gguf`
|
| 63 |
+
- `Qwopus3.6-35B-A3B-v1-MTP-Q5_K_S.gguf`
|
| 64 |
+
- `Qwopus3.6-35B-A3B-v1-MTP-Q5_K_M.gguf`
|
| 65 |
+
- `Qwopus3.6-35B-A3B-v1-MTP-Q6_K.gguf`
|
| 66 |
+
- `Qwopus3.6-35B-A3B-v1-MTP-Q8_0.gguf`
|
| 67 |
+
- `Qwopus3.6-35B-A3B-v1-MTP-BF16.gguf`
|
| 68 |
+
|
| 69 |
+
This release was prepared by validating or injecting Qwen MTP/nextn tensors before GGUF conversion.
|
mmproj-F32.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:56c89f1ca1547a8a15066642f54b94e4911e3c86cccb3d88163d823e8b6b8799
|
| 3 |
+
size 902822560
|