| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- # Copyright 2025 Meta AI and The HuggingFace Inc. team. All rights reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- """PyTorch Pixio model."""
- import torch
- from huggingface_hub.dataclasses import strict
- from torch import nn
- from ...modeling_layers import GradientCheckpointingLayer
- from ...modeling_outputs import BackboneOutput, BaseModelOutput, BaseModelOutputWithPooling
- from ...processing_utils import Unpack
- from ...utils import TransformersKwargs, auto_docstring, is_tracing
- from ...utils.generic import can_return_tuple, merge_with_config_defaults
- from ...utils.output_capturing import capture_outputs
- from ..dinov2.configuration_dinov2 import Dinov2Config
- from ..dinov2.modeling_dinov2 import (
- Dinov2Backbone,
- Dinov2DropPath,
- Dinov2MLP,
- )
- from ..vit.modeling_vit import ViTAttention, ViTPatchEmbeddings, ViTPreTrainedModel, ViTSelfAttention
- @auto_docstring(checkpoint="facebook/pixio-huge")
- @strict
- class PixioConfig(Dinov2Config):
- r"""
- apply_layernorm (`bool`, *optional*, defaults to `True`):
- Whether to apply layer normalization to the feature maps in case the model is used as backbone.
- reshape_hidden_states (`bool`, *optional*, defaults to `True`):
- Whether to reshape the feature maps to 4D tensors of shape `(batch_size, hidden_size, height, width)` in
- case the model is used as backbone. If `False`, the feature maps will be 3D tensors of shape `(batch_size,
- seq_len, hidden_size)`.
- n_cls_tokens (`int`, *optional*, defaults to 8):
- Number of class tokens in the Transformer encoder.
- Example:
- ```python
- >>> from transformers import PixioConfig, PixioModel
- >>> # Initializing a Pixio pixio-huge style configuration
- >>> configuration = PixioConfig()
- >>> # Initializing a model (with random weights) from the pixio-huge style configuration
- >>> model = PixioModel(configuration)
- >>> # Accessing the model configuration
- >>> configuration = model.config
- ```"""
- model_type = "pixio"
- hidden_size: int = 1280
- num_hidden_layers: int = 32
- num_attention_heads: int = 16
- n_cls_tokens: int = 8
- image_size: int | list[int] | tuple[int, int] = 256
- patch_size: int | list[int] | tuple[int, int] = 16
- layerscale_value = AttributeError()
- use_swiglu_ffn = AttributeError()
- use_mask_token = AttributeError()
- class PixioPatchEmbeddings(ViTPatchEmbeddings):
- pass
- class PixioEmbeddings(nn.Module):
- """
- Construct the CLS tokens, position and patch embeddings.
- """
- def __init__(self, config: PixioConfig) -> None:
- super().__init__()
- self.cls_token = nn.Parameter(torch.randn(1, config.n_cls_tokens, config.hidden_size))
- self.mask_token = None
- self.patch_embeddings = PixioPatchEmbeddings(config)
- num_patches = self.patch_embeddings.num_patches
- self.position_embeddings = nn.Parameter(torch.randn(1, num_patches + config.n_cls_tokens, config.hidden_size))
- self.dropout = nn.Dropout(config.hidden_dropout_prob)
- self.n_cls_tokens = config.n_cls_tokens
- self.patch_size = config.patch_size
- self.config = config
- def interpolate_pos_encoding(self, embeddings: torch.Tensor, height: int, width: int) -> torch.Tensor:
- """
- This method allows to interpolate the pre-trained position encodings, to be able to use the model on higher resolution
- images. This method is also adapted to support tracing and interpolation at torch.float32 precision.
- Adapted from:
- - https://github.com/facebookresearch/dino/blob/de9ee3df6cf39fac952ab558447af1fa1365362a/vision_transformer.py#L174-L194, and
- - https://github.com/facebookresearch/dinov2/blob/e1277af2ba9496fbadf7aec6eba56e8d882d1e35/dinov2/models/vision_transformer.py#L179-L211
- """
- num_patches = embeddings.shape[1] - self.n_cls_tokens
- num_positions = self.position_embeddings.shape[1] - self.n_cls_tokens
- if not is_tracing() and num_patches == num_positions and height == width:
- return self.position_embeddings
- class_pos_embed = self.position_embeddings[:, : self.n_cls_tokens]
- patch_pos_embed = self.position_embeddings[:, self.n_cls_tokens :]
- dim = embeddings.shape[-1]
- new_height = height // self.patch_size
- new_width = width // self.patch_size
- sqrt_num_positions = int(num_positions**0.5)
- patch_pos_embed = patch_pos_embed.reshape(1, sqrt_num_positions, sqrt_num_positions, dim)
- patch_pos_embed = patch_pos_embed.permute(0, 3, 1, 2)
- target_dtype = patch_pos_embed.dtype
- patch_pos_embed = nn.functional.interpolate(
- patch_pos_embed.to(torch.float32),
- size=(new_height, new_width),
- mode="bicubic",
- align_corners=False,
- ).to(dtype=target_dtype)
- patch_pos_embed = patch_pos_embed.permute(0, 2, 3, 1).view(1, -1, dim)
- return torch.cat((class_pos_embed, patch_pos_embed), dim=1)
- def forward(self, pixel_values: torch.Tensor) -> torch.Tensor:
- batch_size, _, height, width = pixel_values.shape
- target_dtype = self.patch_embeddings.projection.weight.dtype
- embeddings = self.patch_embeddings(pixel_values.to(dtype=target_dtype))
- cls_tokens = self.cls_token.expand(batch_size, -1, -1)
- embeddings = torch.cat((cls_tokens, embeddings), dim=1)
- embeddings = embeddings + self.interpolate_pos_encoding(embeddings, height, width)
- embeddings = self.dropout(embeddings)
- return embeddings
- class PixioSelfAttention(ViTSelfAttention):
- pass
- class PixioAttention(ViTAttention):
- def __init__(self, config: PixioConfig):
- super().__init__(config)
- self.attention = PixioSelfAttention(config)
- class PixioDropPath(Dinov2DropPath):
- pass
- class PixioMLP(Dinov2MLP):
- pass
- class PixioLayer(GradientCheckpointingLayer):
- def __init__(self, config: PixioConfig) -> None:
- super().__init__()
- self.norm1 = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
- self.attention = PixioAttention(config)
- self.drop_path = PixioDropPath(config.drop_path_rate) if config.drop_path_rate > 0.0 else nn.Identity()
- self.norm2 = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
- self.mlp = PixioMLP(config)
- def forward(self, hidden_states: torch.Tensor, **kwargs: Unpack[TransformersKwargs]) -> torch.Tensor:
- hidden_states_norm = self.norm1(hidden_states)
- self_attention_output = self.attention(hidden_states_norm, **kwargs)
- hidden_states = self.drop_path(self_attention_output) + hidden_states
- layer_output = self.norm2(hidden_states)
- layer_output = self.mlp(layer_output)
- layer_output = self.drop_path(layer_output) + hidden_states
- return layer_output
- class PixioPreTrainedModel(ViTPreTrainedModel):
- _can_record_outputs = {
- "hidden_states": PixioLayer,
- "attentions": PixioSelfAttention,
- }
- class PixioEncoder(PixioPreTrainedModel):
- def __init__(self, config: PixioConfig):
- super().__init__(config)
- self.layer = nn.ModuleList([PixioLayer(config) for _ in range(config.num_hidden_layers)])
- self.gradient_checkpointing = False
- self.post_init()
- @merge_with_config_defaults
- @capture_outputs(tie_last_hidden_states=False)
- def forward(self, hidden_states: torch.Tensor, **kwargs: Unpack[TransformersKwargs]) -> BaseModelOutput:
- for layer_module in self.layer:
- hidden_states = layer_module(hidden_states, **kwargs)
- return BaseModelOutput(last_hidden_state=hidden_states)
- @auto_docstring
- class PixioModel(PixioPreTrainedModel):
- def __init__(self, config: PixioConfig):
- super().__init__(config)
- self.config = config
- self.embeddings = PixioEmbeddings(config)
- self.encoder = PixioEncoder(config)
- self.layernorm = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
- self.post_init()
- def get_input_embeddings(self) -> PixioPatchEmbeddings:
- return self.embeddings.patch_embeddings
- @can_return_tuple
- @auto_docstring
- def forward(
- self,
- pixel_values: torch.Tensor | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> BaseModelOutputWithPooling:
- if pixel_values is None:
- raise ValueError("You have to specify pixel_values")
- embedding_output = self.embeddings(pixel_values)
- encoder_outputs: BaseModelOutput = self.encoder(embedding_output, **kwargs)
- sequence_output = encoder_outputs.last_hidden_state
- sequence_output = self.layernorm(sequence_output)
- pooled_output = sequence_output[:, : self.embeddings.n_cls_tokens, :].mean(dim=1)
- return BaseModelOutputWithPooling(
- last_hidden_state=sequence_output,
- pooler_output=pooled_output,
- hidden_states=encoder_outputs.hidden_states,
- attentions=encoder_outputs.attentions,
- )
- @auto_docstring(
- custom_intro="""
- Pixio backbone, to be used with frameworks like DETR and MaskFormer.
- """
- )
- class PixioBackbone(Dinov2Backbone):
- def forward(self, pixel_values: torch.Tensor, **kwargs: Unpack[TransformersKwargs]) -> BackboneOutput:
- r"""
- Examples:
- ```python
- >>> from transformers import AutoImageProcessor, AutoBackbone
- >>> import torch
- >>> from PIL import Image
- >>> import httpx
- >>> from io import BytesIO
- >>> url = "http://images.cocodataset.org/val2017/000000039769.jpg"
- >>> with httpx.stream("GET", url) as response:
- ... image = Image.open(BytesIO(response.read()))
- >>> processor = AutoImageProcessor.from_pretrained("facebook/pixio-huge")
- >>> model = AutoBackbone.from_pretrained(
- ... "facebook/pixio-huge", out_features=["stage7", "stage15", "stage23", "stage31"]
- ... )
- >>> inputs = processor(image, return_tensors="pt")
- >>> outputs = model(**inputs)
- >>> feature_maps = outputs.feature_maps
- >>> list(feature_maps[-1].shape)
- [1, 1280, 16, 16]
- ```"""
- kwargs["output_hidden_states"] = True # required to extract layers for the stages
- embedding_output = self.embeddings(pixel_values)
- output: BaseModelOutput = self.encoder(embedding_output, **kwargs)
- hidden_states = output.hidden_states
- feature_maps = []
- for stage, hidden_state in zip(self.stage_names, hidden_states):
- if stage in self.out_features:
- if self.config.apply_layernorm:
- hidden_state = self.layernorm(hidden_state)
- if self.config.reshape_hidden_states:
- hidden_state = hidden_state[:, self.embeddings.n_cls_tokens :]
- batch_size, _, height, width = pixel_values.shape
- patch_size = self.config.patch_size
- hidden_state = hidden_state.reshape(batch_size, height // patch_size, width // patch_size, -1)
- hidden_state = hidden_state.permute(0, 3, 1, 2).contiguous()
- feature_maps.append(hidden_state)
- return BackboneOutput(
- feature_maps=tuple(feature_maps),
- hidden_states=hidden_states,
- attentions=output.attentions,
- )
- __all__ = ["PixioConfig", "PixioModel", "PixioPreTrainedModel", "PixioBackbone"]
|