Completely uncensored, including image and full on detailed (but compact, and precise) GLM 4.7 Flash thinking/reasoning.
There are no "Qwen thinking traces", as this was a full on "convert" from "instruct" to "thinking".
Special care was taken to only use minimal power to "implant" the GLM 4.7 thinking, while preserving Qwen's core including functions and metrics.
Training via Unsloth, using Linux for Windows on local hardware.
This model is a beast.
Will generate any kind of content and accept all images types.
For all use cases. No nanny... anywhere.
Reasoning amps up the image analytics, details and output generation AND BENCHMARKS.
Reasoning/thinking is TEMP stable too.
The "persona" of this model will also be different from a Qwen too.
Context: 256k.
I have added Qwen data/benchmarks for this model below.
NOTE: this is the correct repo info, as the base of this model was Qwen VL-8B Instruct.
KLD: 1 or lower is excellent, zero is perfect (no damage to the model).
Special Thanks to:
Team "Qwen" for making an excellent model.
Team "P-E-W" for making Heretic software.
Team "coder3101" for Heretic'ing the model.
Team "TeichAI" for the excellent GLM 4.7 Flash Distill dataset.
Team "Unsloth" for making training the model painless.
Team "Mradermarcher" for the quants.
From Qwen's repo (this was the base model ("instruct") to make this thinking model)
Qwen3-VL-8B-Instruct
Meet Qwen3-VL — the most powerful vision-language model in the Qwen series to date.
This generation delivers comprehensive upgrades across the board: superior text understanding & generation, deeper visual perception & reasoning, extended context length, enhanced spatial and video dynamics comprehension, and stronger agent interaction capabilities.
Available in Dense and MoE architectures that scale from edge to cloud, with Instruct and reasoning‑enhanced Thinking editions for flexible, on‑demand deployment.
Visual Coding Boost: Generates Draw.io/HTML/CSS/JS from images/videos.
Advanced Spatial Perception: Judges object positions, viewpoints, and occlusions; provides stronger 2D grounding and enables 3D grounding for spatial reasoning and embodied AI.
Long Context & Video Understanding: Native 256K context, expandable to 1M; handles books and hours-long video with full recall and second-level indexing.
Enhanced Multimodal Reasoning: Excels in STEM/Math—causal analysis and logical, evidence-based answers.
Upgraded Visual Recognition: Broader, higher-quality pretraining is able to “recognize everything”—celebrities, anime, products, landmarks, flora/fauna, etc.
Expanded OCR: Supports 32 languages (up from 19); robust in low light, blur, and tilt; better with rare/ancient characters and jargon; improved long-document structure parsing.
Text Understanding on par with pure LLMs: Seamless text–vision fusion for lossless, unified comprehension.
Model Architecture Updates:
Interleaved-MRoPE: Full‑frequency allocation over time, width, and height via robust positional embeddings, enhancing long‑horizon video reasoning.
DeepStack: Fuses multi‑level ViT features to capture fine‑grained details and sharpen image–text alignment.
Text–Timestamp Alignment: Moves beyond T‑RoPE to precise, timestamp‑grounded event localization for stronger video temporal modeling.
This is the weight repository for Qwen3-VL-8B-Instruct.
Model Performance
Multimodal performance
Pure text performance
Quickstart
Below, we provide simple examples to show how to use Qwen3-VL with 🤖 ModelScope and 🤗 Transformers.
The code of Qwen3-VL has been in the latest Hugging Face transformers and we advise you to build from source with command:
pip install git+https://github.com/huggingface/transformers
# pip install transformers==4.57.0 # currently, V4.57.0 is not released
Using 🤗 Transformers to Chat
Here we show a code snippet to show how to use the chat model with transformers:
python
1from transformers import Qwen3VLForConditionalGeneration, AutoProcessor
23# default: Load the model on the available device(s)4model = Qwen3VLForConditionalGeneration.from_pretrained(5"Qwen/Qwen3-VL-8B-Instruct", dtype="auto", device_map="auto"6)78# We recommend enabling flash_attention_2 for better acceleration and memory saving, especially in multi-image and video scenarios.9# model = Qwen3VLForConditionalGeneration.from_pretrained(10# "Qwen/Qwen3-VL-8B-Instruct",11# dtype=torch.bfloat16,12# attn_implementation="flash_attention_2",13# device_map="auto",14# )1516processor = AutoProcessor.from_pretrained("Qwen/Qwen3-VL-8B-Instruct")1718messages =[19{20"role":"user",21"content":[22{23"type":"image",24"image":"https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen-VL/assets/demo.jpeg",25},26{"type":"text","text":"Describe this image."},27],28}29]3031# Preparation for inference32inputs = processor.apply_chat_template(33 messages,34 tokenize=True,35 add_generation_prompt=True,36 return_dict=True,37 return_tensors="pt"38)39inputs = inputs.to(model.device)4041# Inference: Generation of the output42generated_ids = model.generate(**inputs, max_new_tokens=128)43generated_ids_trimmed =[44 out_ids[len(in_ids):]for in_ids, out_ids inzip(inputs.input_ids, generated_ids)45]46output_text = processor.batch_decode(47 generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False48)49print(output_text)