Instructions to use AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-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 AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-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 AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-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 AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-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 AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF:Q4_K_M
Use Docker
docker model run hf.co/AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-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": "AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-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/AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF:Q4_K_M
- Ollama
How to use AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF with Ollama:
ollama run hf.co/AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF with Docker Model Runner:
docker model run hf.co/AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF:Q4_K_M
- Lemonade
How to use AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-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 AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-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 AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-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 "AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-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"
adi-qwen2.5-vl-7b-ablit-glm5.2
Part of the ADI (Advanced Data Intelligence) model line โ ADI Qwen series.
An uncensored, vision-capable, fully local model that reasons and answers like a frontier teacher. Built by distilling glm-5.2 general-knowledge responses into an abliterated Qwen2.5-VL-7B student with a light 4-bit QLoRA fine-tune, then merged, converted, and quantized to GGUF. Only the language layers were tuned โ the base's vision tower is preserved and shipped as a companion projector โ and the abliterated base keeps its minimal-refusal behavior, with the fine-tune kept light specifically to avoid re-aligning it.
Capabilities
| Size | Context | Input | Output | Tools |
|---|---|---|---|---|
| 4.68 GB | 128K | ๐ ฃ๐ผ๏ธ Text + Image | Text | โ |
| Base model | huihui-ai/Qwen2.5-VL-7B-Instruct-abliterated (abliterated Qwen2.5-VL-7B-Instruct) |
| Teacher | glm-5.2 (responses distilled, thinking disabled) |
| Method | Light 4-bit QLoRA SFT (rank 16, 2 epochs, language layers only) โ merge โ GGUF |
| Quantization | Q4_K_M (~4.68 GB text) + vision projector (mmproj, ~1.3 GB) |
| License | Apache-2.0 (inherited from Qwen2.5-VL-7B) |
| Context | 128K (inherited from base) |
| Vision | Supported โ multimodal (image + text โ text) |
Run it
Pull directly into Ollama:
ollama run hf.co/AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF:Q4_K_M
It's multimodal โ pass an image to have it describe or reason over it:
ollama run adi-qwen2.5-vl-7b-ablit-glm5.2 "What's in this image? /path/to/photo.jpg"
Or download the .gguf (text) + mmproj-*.gguf (vision projector) and point any
llama.cpp-based runtime at them. Both files are required for vision.
What this model is
This is a knowledge distillation: a strong teacher (glm-5.2) generated
high-quality answers across a clean general-knowledge prompt set, and the
abliterated Qwen2.5-VL-7B student was fine-tuned to imitate them. The result reasons
and responds more like its teacher on general topics, keeps the base's uncensored
character, and retains native image understanding โ all while running on a
single consumer GPU.
What distillation does โ and doesn't do. It transfers the teacher's reasoning style and answer quality, not net-new facts. For raw factual recall, retrieval-augmented generation (RAG) is the right tool, not fine-tuning. What you get here is a 7B that structures and explains like a larger model on topics it already partly knows โ without the refusal behavior of an aligned model.
Uncensored behavior โ please read
This model is built on an abliterated base: the refusal direction has been suppressed, so it will attempt most requests rather than declining them. The fine-tune was intentionally kept light (2 epochs, benign-only data) to avoid re-introducing refusals. You are responsible for using it lawfully and ethically; it has weaker built-in safety guardrails than stock Qwen2.5-VL-7B-Instruct.
Training
| Metric | Value |
|---|---|
| Training pairs | 2,000 (deterministic subset of a 4,982-pair clean set) |
| Epochs | 2 (kept light to preserve abliteration) |
| Steps | 500 |
| Final train loss | 1.2618 |
| LoRA rank / alpha | 16 / 16 |
| Trainable params | 40.4M (language layers only; vision tower frozen) |
| Precision | 4-bit QLoRA (nf4) |
| Peak VRAM | 8.14 GB |
| Hardware | single RTX 5060 Ti (16 GB) |
| Training time | 1.44 h (~10 s/step) |
The seed prompts were drawn from the human-written Databricks Dolly-15k dataset (filtered to remove items requiring an attached context passage, then deduplicated). The teacher was queried with thinking disabled so the student learns clean final answers rather than chain-of-thought.
Notes for re-builders
- Distilling onto an abliterated base is a balancing act. Any SFT can nudge an abliterated model back toward refusals. Two choices kept the behavior intact: benign-only training data (the GLM-5.2 set has zero refusals to re-learn) and a light touch (LoRA rank 16, 2 epochs). Spot-check refusals before/after.
- Vision base = train language only. Load with Unsloth
FastVisionModel(load_in_4bit=True) andget_peft_model(finetune_vision_layers=False, finetune_language_layers=True, ...). The vision tower rides through unchanged, so the base'smmprojis the final vision projector โ reuse it, don't regenerate. - Free the GPU before loading. An Ollama model left resident in VRAM makes the
4-bit VL load spill to CPU (
ValueError: Some modules are dispatched on the CPU);ollama stop <model>first. - GGUF conversion via streaming LoRA merge (language keys map
model.language_model.*โmodel.*) โ f16 GGUF โ Q4_K_M with llama.cpp (Qwen2_5_VLForConditionalGeneration).
Serving note (Ollama vision)
On some Ollama builds the Qwen2.5-VL vision runner can degrade to blank/garbled
output after several requests in a session (text is unaffected). If that happens,
reload the model โ ollama stop adi-qwen2.5-vl-7b-ablit-glm5.2 then re-run, or set
keep_alive โ for a clean vision pass. The GGUF itself is correct; this is a
runtime quirk likely resolved by newer Ollama versions.
Intended use
General-purpose local assistant with image understanding for users who want a capable, private, offline-capable model with minimal refusal behavior: explanations, reasoning, visual Q&A, and creative writing. Not intended as a source of authoritative facts without retrieval, and not a substitute for your own safety review.
License
Apache-2.0, inherited from the Qwen2.5-VL-7B lineage via the abliterated base model. You are free to use, modify, and redistribute under the terms of that license. Distilled training data was generated using glm-5.2; users should review the teacher model's terms for their own use case.
Built at theLAB โ Learning. Algorithms. Breakthroughs.
- Downloads last month
- 322
4-bit
Model tree for AdvancedDataIntelligence/adi-qwen2.5-vl-7b-ablit-glm5.2-GGUF
Base model
Qwen/Qwen2.5-VL-7B-Instruct