| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242 |
- # Copyright 2022 The OpenAI Team Authors and The HuggingFace 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 CLIPSeg model."""
- import copy
- import math
- from collections.abc import Callable
- from dataclasses import dataclass
- from typing import Any
- import torch
- from torch import nn
- from ... import initialization as init
- from ...activations import ACT2FN
- from ...masking_utils import create_causal_mask
- from ...modeling_layers import GradientCheckpointingLayer
- from ...modeling_outputs import BaseModelOutput, BaseModelOutputWithPooling
- from ...modeling_utils import ALL_ATTENTION_FUNCTIONS, PreTrainedModel
- from ...processing_utils import Unpack
- from ...utils import ModelOutput, TransformersKwargs, auto_docstring, logging, torch_int
- from ...utils.generic import can_return_tuple, merge_with_config_defaults
- from ...utils.output_capturing import capture_outputs
- from .configuration_clipseg import CLIPSegConfig, CLIPSegTextConfig, CLIPSegVisionConfig
- logger = logging.get_logger(__name__)
- # contrastive loss function, adapted from
- # https://sachinruk.github.io/blog/pytorch/pytorch%20lightning/loss%20function/gpu/2021/03/07/CLIP.html
- def contrastive_loss(logits: torch.Tensor) -> torch.Tensor:
- return nn.functional.cross_entropy(logits, torch.arange(len(logits), device=logits.device))
- # Copied from transformers.models.clip.modeling_clip.clip_loss with clip->clipseg
- def clipseg_loss(similarity: torch.Tensor) -> torch.Tensor:
- caption_loss = contrastive_loss(similarity)
- image_loss = contrastive_loss(similarity.t())
- return (caption_loss + image_loss) / 2.0
- @dataclass
- @auto_docstring
- # Copied from transformers.models.clip.modeling_clip.CLIPOutput with CLIP->CLIPSeg
- class CLIPSegOutput(ModelOutput):
- r"""
- loss (`torch.FloatTensor` of shape `(1,)`, *optional*, returned when `return_loss` is `True`):
- Contrastive loss for image-text similarity.
- logits_per_image (`torch.FloatTensor` of shape `(image_batch_size, text_batch_size)`):
- The scaled dot product scores between `image_embeds` and `text_embeds`. This represents the image-text
- similarity scores.
- logits_per_text (`torch.FloatTensor` of shape `(text_batch_size, image_batch_size)`):
- The scaled dot product scores between `text_embeds` and `image_embeds`. This represents the text-image
- similarity scores.
- text_embeds (`torch.FloatTensor` of shape `(batch_size, output_dim`):
- The text embeddings obtained by applying the projection layer to the pooled output of [`CLIPSegTextModel`].
- image_embeds (`torch.FloatTensor` of shape `(batch_size, output_dim`):
- The image embeddings obtained by applying the projection layer to the pooled output of [`CLIPSegVisionModel`].
- text_model_output (`BaseModelOutputWithPooling`):
- The output of the [`CLIPSegTextModel`].
- vision_model_output (`BaseModelOutputWithPooling`):
- The output of the [`CLIPSegVisionModel`].
- """
- loss: torch.FloatTensor | None = None
- logits_per_image: torch.FloatTensor | None = None
- logits_per_text: torch.FloatTensor | None = None
- text_embeds: torch.FloatTensor | None = None
- image_embeds: torch.FloatTensor | None = None
- text_model_output: BaseModelOutputWithPooling = None
- vision_model_output: BaseModelOutputWithPooling = None
- def to_tuple(self) -> tuple[Any]:
- return tuple(v.to_tuple() if isinstance(v, ModelOutput) else v for v in self.values())
- @dataclass
- @auto_docstring
- class CLIPSegDecoderOutput(ModelOutput):
- r"""
- logits (`torch.FloatTensor` of shape `(batch_size, height, width)`):
- Classification scores for each pixel.
- """
- logits: torch.FloatTensor | None = None
- hidden_states: tuple[torch.FloatTensor] | None = None
- attentions: tuple[torch.FloatTensor] | None = None
- @dataclass
- @auto_docstring
- class CLIPSegImageSegmentationOutput(ModelOutput):
- r"""
- loss (`torch.FloatTensor` of shape `(1,)`, *optional*, returned when `labels` is provided):
- Binary cross entropy loss for segmentation.
- logits (`torch.FloatTensor` of shape `(batch_size, height, width)`):
- Classification scores for each pixel.
- conditional_embeddings (`torch.FloatTensor` of shape `(batch_size, projection_dim)`):
- Conditional embeddings used for segmentation.
- pooled_output (`torch.FloatTensor` of shape `(batch_size, embed_dim)`):
- Pooled output of the [`CLIPSegVisionModel`].
- vision_model_output (`BaseModelOutputWithPooling`):
- The output of the [`CLIPSegVisionModel`].
- decoder_output (`CLIPSegDecoderOutput`):
- The output of the [`CLIPSegDecoder`].
- """
- loss: torch.FloatTensor | None = None
- logits: torch.FloatTensor | None = None
- conditional_embeddings: torch.FloatTensor | None = None
- pooled_output: torch.FloatTensor | None = None
- vision_model_output: BaseModelOutputWithPooling = None
- decoder_output: CLIPSegDecoderOutput = None
- def to_tuple(self) -> tuple[Any]:
- return tuple(v.to_tuple() if isinstance(v, ModelOutput) else v for v in self.values())
- class CLIPSegVisionEmbeddings(nn.Module):
- # Copied from transformers.models.clip.modeling_clip.CLIPVisionEmbeddings.__init__ with CLIP->CLIPSeg
- def __init__(self, config: CLIPSegVisionConfig):
- super().__init__()
- self.config = config
- self.embed_dim = config.hidden_size
- self.image_size = config.image_size
- self.patch_size = config.patch_size
- self.class_embedding = nn.Parameter(torch.randn(self.embed_dim))
- self.patch_embedding = nn.Conv2d(
- in_channels=config.num_channels,
- out_channels=self.embed_dim,
- kernel_size=self.patch_size,
- stride=self.patch_size,
- bias=False,
- )
- self.num_patches = (self.image_size // self.patch_size) ** 2
- self.num_positions = self.num_patches + 1
- self.position_embedding = nn.Embedding(self.num_positions, self.embed_dim)
- self.register_buffer("position_ids", torch.arange(self.num_positions).expand((1, -1)), persistent=False)
- 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 torch.jit tracing.
- 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] - 1
- position_embedding = self.position_embedding.weight.unsqueeze(0)
- num_positions = position_embedding.shape[1] - 1
- # always interpolate when tracing to ensure the exported model works for dynamic input shapes
- if not torch.jit.is_tracing() and num_patches == num_positions and height == width:
- return self.position_embedding(self.position_ids)
- class_pos_embed = position_embedding[:, :1]
- patch_pos_embed = position_embedding[:, 1:]
- dim = embeddings.shape[-1]
- new_height = height // self.patch_size
- new_width = width // self.patch_size
- sqrt_num_positions = torch_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)
- patch_pos_embed = nn.functional.interpolate(
- patch_pos_embed,
- size=(new_height, new_width),
- mode="bicubic",
- align_corners=False,
- )
- 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.FloatTensor, interpolate_pos_encoding=True) -> torch.Tensor:
- batch_size, _, height, width = pixel_values.shape
- if not interpolate_pos_encoding and (height != self.image_size or width != self.image_size):
- raise ValueError(
- f"Input image size ({height}*{width}) doesn't match model ({self.image_size}*{self.image_size})."
- )
- patch_embeds = self.patch_embedding(pixel_values) # shape = [*, width, grid, grid]
- patch_embeds = patch_embeds.flatten(2).transpose(1, 2)
- class_embeds = self.class_embedding.expand(batch_size, 1, -1)
- embeddings = torch.cat([class_embeds, patch_embeds], dim=1)
- if interpolate_pos_encoding:
- embeddings = embeddings + self.interpolate_pos_encoding(embeddings, height, width)
- else:
- embeddings = embeddings + self.position_embedding(self.position_ids)
- return embeddings
- # Copied from transformers.models.clip.modeling_clip.CLIPTextEmbeddings with CLIP->CLIPSeg
- class CLIPSegTextEmbeddings(nn.Module):
- def __init__(self, config: CLIPSegTextConfig):
- super().__init__()
- embed_dim = config.hidden_size
- self.token_embedding = nn.Embedding(config.vocab_size, embed_dim)
- self.position_embedding = nn.Embedding(config.max_position_embeddings, embed_dim)
- # position_ids (1, len position emb) is contiguous in memory and exported when serialized
- self.register_buffer(
- "position_ids", torch.arange(config.max_position_embeddings).expand((1, -1)), persistent=False
- )
- def forward(
- self,
- input_ids: torch.LongTensor | None = None,
- position_ids: torch.LongTensor | None = None,
- inputs_embeds: torch.FloatTensor | None = None,
- ) -> torch.Tensor:
- seq_length = input_ids.shape[-1] if input_ids is not None else inputs_embeds.shape[-2]
- max_position_embedding = self.position_embedding.weight.shape[0]
- if seq_length > max_position_embedding:
- raise ValueError(
- f"Sequence length must be less than max_position_embeddings (got `sequence length`: "
- f"{seq_length} and max_position_embeddings: {max_position_embedding}"
- )
- if position_ids is None:
- position_ids = self.position_ids[:, :seq_length]
- if inputs_embeds is None:
- inputs_embeds = self.token_embedding(input_ids)
- position_embeddings = self.position_embedding(position_ids)
- embeddings = inputs_embeds + position_embeddings
- return embeddings
- # Copied from transformers.models.siglip.modeling_siglip.eager_attention_forward
- def eager_attention_forward(
- module: nn.Module,
- query: torch.Tensor,
- key: torch.Tensor,
- value: torch.Tensor,
- attention_mask: torch.Tensor | None,
- scaling: float,
- dropout: float = 0.0,
- **kwargs,
- ):
- attn_weights = torch.matmul(query, key.transpose(-1, -2)) * scaling
- if attention_mask is not None:
- attn_weights = attn_weights + attention_mask
- attn_weights = nn.functional.softmax(attn_weights, dim=-1, dtype=torch.float32).to(query.dtype)
- attn_weights = nn.functional.dropout(attn_weights, p=dropout, training=module.training)
- attn_output = torch.matmul(attn_weights, value)
- attn_output = attn_output.transpose(1, 2).contiguous()
- return attn_output, attn_weights
- class CLIPSegAttention(nn.Module):
- """Multi-headed attention from 'Attention Is All You Need' paper"""
- def __init__(self, config: CLIPSegVisionConfig | CLIPSegTextConfig):
- super().__init__()
- self.config = config
- self.embed_dim = config.hidden_size
- self.num_heads = config.num_attention_heads
- self.head_dim = self.embed_dim // self.num_heads
- if self.head_dim * self.num_heads != self.embed_dim:
- raise ValueError(
- f"embed_dim must be divisible by num_heads (got `embed_dim`: {self.embed_dim} and `num_heads`:"
- f" {self.num_heads})."
- )
- self.scale = self.head_dim**-0.5
- self.dropout = config.attention_dropout
- self.is_causal = False
- self.k_proj = nn.Linear(self.embed_dim, self.embed_dim)
- self.v_proj = nn.Linear(self.embed_dim, self.embed_dim)
- self.q_proj = nn.Linear(self.embed_dim, self.embed_dim)
- self.out_proj = nn.Linear(self.embed_dim, self.embed_dim)
- def forward(
- self,
- hidden_states: torch.Tensor,
- attention_mask: torch.Tensor | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple[torch.Tensor, torch.Tensor | None]:
- """Input shape: Batch x Time x Channel"""
- input_shape = hidden_states.shape[:-1]
- hidden_shape = (*input_shape, -1, self.head_dim)
- queries = self.q_proj(hidden_states)
- keys = self.k_proj(hidden_states)
- values = self.v_proj(hidden_states)
- queries = queries.view(hidden_shape).transpose(1, 2)
- keys = keys.view(hidden_shape).transpose(1, 2)
- values = values.view(hidden_shape).transpose(1, 2)
- attention_interface: Callable = ALL_ATTENTION_FUNCTIONS.get_interface(
- self.config._attn_implementation, eager_attention_forward
- )
- attn_output, attn_weights = attention_interface(
- self,
- queries,
- keys,
- values,
- attention_mask,
- scaling=self.scale,
- dropout=0.0 if not self.training else self.dropout,
- **kwargs,
- )
- attn_output = attn_output.reshape(*input_shape, -1).contiguous()
- attn_output = self.out_proj(attn_output)
- return attn_output, attn_weights
- # Copied from transformers.models.clip.modeling_clip.CLIPMLP with CLIP->CLIPSeg
- class CLIPSegMLP(nn.Module):
- def __init__(self, config):
- super().__init__()
- self.config = config
- self.activation_fn = ACT2FN[config.hidden_act]
- self.fc1 = nn.Linear(config.hidden_size, config.intermediate_size)
- self.fc2 = nn.Linear(config.intermediate_size, config.hidden_size)
- def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
- hidden_states = self.fc1(hidden_states)
- hidden_states = self.activation_fn(hidden_states)
- hidden_states = self.fc2(hidden_states)
- return hidden_states
- # Copied from transformers.models.altclip.modeling_altclip.AltCLIPEncoderLayer with AltCLIP->CLIPSeg
- class CLIPSegEncoderLayer(GradientCheckpointingLayer):
- def __init__(self, config: CLIPSegConfig):
- super().__init__()
- self.embed_dim = config.hidden_size
- self.self_attn = CLIPSegAttention(config)
- self.layer_norm1 = nn.LayerNorm(self.embed_dim, eps=config.layer_norm_eps)
- self.mlp = CLIPSegMLP(config)
- self.layer_norm2 = nn.LayerNorm(self.embed_dim, eps=config.layer_norm_eps)
- def forward(
- self,
- hidden_states: torch.Tensor,
- attention_mask: torch.Tensor,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple[torch.FloatTensor, torch.Tensor | None]:
- residual = hidden_states
- hidden_states = self.layer_norm1(hidden_states)
- hidden_states, _ = self.self_attn(
- hidden_states=hidden_states,
- attention_mask=attention_mask,
- **kwargs,
- )
- hidden_states = residual + hidden_states
- residual = hidden_states
- hidden_states = self.layer_norm2(hidden_states)
- hidden_states = self.mlp(hidden_states)
- hidden_states = residual + hidden_states
- return hidden_states
- class CLIPSegDecoderLayer(nn.Module):
- """
- CLIPSeg decoder layer, which is identical to `CLIPSegEncoderLayer`, except that normalization is applied after
- self-attention/MLP, rather than before.
- """
- # Copied from transformers.models.altclip.modeling_altclip.AltCLIPEncoderLayer.__init__ with AltCLIP->CLIPSeg
- def __init__(self, config: CLIPSegConfig):
- super().__init__()
- self.embed_dim = config.hidden_size
- self.self_attn = CLIPSegAttention(config)
- self.layer_norm1 = nn.LayerNorm(self.embed_dim, eps=config.layer_norm_eps)
- self.mlp = CLIPSegMLP(config)
- self.layer_norm2 = nn.LayerNorm(self.embed_dim, eps=config.layer_norm_eps)
- def forward(
- self,
- hidden_states: torch.Tensor,
- attention_mask: torch.Tensor,
- **kwargs,
- ) -> tuple[torch.FloatTensor]:
- """
- Args:
- hidden_states (`torch.FloatTensor`): input to the layer of shape `(batch, seq_len, embed_dim)`
- attention_mask (`torch.FloatTensor`): attention mask of size
- `(batch, 1, tgt_len, src_len)` where padding elements are indicated by very large negative values.
- `(config.encoder_attention_heads,)`.
- output_attentions (`bool`, *optional*):
- Whether or not to return the attentions tensors of all attention layers. See `attentions` under
- returned tensors for more detail.
- """
- residual = hidden_states
- hidden_states, _ = self.self_attn(
- hidden_states=hidden_states,
- attention_mask=attention_mask,
- **kwargs,
- )
- hidden_states = residual + hidden_states
- hidden_states = self.layer_norm1(hidden_states)
- residual = hidden_states
- hidden_states = self.mlp(hidden_states)
- hidden_states = residual + hidden_states
- hidden_states = self.layer_norm2(hidden_states)
- return hidden_states
- @auto_docstring
- class CLIPSegPreTrainedModel(PreTrainedModel):
- config: CLIPSegConfig
- base_model_prefix = "clip"
- input_modalities = ("image", "text")
- supports_gradient_checkpointing = True
- _can_record_outputs = {
- "hidden_states": [CLIPSegEncoderLayer, CLIPSegDecoderLayer],
- "attentions": CLIPSegAttention,
- }
- @torch.no_grad()
- def _init_weights(self, module):
- """Initialize the weights"""
- factor = self.config.initializer_factor
- if isinstance(module, CLIPSegTextEmbeddings):
- init.normal_(module.token_embedding.weight, mean=0.0, std=factor * 0.02)
- init.normal_(module.position_embedding.weight, mean=0.0, std=factor * 0.02)
- init.copy_(module.position_ids, torch.arange(module.position_ids.shape[-1]).expand((1, -1)))
- elif isinstance(module, CLIPSegVisionEmbeddings):
- factor = self.config.initializer_factor
- init.normal_(module.class_embedding, mean=0.0, std=module.embed_dim**-0.5 * factor)
- init.normal_(module.patch_embedding.weight, std=module.config.initializer_range * factor)
- init.normal_(module.position_embedding.weight, std=module.config.initializer_range * factor)
- init.copy_(module.position_ids, torch.arange(module.num_positions).expand((1, -1)))
- elif isinstance(module, CLIPSegAttention):
- factor = self.config.initializer_factor
- in_proj_std = (module.embed_dim**-0.5) * ((2 * module.config.num_hidden_layers) ** -0.5) * factor
- out_proj_std = (module.embed_dim**-0.5) * factor
- init.normal_(module.q_proj.weight, std=in_proj_std)
- init.normal_(module.k_proj.weight, std=in_proj_std)
- init.normal_(module.v_proj.weight, std=in_proj_std)
- init.normal_(module.out_proj.weight, std=out_proj_std)
- elif isinstance(module, CLIPSegMLP):
- factor = self.config.initializer_factor
- in_proj_std = (module.config.hidden_size**-0.5) * ((2 * module.config.num_hidden_layers) ** -0.5) * factor
- fc_std = (2 * module.config.hidden_size) ** -0.5 * factor
- init.normal_(module.fc1.weight, std=fc_std)
- init.normal_(module.fc2.weight, std=in_proj_std)
- elif isinstance(module, CLIPSegModel):
- init.normal_(
- module.text_projection.weight,
- std=module.text_embed_dim**-0.5 * self.config.initializer_factor,
- )
- init.normal_(
- module.visual_projection.weight,
- std=module.vision_embed_dim**-0.5 * self.config.initializer_factor,
- )
- if isinstance(module, nn.LayerNorm):
- init.zeros_(module.bias)
- init.ones_(module.weight)
- if isinstance(module, nn.Linear) and module.bias is not None:
- init.zeros_(module.bias)
- # Copied from transformers.models.altclip.modeling_altclip.AltCLIPEncoder with AltCLIP->CLIPSeg
- class CLIPSegEncoder(nn.Module):
- """
- Transformer encoder consisting of `config.num_hidden_layers` self attention layers. Each layer is a
- [`CLIPSegEncoderLayer`].
- Args:
- config: CLIPSegConfig
- """
- def __init__(self, config: CLIPSegConfig):
- super().__init__()
- self.config = config
- self.layers = nn.ModuleList([CLIPSegEncoderLayer(config) for _ in range(config.num_hidden_layers)])
- self.gradient_checkpointing = False
- def forward(
- self,
- inputs_embeds,
- attention_mask: torch.Tensor | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple | BaseModelOutput:
- r"""
- Args:
- inputs_embeds (`torch.FloatTensor` of shape `(batch_size, sequence_length, hidden_size)`):
- Optionally, instead of passing `input_ids` you can choose to directly pass an embedded representation.
- This is useful if you want more control over how to convert `input_ids` indices into associated vectors
- than the model's internal embedding lookup matrix.
- attention_mask (`torch.Tensor` of shape `(batch_size, sequence_length)`, *optional*):
- Mask to avoid performing attention on padding token indices. Mask values selected in `[0, 1]`:
- - 1 for tokens that are **not masked**,
- - 0 for tokens that are **masked**.
- [What are attention masks?](../glossary#attention-mask)
- """
- hidden_states = inputs_embeds
- for encoder_layer in self.layers:
- hidden_states = encoder_layer(
- hidden_states,
- attention_mask,
- **kwargs,
- )
- return BaseModelOutput(
- last_hidden_state=hidden_states,
- )
- class CLIPSegDecoder(CLIPSegPreTrainedModel):
- def __init__(self, config: CLIPSegConfig):
- super().__init__(config)
- self.conditional_layer = config.conditional_layer
- self.film_mul = nn.Linear(config.projection_dim, config.reduce_dim)
- self.film_add = nn.Linear(config.projection_dim, config.reduce_dim)
- if config.use_complex_transposed_convolution:
- transposed_kernels = (config.vision_config.patch_size // 4, config.vision_config.patch_size // 4)
- self.transposed_convolution = nn.Sequential(
- nn.Conv2d(config.reduce_dim, config.reduce_dim, kernel_size=3, padding=1),
- nn.ReLU(),
- nn.ConvTranspose2d(
- config.reduce_dim,
- config.reduce_dim // 2,
- kernel_size=transposed_kernels[0],
- stride=transposed_kernels[0],
- ),
- nn.ReLU(),
- nn.ConvTranspose2d(
- config.reduce_dim // 2, 1, kernel_size=transposed_kernels[1], stride=transposed_kernels[1]
- ),
- )
- else:
- self.transposed_convolution = nn.ConvTranspose2d(
- config.reduce_dim, 1, config.vision_config.patch_size, stride=config.vision_config.patch_size
- )
- depth = len(config.extract_layers)
- self.reduces = nn.ModuleList(
- [nn.Linear(config.vision_config.hidden_size, config.reduce_dim) for _ in range(depth)]
- )
- decoder_config = copy.deepcopy(config.vision_config)
- decoder_config.hidden_size = config.reduce_dim
- decoder_config.num_attention_heads = config.decoder_num_attention_heads
- decoder_config.intermediate_size = config.decoder_intermediate_size
- decoder_config.hidden_act = "relu"
- self.layers = nn.ModuleList([CLIPSegDecoderLayer(decoder_config) for _ in range(len(config.extract_layers))])
- self.post_init()
- @merge_with_config_defaults
- @capture_outputs
- def forward(
- self,
- hidden_states: tuple[torch.Tensor],
- conditional_embeddings: torch.Tensor,
- output_attentions: bool | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ):
- activations = hidden_states[::-1]
- output = None
- for i, (activation, layer, reduce) in enumerate(zip(activations, self.layers, self.reduces)):
- if output is not None:
- output = reduce(activation) + output
- else:
- output = reduce(activation)
- if i == self.conditional_layer:
- output = self.film_mul(conditional_embeddings) * output.permute(1, 0, 2) + self.film_add(
- conditional_embeddings
- )
- output = output.permute(1, 0, 2)
- output = layer(output, attention_mask=None, causal_attention_mask=None, **kwargs)
- output = output[:, 1:, :].permute(0, 2, 1) # remove cls token and reshape to [batch_size, reduce_dim, seq_len]
- size = int(math.sqrt(output.shape[2]))
- batch_size = conditional_embeddings.shape[0]
- output = output.view(batch_size, output.shape[1], size, size)
- logits = self.transposed_convolution(output).squeeze(1)
- return CLIPSegDecoderOutput(logits=logits)
- class CLIPSegTextTransformer(CLIPSegPreTrainedModel):
- def __init__(self, config: CLIPSegTextConfig):
- super().__init__(config)
- embed_dim = config.hidden_size
- self.embeddings = CLIPSegTextEmbeddings(config)
- self.encoder = CLIPSegEncoder(config)
- self.final_layer_norm = nn.LayerNorm(embed_dim, eps=config.layer_norm_eps)
- # For `pooled_output` computation
- self.eos_token_id = config.eos_token_id
- self.post_init()
- @auto_docstring
- def forward(
- self,
- input_ids: torch.Tensor | None = None,
- attention_mask: torch.Tensor | None = None,
- position_ids: torch.Tensor | None = None,
- output_attentions: bool | None = None,
- output_hidden_states: bool | None = None,
- return_dict: bool | None = None,
- **kwargs,
- ) -> tuple | BaseModelOutputWithPooling:
- output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
- output_hidden_states = (
- output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
- )
- return_dict = return_dict if return_dict is not None else self.config.return_dict
- if input_ids is None:
- raise ValueError("You have to specify input_ids")
- input_shape = input_ids.size()
- input_ids = input_ids.view(-1, input_shape[-1])
- hidden_states = self.embeddings(input_ids=input_ids, position_ids=position_ids)
- attention_mask = create_causal_mask(
- config=self.config,
- inputs_embeds=hidden_states,
- attention_mask=attention_mask,
- past_key_values=None,
- )
- kwargs.pop("is_causal", None)
- encoder_outputs = self.encoder(
- inputs_embeds=hidden_states,
- attention_mask=attention_mask,
- output_attentions=output_attentions,
- output_hidden_states=output_hidden_states,
- return_dict=return_dict,
- is_causal=True,
- **kwargs,
- )
- last_hidden_state = encoder_outputs[0]
- last_hidden_state = self.final_layer_norm(last_hidden_state)
- if self.eos_token_id == 2:
- # The `eos_token_id` was incorrect before PR #24773: Let's keep what have been done here.
- # A CLIPSeg model with such `eos_token_id` in the config can't work correctly with extra new tokens added
- # ------------------------------------------------------------
- # text_embeds.shape = [batch_size, sequence_length, transformer.width]
- # take features from the eot embedding (eot_token is the highest number in each sequence)
- # casting to torch.int for onnx compatibility: argmax doesn't support int64 inputs with opset 14
- pooled_output = last_hidden_state[
- torch.arange(last_hidden_state.shape[0], device=last_hidden_state.device),
- input_ids.to(dtype=torch.int, device=last_hidden_state.device).argmax(dim=-1),
- ]
- else:
- # The config gets updated `eos_token_id` from PR #24773 (so the use of extra new tokens is possible)
- pooled_output = last_hidden_state[
- torch.arange(last_hidden_state.shape[0], device=last_hidden_state.device),
- # We need to get the first position of `eos_token_id` value (`pad_token_ids` might equal to `eos_token_id`)
- # Note: we assume each sequence (along batch dim.) contains an `eos_token_id` (e.g. prepared by the tokenizer)
- (input_ids.to(dtype=torch.int, device=last_hidden_state.device) == self.eos_token_id)
- .int()
- .argmax(dim=-1),
- ]
- if not return_dict:
- return (last_hidden_state, pooled_output) + encoder_outputs[1:]
- return BaseModelOutputWithPooling(
- last_hidden_state=last_hidden_state,
- pooler_output=pooled_output,
- hidden_states=encoder_outputs.hidden_states,
- attentions=encoder_outputs.attentions,
- )
- class CLIPSegTextModel(CLIPSegPreTrainedModel):
- config: CLIPSegTextConfig
- input_modalities = ("text",)
- _no_split_modules = ["CLIPSegTextEmbeddings", "CLIPSegEncoderLayer"]
- def __init__(self, config: CLIPSegTextConfig):
- super().__init__(config)
- self.text_model = CLIPSegTextTransformer(config)
- # Initialize weights and apply final processing
- self.post_init()
- def get_input_embeddings(self) -> nn.Module:
- return self.text_model.embeddings.token_embedding
- def set_input_embeddings(self, value):
- self.text_model.embeddings.token_embedding = value
- @merge_with_config_defaults
- @capture_outputs
- @auto_docstring
- def forward(
- self,
- input_ids: torch.Tensor | None = None,
- attention_mask: torch.Tensor | None = None,
- position_ids: torch.Tensor | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple | BaseModelOutputWithPooling:
- r"""
- Examples:
- ```python
- >>> from transformers import AutoTokenizer, CLIPSegTextModel
- >>> tokenizer = AutoTokenizer.from_pretrained("CIDAS/clipseg-rd64-refined")
- >>> model = CLIPSegTextModel.from_pretrained("CIDAS/clipseg-rd64-refined")
- >>> inputs = tokenizer(["a photo of a cat", "a photo of a dog"], padding=True, return_tensors="pt")
- >>> outputs = model(**inputs)
- >>> last_hidden_state = outputs.last_hidden_state
- >>> pooled_output = outputs.pooler_output # pooled (EOS token) states
- ```"""
- return self.text_model(
- input_ids=input_ids,
- attention_mask=attention_mask,
- position_ids=position_ids,
- return_dict=True,
- **kwargs,
- )
- class CLIPSegVisionTransformer(nn.Module):
- # Copied from transformers.models.altclip.modeling_altclip.AltCLIPVisionTransformer.__init__ with AltCLIP->CLIPSeg
- def __init__(self, config: CLIPSegVisionConfig):
- super().__init__()
- self.config = config
- embed_dim = config.hidden_size
- self.embeddings = CLIPSegVisionEmbeddings(config)
- self.pre_layrnorm = nn.LayerNorm(embed_dim, eps=config.layer_norm_eps)
- self.encoder = CLIPSegEncoder(config)
- self.post_layernorm = nn.LayerNorm(embed_dim, eps=config.layer_norm_eps)
- @auto_docstring
- def forward(
- self,
- pixel_values: torch.FloatTensor | None,
- output_attentions: bool | None = None,
- output_hidden_states: bool | None = None,
- return_dict: bool | None = None,
- interpolate_pos_encoding: bool | None = True,
- ) -> tuple | BaseModelOutputWithPooling:
- output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
- output_hidden_states = (
- output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
- )
- return_dict = return_dict if return_dict is not None else self.config.return_dict
- hidden_states = self.embeddings(pixel_values, interpolate_pos_encoding=interpolate_pos_encoding)
- hidden_states = self.pre_layrnorm(hidden_states)
- encoder_outputs = self.encoder(
- inputs_embeds=hidden_states,
- output_attentions=output_attentions,
- output_hidden_states=output_hidden_states,
- return_dict=return_dict,
- )
- last_hidden_state = encoder_outputs[0]
- pooled_output = last_hidden_state[:, 0, :]
- pooled_output = self.post_layernorm(pooled_output)
- if not return_dict:
- return (last_hidden_state, pooled_output) + encoder_outputs[1:]
- return BaseModelOutputWithPooling(
- last_hidden_state=last_hidden_state,
- pooler_output=pooled_output,
- hidden_states=encoder_outputs.hidden_states,
- attentions=encoder_outputs.attentions,
- )
- class CLIPSegVisionModel(CLIPSegPreTrainedModel):
- config: CLIPSegVisionConfig
- main_input_name = "pixel_values"
- input_modalities = ("image",)
- def __init__(self, config: CLIPSegVisionConfig):
- super().__init__(config)
- self.vision_model = CLIPSegVisionTransformer(config)
- # Initialize weights and apply final processing
- self.post_init()
- def get_input_embeddings(self) -> nn.Module:
- return self.vision_model.embeddings.patch_embedding
- @merge_with_config_defaults
- @capture_outputs(tie_last_hidden_states=False)
- @auto_docstring
- def forward(
- self,
- pixel_values: torch.FloatTensor | None = None,
- interpolate_pos_encoding: bool | None = True,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple | BaseModelOutputWithPooling:
- r"""
- Examples:
- ```python
- >>> from PIL import Image
- >>> import httpx
- >>> from io import BytesIO
- >>> from transformers import AutoProcessor, CLIPSegVisionModel
- >>> processor = AutoProcessor.from_pretrained("CIDAS/clipseg-rd64-refined")
- >>> model = CLIPSegVisionModel.from_pretrained("CIDAS/clipseg-rd64-refined")
- >>> url = "http://images.cocodataset.org/val2017/000000039769.jpg"
- >>> with httpx.stream("GET", url) as response:
- ... image = Image.open(BytesIO(response.read()))
- >>> inputs = processor(images=image, return_tensors="pt")
- >>> outputs = model(**inputs)
- >>> last_hidden_state = outputs.last_hidden_state
- >>> pooled_output = outputs.pooler_output # pooled CLS states
- ```"""
- return self.vision_model(
- pixel_values=pixel_values,
- interpolate_pos_encoding=interpolate_pos_encoding,
- **kwargs,
- )
- @auto_docstring
- class CLIPSegModel(CLIPSegPreTrainedModel):
- config: CLIPSegConfig
- def __init__(self, config: CLIPSegConfig):
- super().__init__(config)
- if not isinstance(config.text_config, CLIPSegTextConfig):
- raise TypeError(
- "config.text_config is expected to be of type CLIPSegTextConfig but is of type"
- f" {type(config.text_config)}."
- )
- if not isinstance(config.vision_config, CLIPSegVisionConfig):
- raise TypeError(
- "config.vision_config is expected to be of type CLIPSegVisionConfig but is of type"
- f" {type(config.vision_config)}."
- )
- text_config = config.text_config
- vision_config = config.vision_config
- # The module using it is not a PreTrainedModel subclass so we need this
- text_config._attn_implementation = config._attn_implementation
- # The module using it is not a PreTrainedModel subclass so we need this
- vision_config._attn_implementation = config._attn_implementation
- self.projection_dim = config.projection_dim
- self.text_embed_dim = text_config.hidden_size
- self.vision_embed_dim = vision_config.hidden_size
- self.text_model = CLIPSegTextTransformer(text_config)
- self.vision_model = CLIPSegVisionTransformer(vision_config)
- self.visual_projection = nn.Linear(self.vision_embed_dim, self.projection_dim, bias=False)
- self.text_projection = nn.Linear(self.text_embed_dim, self.projection_dim, bias=False)
- self.logit_scale = nn.Parameter(torch.tensor(self.config.logit_scale_init_value))
- # Initialize weights and apply final processing
- self.post_init()
- @merge_with_config_defaults
- @capture_outputs
- @auto_docstring
- def get_text_features(
- self,
- input_ids: torch.Tensor,
- attention_mask: torch.Tensor | None = None,
- position_ids: torch.Tensor | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple | BaseModelOutputWithPooling:
- r"""
- Examples:
- ```python
- >>> import torch
- >>> from transformers import AutoTokenizer, CLIPSegModel
- >>> tokenizer = AutoTokenizer.from_pretrained("CIDAS/clipseg-rd64-refined")
- >>> model = CLIPSegModel.from_pretrained("CIDAS/clipseg-rd64-refined")
- >>> inputs = tokenizer(["a photo of a cat", "a photo of a dog"], padding=True, return_tensors="pt")
- >>> with torch.inference_mode():
- ... text_features = model.get_text_features(**inputs)
- ```"""
- text_outputs: BaseModelOutputWithPooling = self.text_model(
- input_ids=input_ids,
- attention_mask=attention_mask,
- position_ids=position_ids,
- **kwargs,
- )
- pooled_output = text_outputs.pooler_output
- text_outputs.pooler_output = self.text_projection(pooled_output)
- return text_outputs
- @merge_with_config_defaults
- @capture_outputs(tie_last_hidden_states=False)
- @auto_docstring
- def get_image_features(
- self,
- pixel_values: torch.FloatTensor,
- interpolate_pos_encoding: bool = True,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple | BaseModelOutputWithPooling:
- r"""
- Examples:
- ```python
- >>> import torch
- >>> from transformers import AutoProcessor, CLIPSegModel
- >>> from transformers.image_utils import load_image
- >>> processor = AutoProcessor.from_pretrained("CIDAS/clipseg-rd64-refined")
- >>> model = CLIPSegModel.from_pretrained("CIDAS/clipseg-rd64-refined")
- >>> url = "http://images.cocodataset.org/val2017/000000039769.jpg"
- >>> image = load_image(url)
- >>> inputs = processor(images=image, return_tensors="pt")
- >>> with torch.inference_mode():
- ... image_features = model.get_image_features(**inputs)
- ```"""
- vision_outputs: BaseModelOutputWithPooling = self.vision_model(
- pixel_values=pixel_values,
- interpolate_pos_encoding=interpolate_pos_encoding,
- **kwargs,
- )
- pooled_output = vision_outputs.pooler_output
- vision_outputs.pooler_output = self.visual_projection(pooled_output)
- return vision_outputs
- @can_return_tuple
- @auto_docstring
- def forward(
- self,
- input_ids: torch.LongTensor | None = None,
- pixel_values: torch.FloatTensor | None = None,
- attention_mask: torch.Tensor | None = None,
- position_ids: torch.LongTensor | None = None,
- return_loss: bool | None = None,
- interpolate_pos_encoding: bool = True,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple | CLIPSegOutput:
- r"""
- return_loss (`bool`, *optional*):
- Whether or not to return the contrastive loss.
- Examples:
- ```python
- >>> import torch
- >>> from transformers import AutoProcessor, CLIPSegModel
- >>> from transformers.image_utils import load_image
- >>> processor = AutoProcessor.from_pretrained("CIDAS/clipseg-rd64-refined")
- >>> model = CLIPSegModel.from_pretrained("CIDAS/clipseg-rd64-refined")
- >>> url = "http://images.cocodataset.org/val2017/000000039769.jpg"
- >>> image = load_image(url)
- >>> inputs = processor(
- ... text=["a photo of a cat", "a photo of a dog"], images=image, return_tensors="pt", padding=True
- ... )
- >>> with torch.inference_mode():
- ... outputs = model(**inputs)
- >>> logits_per_image = outputs.logits_per_image # this is the image-text similarity score
- >>> probs = logits_per_image.softmax(dim=1) # we can take the softmax to get the label probabilities
- ```"""
- vision_outputs = self.get_image_features(
- pixel_values=pixel_values,
- interpolate_pos_encoding=interpolate_pos_encoding,
- **kwargs,
- )
- text_outputs = self.get_text_features(
- input_ids=input_ids,
- attention_mask=attention_mask,
- position_ids=position_ids,
- **kwargs,
- )
- image_embeds = vision_outputs.pooler_output
- text_embeds = text_outputs.pooler_output
- # normalized features
- image_embeds = image_embeds / image_embeds.norm(p=2, dim=-1, keepdim=True)
- text_embeds = text_embeds / text_embeds.norm(p=2, dim=-1, keepdim=True)
- # cosine similarity as logits
- logit_scale = self.logit_scale.exp()
- logits_per_text = torch.matmul(text_embeds, image_embeds.t()) * logit_scale
- logits_per_image = logits_per_text.t()
- loss = None
- if return_loss:
- loss = clipseg_loss(logits_per_text)
- return CLIPSegOutput(
- loss=loss,
- logits_per_image=logits_per_image,
- logits_per_text=logits_per_text,
- text_embeds=text_embeds,
- image_embeds=image_embeds,
- text_model_output=text_outputs,
- vision_model_output=vision_outputs,
- )
- @auto_docstring(
- custom_intro="""
- CLIPSeg model with a Transformer-based decoder on top for zero-shot and one-shot image segmentation.
- """
- )
- class CLIPSegForImageSegmentation(CLIPSegPreTrainedModel):
- config: CLIPSegConfig
- def __init__(self, config: CLIPSegConfig):
- super().__init__(config)
- self.config = config
- self.clip = CLIPSegModel(config)
- self.extract_layers = config.extract_layers
- self.decoder = CLIPSegDecoder(config)
- # Initialize weights and apply final processing
- self.post_init()
- def get_conditional_embeddings(
- self,
- batch_size: int | None = None,
- input_ids: torch.Tensor | None = None,
- attention_mask: torch.Tensor | None = None,
- position_ids: torch.Tensor | None = None,
- conditional_pixel_values: torch.Tensor | None = None,
- ):
- if input_ids is not None:
- # compute conditional embeddings from texts
- if len(input_ids) != batch_size:
- raise ValueError("Make sure to pass as many prompt texts as there are query images")
- with torch.no_grad():
- conditional_embeddings = self.clip.get_text_features(
- input_ids, attention_mask=attention_mask, position_ids=position_ids
- ).pooler_output
- elif conditional_pixel_values is not None:
- # compute conditional embeddings from images
- if len(conditional_pixel_values) != batch_size:
- raise ValueError("Make sure to pass as many prompt images as there are query images")
- with torch.no_grad():
- conditional_embeddings = self.clip.get_image_features(conditional_pixel_values).pooler_output
- else:
- raise ValueError(
- "Invalid conditional, should be either provided as `input_ids` or `conditional_pixel_values`"
- )
- return conditional_embeddings
- @can_return_tuple
- @auto_docstring
- def forward(
- self,
- input_ids: torch.FloatTensor | None = None,
- pixel_values: torch.FloatTensor | None = None,
- conditional_pixel_values: torch.FloatTensor | None = None,
- conditional_embeddings: torch.FloatTensor | None = None,
- attention_mask: torch.Tensor | None = None,
- position_ids: torch.LongTensor | None = None,
- labels: torch.LongTensor | None = None,
- interpolate_pos_encoding: bool = True,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple | CLIPSegOutput:
- r"""
- conditional_pixel_values (`torch.FloatTensor`, *optional*):
- The pixel values of the conditional images.
- conditional_embeddings (`torch.FloatTensor` of shape `(batch_size, config.projection_dim)`, *optional*):
- The conditional embeddings for the query images. If provided, the model will use this instead of computing
- the embeddings from the conditional_pixel_values.
- labels (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
- Labels for computing the sequence classification/regression loss. Indices should be in `[0, ...,
- config.num_labels - 1]`. If `config.num_labels == 1` a regression loss is computed (Mean-Square loss), If
- `config.num_labels > 1` a classification loss is computed (Cross-Entropy).
- Examples:
- ```python
- >>> import torch
- >>> from transformers import AutoProcessor, CLIPSegForImageSegmentation
- >>> from transformers.image_utils import load_image
- >>> processor = AutoProcessor.from_pretrained("CIDAS/clipseg-rd64-refined")
- >>> model = CLIPSegForImageSegmentation.from_pretrained("CIDAS/clipseg-rd64-refined")
- >>> url = "http://images.cocodataset.org/val2017/000000039769.jpg"
- >>> image = load_image(url)
- >>> texts = ["a cat", "a remote", "a blanket"]
- >>> inputs = processor(text=texts, images=[image] * len(texts), padding=True, return_tensors="pt")
- >>> with torch.inference_mode():
- ... outputs = model(**inputs)
- >>> logits = outputs.logits
- >>> print(logits.shape)
- torch.Size([3, 352, 352])
- ```"""
- # step 1: forward the query images through the frozen CLIP vision encoder
- with torch.no_grad():
- kwargs["output_hidden_states"] = True # required to extract layers for the stages
- vision_outputs = self.clip.get_image_features(
- pixel_values=pixel_values,
- interpolate_pos_encoding=interpolate_pos_encoding,
- **kwargs,
- )
- pooled_output = vision_outputs.pooler_output
- hidden_states = vision_outputs.hidden_states
- # we add +1 here as the hidden states also include the initial embeddings
- activations = [hidden_states[i + 1] for i in self.extract_layers]
- # update vision_outputs
- vision_outputs = BaseModelOutputWithPooling(
- last_hidden_state=vision_outputs.last_hidden_state,
- pooler_output=vision_outputs.pooler_output,
- hidden_states=vision_outputs.hidden_states,
- attentions=vision_outputs.attentions,
- )
- # step 2: compute conditional embeddings, either from text, images or an own provided embedding
- if conditional_embeddings is None:
- conditional_embeddings = self.get_conditional_embeddings(
- batch_size=pixel_values.shape[0],
- input_ids=input_ids,
- attention_mask=attention_mask,
- position_ids=position_ids,
- conditional_pixel_values=conditional_pixel_values,
- )
- else:
- if conditional_embeddings.shape[0] != pixel_values.shape[0]:
- raise ValueError(
- "Make sure to pass as many conditional embeddings as there are query images in the batch"
- )
- if conditional_embeddings.shape[1] != self.config.projection_dim:
- raise ValueError(
- "Make sure that the feature dimension of the conditional embeddings matches"
- " `config.projection_dim`."
- )
- # step 3: forward both the pooled output and the activations through the lightweight decoder to predict masks
- decoder_outputs = self.decoder(
- activations,
- conditional_embeddings,
- **kwargs,
- )
- logits = decoder_outputs.logits
- loss = None
- if labels is not None:
- # move labels to the correct device to enable PP
- labels = labels.to(logits.device)
- loss_fn = nn.BCEWithLogitsLoss()
- loss = loss_fn(logits, labels)
- return CLIPSegImageSegmentationOutput(
- loss=loss,
- logits=logits,
- conditional_embeddings=conditional_embeddings,
- pooled_output=pooled_output,
- vision_model_output=vision_outputs,
- decoder_output=decoder_outputs,
- )
- __all__ = [
- "CLIPSegModel",
- "CLIPSegPreTrainedModel",
- "CLIPSegTextModel",
- "CLIPSegVisionModel",
- "CLIPSegForImageSegmentation",
- ]
|