Image-Text-to-Text
Transformers
Safetensors
English
German
multilingual
qwen3_5
cybersecurity
red-team
white-hat
offensive-security
pentest
compressed-tensors
w8a16
int8
marlin
vllm
multimodal
function-calling
qwen3
fine-tune
conversational
Instructions to use QuaduxIT/Qwen3.8-27B-Whitehat-W8A16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use QuaduxIT/Qwen3.8-27B-Whitehat-W8A16 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="QuaduxIT/Qwen3.8-27B-Whitehat-W8A16") 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 AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("QuaduxIT/Qwen3.8-27B-Whitehat-W8A16") model = AutoModelForMultimodalLM.from_pretrained("QuaduxIT/Qwen3.8-27B-Whitehat-W8A16", device_map="auto") 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?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use QuaduxIT/Qwen3.8-27B-Whitehat-W8A16 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "QuaduxIT/Qwen3.8-27B-Whitehat-W8A16" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "QuaduxIT/Qwen3.8-27B-Whitehat-W8A16", "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/QuaduxIT/Qwen3.8-27B-Whitehat-W8A16
- SGLang
How to use QuaduxIT/Qwen3.8-27B-Whitehat-W8A16 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 "QuaduxIT/Qwen3.8-27B-Whitehat-W8A16" \ --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": "QuaduxIT/Qwen3.8-27B-Whitehat-W8A16", "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 "QuaduxIT/Qwen3.8-27B-Whitehat-W8A16" \ --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": "QuaduxIT/Qwen3.8-27B-Whitehat-W8A16", "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" } } ] } ] }' - Docker Model Runner
How to use QuaduxIT/Qwen3.8-27B-Whitehat-W8A16 with Docker Model Runner:
docker model run hf.co/QuaduxIT/Qwen3.8-27B-Whitehat-W8A16
Upload NOTICE with huggingface_hub
Browse files
NOTICE
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Qwen3.8-27B-Whitehat (Quadux) — W8A16
|
| 2 |
+
Copyright 2026 Quadux IT GmbH
|
| 3 |
+
|
| 4 |
+
This product includes software and model weights developed by third parties,
|
| 5 |
+
redistributed here in modified form under the Apache License, Version 2.0.
|
| 6 |
+
|
| 7 |
+
------------------------------------------------------------------------------
|
| 8 |
+
Base model
|
| 9 |
+
------------------------------------------------------------------------------
|
| 10 |
+
Qwen3.8-27B
|
| 11 |
+
Copyright the Qwen team, Alibaba Cloud.
|
| 12 |
+
Licensed under the Apache License, Version 2.0.
|
| 13 |
+
Source: https://huggingface.co/Qwen/Qwen3.8-27B
|
| 14 |
+
|
| 15 |
+
The model weights distributed here are a derivative work of Qwen3.8-27B.
|
| 16 |
+
|
| 17 |
+
------------------------------------------------------------------------------
|
| 18 |
+
Modifications by Quadux IT GmbH (Apache-2.0 Section 4(b))
|
| 19 |
+
------------------------------------------------------------------------------
|
| 20 |
+
The following changes were made to the base model to produce this derivative
|
| 21 |
+
work:
|
| 22 |
+
|
| 23 |
+
* Selective behavioural fine-tuning (multimodal LoRA, merged into the
|
| 24 |
+
weights) that opens computer-/network-security and offensive-security
|
| 25 |
+
tasks (exploit development, malware and C2 analysis, reverse engineering,
|
| 26 |
+
phishing-infrastructure and awareness testing, copyright-/DRM- and other
|
| 27 |
+
legal-restriction bypass for feasibility and security research) while
|
| 28 |
+
RETAINING refusal of physically harmful content (weapons, explosives,
|
| 29 |
+
drug synthesis, CBRN, violence) and CSAM. The boundary is enforced
|
| 30 |
+
language-independently and across the text and vision (image) input paths.
|
| 31 |
+
This fine-tune is distributed at full precision in the sibling repository
|
| 32 |
+
QuaduxIT/Qwen3.8-27B-Whitehat (BF16 reference).
|
| 33 |
+
|
| 34 |
+
* Quantization: the language-model linears were quantized to INT8 weight-only (W8A16, 8-bit weights / 16-bit activations) using the compressed-tensors format with Marlin kernels (near-lossless). The quantization covers the language-model linear
|
| 35 |
+
layers only; the vision tower and multimodal projector are left in FP16.
|
| 36 |
+
Produced with llm-compressor (https://github.com/vllm-project/llm-compressor).
|
| 37 |
+
lm_head and embed_tokens are excluded from quantization.
|
| 38 |
+
|
| 39 |
+
The vision tower ("visual") was frozen during fine-tuning and is unchanged
|
| 40 |
+
from the base model, and is NOT quantized (kept in FP16).
|
| 41 |
+
|
| 42 |
+
------------------------------------------------------------------------------
|
| 43 |
+
Calibration data
|
| 44 |
+
------------------------------------------------------------------------------
|
| 45 |
+
The quantization was calibrated with the publicly available
|
| 46 |
+
"calibration_datav3" text corpus (bartowski). No end-user or customer data
|
| 47 |
+
was used.
|
| 48 |
+
|
| 49 |
+
------------------------------------------------------------------------------
|
| 50 |
+
This NOTICE file is provided for informational purposes only and does not
|
| 51 |
+
modify the License. See the LICENSE file for the full Apache License 2.0 terms.
|
| 52 |
+
|
| 53 |
+
Use of this model is subject to the Disclaimer and Terms of Use — see DISCLAIMER.md and the model card. / Die Nutzung unterliegt dem Haftungsausschluss — siehe DISCLAIMER.md und die Model-Card.
|