Visual Document Retrieval
Transformers
Safetensors
multilingual
qwen3_5
feature-extraction
text
image
multimodal-embedding
vidore
colbert
colqwen3_5
multilingual-embedding
custom_code
Instructions to use webAI-Official/webAI-ColVec1.1-4b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use webAI-Official/webAI-ColVec1.1-4b with Transformers:
# Load model directly from transformers import AutoProcessor, AutoModel processor = AutoProcessor.from_pretrained("webAI-Official/webAI-ColVec1.1-4b", trust_remote_code=True) model = AutoModel.from_pretrained("webAI-Official/webAI-ColVec1.1-4b", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 15,786 Bytes
e8491df | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 | """
Processing utilities for ColQwen35Bidirection retrieval.
Wraps the Qwen 3.5 VL processor components (image_processor, tokenizer,
video_processor) with retrieval-specific helpers for prompt construction,
MaxSim scoring, and batch handling.
processor kwargs:
doc_prompt: Document prompt text appended after the image token.
max_num_visual_tokens: Cap on visual tokens per image, controls
resolution via max_pixels = max_num_visual_tokens × tile².
"""
from __future__ import annotations
import os
from typing import Any, List, Optional, Union
import numpy as np
from PIL import Image
from transformers import BatchFeature
from transformers.processing_utils import ProcessorMixin
from transformers.tokenization_utils_base import TextInput
from transformers.utils import logging
try:
import torch
except ImportError:
torch = None
logger = logging.get_logger(__name__)
def _size_value(size: Any, key: str) -> Any:
"""Read size entries from dict-like or object-like containers."""
if size is None:
return None
if isinstance(size, dict):
return size.get(key)
return getattr(size, key, None)
class ColQwen35BidirectionProcessor(ProcessorMixin):
"""
Processor for ColQwen35Bidirection retrieval model.
Wraps Qwen 3.5's image processor, tokenizer, and video processor
with retrieval-specific prompt construction, ``mm_token_type_ids``
generation (required by Qwen 3.5 for 3-D position computation),
and MaxSim scoring utilities.
Visual token budget (``max_num_visual_tokens``):
Qwen 3.5 determines visual token count from ``max_pixels`` on the
image processor. This class converts ``max_num_visual_tokens`` into
the equivalent ``max_pixels`` value using:
tile = patch_size × merge_size # 16 × 2 = 32
max_pixels = max_num_visual_tokens × tile² # e.g. 512 × 1024 = 524,288
Lower token budgets (e.g. 512) give memory-efficient training;
higher budgets (e.g. 2048) give finer visual granularity at inference.
"""
attributes = ["image_processor", "tokenizer", "video_processor"]
image_processor_class = "AutoImageProcessor"
video_processor_class = "AutoVideoProcessor"
tokenizer_class = ("Qwen2Tokenizer", "Qwen2TokenizerFast")
def __init__(
self,
image_processor=None,
tokenizer=None,
video_processor=None,
chat_template=None,
doc_prompt: str = "Describe the image.",
max_num_visual_tokens: Optional[int] = None,
query_augmentation_tokens: int = 10,
**kwargs,
):
super().__init__(
image_processor, tokenizer, video_processor,
chat_template=chat_template, **kwargs,
)
self.doc_prompt = doc_prompt
self.max_num_visual_tokens = max_num_visual_tokens
self.query_augmentation_tokens = query_augmentation_tokens
if max_num_visual_tokens is not None:
self._apply_max_pixels()
self.image_token = (
tokenizer.image_token
if getattr(tokenizer, "image_token", None)
else "<|image_pad|>"
)
self.image_token_id = (
tokenizer.image_token_id
if getattr(tokenizer, "image_token_id", None)
else tokenizer.convert_tokens_to_ids(self.image_token)
)
self.vision_start_token = (
tokenizer.vision_start_token
if getattr(tokenizer, "vision_start_token", None)
else "<|vision_start|>"
)
self.vision_end_token = (
tokenizer.vision_end_token
if getattr(tokenizer, "vision_end_token", None)
else "<|vision_end|>"
)
self.tokenizer.padding_side = "left"
self._doc_prompt_template = (
"<|im_start|>user\n"
f"{self.vision_start_token}{self.image_token}{self.vision_end_token}"
f"{self.doc_prompt}"
"<|im_end|><|endoftext|>"
)
# ------------------------------------------------------------------
# max_pixels / visual token budget
# ------------------------------------------------------------------
def _apply_max_pixels(self) -> None:
"""Sync image_processor.max_pixels with max_num_visual_tokens.
Sets ``max_pixels`` on the image processor attribute AND in the
``size`` dict (``longest_edge``), because different versions of
the Qwen2VLImageProcessor read from different locations. Also
ensures ``min_pixels`` (``shortest_edge``) does not exceed
``max_pixels``, which would cause the resize to ignore the cap.
"""
patch_size = getattr(self.image_processor, "patch_size", None)
merge_size = (
getattr(self.image_processor, "merge_size", None)
or getattr(self.image_processor, "spatial_merge_size", None)
)
if patch_size is None or merge_size is None:
logger.warning(
"Cannot derive max_pixels: image_processor missing "
"patch_size or merge_size/spatial_merge_size."
)
return
tile = patch_size * merge_size
max_pixels = self.max_num_visual_tokens * tile * tile
self.image_processor.max_pixels = max_pixels
size_obj = getattr(self.image_processor, "size", None)
if size_obj is not None:
if isinstance(size_obj, dict):
size_obj["longest_edge"] = max_pixels
cur_min = size_obj.get("shortest_edge")
if cur_min is not None and cur_min > max_pixels:
size_obj["shortest_edge"] = max_pixels
else:
if hasattr(size_obj, "longest_edge"):
size_obj.longest_edge = max_pixels
cur_min = getattr(size_obj, "shortest_edge", None)
if cur_min is not None and cur_min > max_pixels and hasattr(size_obj, "shortest_edge"):
size_obj.shortest_edge = max_pixels
cur_min_pixels = getattr(self.image_processor, "min_pixels", 0)
if cur_min_pixels > max_pixels:
self.image_processor.min_pixels = max_pixels
@classmethod
def from_pretrained(
cls,
pretrained_model_name_or_path: Union[str, os.PathLike],
*,
max_num_visual_tokens: Optional[int] = None,
doc_prompt: Optional[str] = None,
query_augmentation_tokens: Optional[int] = None,
**kwargs,
) -> "ColQwen35BidirectionProcessor":
extra_kwargs: dict[str, Any] = {}
if doc_prompt is not None:
extra_kwargs["doc_prompt"] = doc_prompt
if max_num_visual_tokens is not None:
extra_kwargs["max_num_visual_tokens"] = max_num_visual_tokens
if query_augmentation_tokens is not None:
extra_kwargs["query_augmentation_tokens"] = query_augmentation_tokens
instance = super().from_pretrained(
pretrained_model_name_or_path, **extra_kwargs, **kwargs,
)
if max_num_visual_tokens is not None:
instance.max_num_visual_tokens = max_num_visual_tokens
instance._apply_max_pixels()
if query_augmentation_tokens is not None:
instance.query_augmentation_tokens = query_augmentation_tokens
return instance
# ------------------------------------------------------------------
# Retrieval protocol: process_images
# ------------------------------------------------------------------
@property
def query_augmentation_token(self) -> str:
return self.tokenizer.pad_token
def process_images(
self,
images: Union[Image.Image, List[Image.Image]],
) -> BatchFeature:
"""
Tokenize and encode document images for retrieval.
Each image is independently processed with the doc_prompt,
and ``mm_token_type_ids`` is computed for Qwen 3.5's 3-D
positional encoding. Multiple images are left-padded and
concatenated into a single batch.
"""
if not isinstance(images, list):
images = [images]
if len(images) == 0:
raise ValueError("No images provided")
images = [img.convert("RGB") for img in images]
per_image_features: list[BatchFeature] = []
for image in images:
features = self._process_single_image(image)
per_image_features.append(features)
if len(per_image_features) == 1:
return per_image_features[0]
return self._left_pad_and_concat(per_image_features)
def _process_single_image(self, image: Image.Image) -> BatchFeature:
"""Process one image through the full pipeline with mm_token_type_ids."""
size_obj = getattr(self.image_processor, "size", None)
min_pixels = _size_value(size_obj, "shortest_edge")
if min_pixels is None:
min_pixels = getattr(self.image_processor, "min_pixels", None)
max_pixels = _size_value(size_obj, "longest_edge")
if max_pixels is None:
max_pixels = getattr(self.image_processor, "max_pixels", None)
ip_kwargs: dict[str, Any] = {
"images": [[image]],
}
if min_pixels is not None:
ip_kwargs["min_pixels"] = int(min_pixels)
if max_pixels is not None:
ip_kwargs["max_pixels"] = int(max_pixels)
image_inputs = self.image_processor(**ip_kwargs)
image_grid_thw = image_inputs["image_grid_thw"]
merge_size = (
getattr(self.image_processor, "merge_size", None)
or getattr(self.image_processor, "spatial_merge_size", None)
)
if merge_size is None:
raise ValueError(
"Image processor missing merge_size/spatial_merge_size."
)
merge_length = merge_size ** 2
prompt = self._doc_prompt_template
for grid in image_grid_thw:
num_image_tokens = int(grid.prod() // merge_length) if hasattr(grid, 'prod') else int(np.prod(grid) // merge_length)
prompt = prompt.replace(
self.image_token,
"<|placeholder|>" * num_image_tokens,
1,
)
prompt = prompt.replace("<|placeholder|>", self.image_token)
text_inputs = self.tokenizer(
[prompt], padding="longest", return_tensors="pt",
)
input_ids = text_inputs["input_ids"]
mm_token_type_ids = (input_ids == self.image_token_id).to(torch.int32)
data = {**text_inputs, **image_inputs}
data["mm_token_type_ids"] = mm_token_type_ids
for key in ("input_ids", "attention_mask"):
if key in data and not isinstance(data[key], torch.Tensor):
data[key] = torch.tensor(data[key])
return BatchFeature(data=data, tensor_type="pt")
# ------------------------------------------------------------------
# Retrieval protocol: process_queries
# ------------------------------------------------------------------
def process_queries(
self,
texts: Union[TextInput, List[TextInput]],
) -> BatchFeature:
"""
Process text queries for retrieval.
Each query is wrapped in a simple chat template and tokenized.
"""
if not isinstance(texts, list):
texts = [texts]
if len(texts) == 0:
raise ValueError("No texts provided")
suffix = self.query_augmentation_token * self.query_augmentation_tokens
formatted: list[str] = []
for text in texts:
prompt = f"<|im_start|>user\nQuery: {text}{suffix}<|im_end|><|endoftext|>"
formatted.append(prompt)
return self.tokenizer(
formatted,
return_tensors="pt",
padding="longest",
)
# ------------------------------------------------------------------
# Scoring utilities
# ------------------------------------------------------------------
def score_retrieval(
self,
query_embeddings: Union[torch.Tensor, List[torch.Tensor]],
passage_embeddings: Union[torch.Tensor, List[torch.Tensor]],
batch_size: int = 128,
output_dtype: Optional[torch.dtype] = None,
output_device: Union[torch.device, str] = "cpu",
) -> torch.Tensor:
"""
Compute late-interaction / MaxSim retrieval scores (ColBERT-like).
Args:
query_embeddings: Per-query multi-vector embeddings.
passage_embeddings: Per-passage multi-vector embeddings.
batch_size: Scoring batch size.
output_dtype: Output tensor dtype.
output_device: Output device.
Returns:
Tensor of shape ``(n_queries, n_passages)`` with scores.
"""
if len(query_embeddings) == 0:
raise ValueError("No queries provided")
if len(passage_embeddings) == 0:
raise ValueError("No passages provided")
if output_dtype is None:
output_dtype = query_embeddings[0].dtype
scores: list[torch.Tensor] = []
for i in range(0, len(query_embeddings), batch_size):
batch_queries = torch.nn.utils.rnn.pad_sequence(
query_embeddings[i : i + batch_size],
batch_first=True, padding_value=0,
)
batch_scores: list[torch.Tensor] = []
for j in range(0, len(passage_embeddings), batch_size):
batch_passages = torch.nn.utils.rnn.pad_sequence(
passage_embeddings[j : j + batch_size],
batch_first=True, padding_value=0,
)
batch_scores.append(
torch.einsum("bnd,csd->bcns", batch_queries, batch_passages)
.max(dim=3)[0]
.sum(dim=2)
)
scores.append(
torch.cat(batch_scores, dim=1)
.to(output_dtype)
.to(output_device)
)
return torch.cat(scores, dim=0)
# ------------------------------------------------------------------
# Internal helpers
# ------------------------------------------------------------------
@staticmethod
def _left_pad_and_concat(
batch_features: list[BatchFeature],
) -> BatchFeature:
"""
Left-pad variable-length BatchFeature dicts and stack them.
Qwen 3.5 yields a variable number of visual tokens per image
(resolution dependent), so we align them before concatenation.
Padding is on the left (decoder convention).
"""
all_keys = batch_features[0].keys()
concatenated: dict[str, Any] = {}
for key in all_keys:
tensors = [bf[key] for bf in batch_features]
if not isinstance(tensors[0], torch.Tensor):
concatenated[key] = tensors[0]
continue
if tensors[0].ndim < 2:
concatenated[key] = torch.cat(tensors, dim=0)
continue
max_seq_len = max(t.shape[1] for t in tensors)
padded: list[torch.Tensor] = []
for t in tensors:
pad_len = max_seq_len - t.shape[1]
if pad_len > 0:
zeros = torch.zeros(
*t.shape[:1], pad_len, *t.shape[2:],
dtype=t.dtype, device=t.device,
)
t = torch.cat([zeros, t], dim=1)
padded.append(t)
concatenated[key] = torch.cat(padded, dim=0)
return BatchFeature(concatenated)
__all__ = ["ColQwen35BidirectionProcessor"]
|