Instructions to use DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1 with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1 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 DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1:Q4_K_M # Run inference directly in the terminal: llama cli -hf DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1:Q4_K_M # Run inference directly in the terminal: llama cli -hf DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1: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 DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1: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 DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1:Q4_K_M
Use Docker
docker model run hf.co/DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1 with Ollama:
ollama run hf.co/DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1:Q4_K_M
- Unsloth Studio
How to use DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1 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 DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1 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 DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1 to start chatting
- Pi
How to use DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1 with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1: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": "DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1 with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1: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 DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1 with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1: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 "DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1: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 DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1 with Docker Model Runner:
docker model run hf.co/DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1:Q4_K_M
- Lemonade
How to use DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1-Q4_K_M
List all available models
lemonade list
Qwen3-VL-32B-Instruct Heretic Adaptive v1
This repository contains three weight-edited variants of
Qwen/Qwen3-VL-32B-Instruct. They were selected from one 600-trial adaptive
search. All variants preserve the original Transformers model layout and can be
loaded with the same Qwen3-VL-compatible software as the base model.
Variants
| Directory | Search trial | Intended trade-off |
|---|---|---|
balanced |
303 | Recommended default; strongest measured quality preservation |
max-removal |
273 | Lowest sparse refusal-geometry score in this search |
marker-zero |
262 | Zero lexical refusal-marker hits on the 136-prompt search set |
Trial numbers are zero-based Optuna trial IDs. Heretic's interactive export UI shows them as 304, 274, and 263 respectively.
Exact perplexity check
The final exports were reloaded and measured on the same frozen 400 x 512-token WikiText-2 stream in BF16.
| Variant | Perplexity | Relative to base |
|---|---|---|
| Base model | 8.432361 | 0.000% |
balanced |
8.426778 | -0.066% |
max-removal |
8.428192 | -0.049% |
marker-zero |
8.434537 | +0.026% |
Small negative changes are normal measurement outcomes: the edit can slightly improve likelihood on this particular finite sample. They should not be read as a general capability improvement.
Search measurements
Lower sparse refusal-geometry values are better. Lexical marker counts are an auxiliary diagnostic only: zero markers do not prove zero semantic evasion, and a positive marker count does not prove that the answer was a refusal.
| Variant | Sparse refusal geometry | Positive probes | Lexical markers | Search PPL delta |
|---|---|---|---|---|
max-removal |
-0.009977 | 53 / 136 | 4 / 136 | +0.039% |
balanced |
-0.008917 | 53 / 136 | 2 / 136 | -0.051% |
marker-zero |
-0.008833 | 58 / 136 | 0 / 136 | +0.335% |
Reload smoke test
The base model and all three exports were independently reloaded and generated 16 responses each with the same inputs and settings. Every archive had 16 unique IDs and zero empty responses. This is a technical export/reload test, not a substitute for semantic evaluation.
Loading
Download one variant directory and load it as a normal local Qwen3-VL model.
from transformers import AutoProcessor, Qwen3VLForConditionalGeneration
path = "balanced"
model = Qwen3VLForConditionalGeneration.from_pretrained(
path,
torch_dtype="auto",
device_map="auto",
)
processor = AutoProcessor.from_pretrained(path)
Use a recent Transformers build with Qwen3-VL support. No adapter is required; the published directories contain merged weights.
Limitations
- The search responses were short and the lexical metric is not a semantic judge. Soft substitutions and indirect evasions may remain.
- Perplexity covers one frozen text benchmark and does not establish unchanged vision, reasoning, multilingual, or long-context behavior.
- The three variants are alternatives, not checkpoints that should be stacked.
- Evaluate the selected variant on the prompts and generation settings relevant to your own use case.
Numeric reports and the search journal are included under evaluation/ and
search/ for reproducibility. Prompt and response text is not published.
- Downloads last month
- -
2-bit
3-bit
4-bit
6-bit
8-bit
Model tree for DmitryDB/Qwen3-VL-32B-Instruct-Heretic-Adaptive-v1
Base model
Qwen/Qwen3-VL-32B-Instruct