Instructions to use immanuelpeter/Qwen3.8-27B-Vision with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use immanuelpeter/Qwen3.8-27B-Vision with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-feature-extraction", model="immanuelpeter/Qwen3.8-27B-Vision")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("immanuelpeter/Qwen3.8-27B-Vision") model = AutoModel.from_pretrained("immanuelpeter/Qwen3.8-27B-Vision", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Qwen3.8-27B Vision
This repository packages the Tower and learned merger from Qwen3.8-27B.
Contents
| File | Tensors | What it holds |
|---|---|---|
model.safetensors |
333 | Tower and learned merger, extracted from source shard 1 |
config.json |
Vision-only Qwen3_5VisionConfig |
|
preprocessor_config.json |
Qwen image preprocessing configuration |
Qwen implements the learned merger inside Qwen3_5VisionModel, so this repository does
not need a separate Projector file.
Architecture
| Component | Details |
|---|---|
| Tower | 27 layers, 1152 hidden, 16 heads, 4304 intermediate, patch size 16 |
| Token compression | 2x2 spatial grouping |
| Learned merger | LayerNorm(1152), Linear(4608, 4608), GELU, Linear(4608, 5120) |
last_hidden_state contains the raw Tower tokens. pooler_output contains the merged
features at the language-model width.
Usage
See examples/inference.py for image feature extraction.
Validation
The release tests compare all 333 tensors with the pinned parent checkpoint using
torch.equal. Fixed-image Tower and merged outputs also match the parent implementation
bit-for-bit on CPU and in BF16 on an NVIDIA A100.
Reproduction
The export script
reads model.visual.* from shard 1 of Qwen/Qwen3.8-27B, removes the prefix, and writes
the original BF16 tensors. The script pins the parent revision.
Credits
Qwen released the Qwen3.8-27B weights and the native Transformers implementation.
License
Apache License 2.0, the same license as the source model.
- Downloads last month
- -
Model tree for immanuelpeter/Qwen3.8-27B-Vision
Base model
Qwen/Qwen3.8-27B