OWL-ViT
Last updated
Last updated
The OWL-ViT (short for Vision Transformer for Open-World Localization) was proposed in by Matthias Minderer, Alexey Gritsenko, Austin Stone, Maxim Neumann, Dirk Weissenborn, Alexey Dosovitskiy, Aravindh Mahendran, Anurag Arnab, Mostafa Dehghani, Zhuoran Shen, Xiao Wang, Xiaohua Zhai, Thomas Kipf, and Neil Houlsby. OWL-ViT is an open-vocabulary object detection network trained on a variety of (image, text) pairs. It can be used to query an image with one or multiple text queries to search for and detect target objects described in text.
The abstract from the paper is the following:
Combining simple architectures with large-scale pre-training has led to massive improvements in image classification. For object detection, pre-training and scaling approaches are less well established, especially in the long-tailed and open-vocabulary setting, where training data is relatively scarce. In this paper, we propose a strong recipe for transferring image-text models to open-vocabulary object detection. We use a standard Vision Transformer architecture with minimal modifications, contrastive image-text pre-training, and end-to-end detection fine-tuning. Our analysis of the scaling properties of this setup shows that increasing image-level pre-training and model size yield consistent improvements on the downstream detection task. We provide the adaptation strategies and regularizations needed to attain very strong performance on zero-shot text-conditioned and one-shot image-conditioned object detection. Code and models are available on GitHub.
OWL-ViT is a zero-shot text-conditioned object detection model. OWL-ViT uses as its multi-modal backbone, with a ViT-like Transformer to get visual features and a causal language model to get the text features. To use CLIP for detection, OWL-ViT removes the final token pooling layer of the vision model and attaches a lightweight classification and box head to each transformer output token. Open-vocabulary classification is enabled by replacing the fixed classification layer weights with the class-name embeddings obtained from the text model. The authors first train CLIP from scratch and fine-tune it end-to-end with the classification and box heads on standard detection datasets using a bipartite matching loss. One or multiple text queries per image can be used to perform zero-shot text-conditioned object detection.
can be used to resize (or rescale) and normalize images for the model and is used to encode the text. wraps and into a single instance to both encode the text and prepare the images. The following example shows how to perform object detection using and .
Copied
( text_config = Nonevision_config = Noneprojection_dim = 512logit_scale_init_value = 2.6592return_dict = True**kwargs )
Parameters
projection_dim (int
, optional, defaults to 512) — Dimensionality of text and vision projection layers.
logit_scale_init_value (float
, optional, defaults to 2.6592) — The inital value of the logit_scale parameter. Default is used as per the original OWL-ViT implementation.
kwargs (optional) — Dictionary of keyword arguments.
from_text_vision_configs
Returns
An instance of a configuration object
( vocab_size = 49408hidden_size = 512intermediate_size = 2048num_hidden_layers = 12num_attention_heads = 8max_position_embeddings = 16hidden_act = 'quick_gelu'layer_norm_eps = 1e-05attention_dropout = 0.0initializer_range = 0.02initializer_factor = 1.0pad_token_id = 0bos_token_id = 49406eos_token_id = 49407**kwargs )
Parameters
hidden_size (int
, optional, defaults to 512) — Dimensionality of the encoder layers and the pooler layer.
intermediate_size (int
, optional, defaults to 2048) — Dimensionality of the “intermediate” (i.e., feed-forward) layer in the Transformer encoder.
num_hidden_layers (int
, optional, defaults to 12) — Number of hidden layers in the Transformer encoder.
num_attention_heads (int
, optional, defaults to 8) — Number of attention heads for each attention layer in the Transformer encoder.
max_position_embeddings (int
, optional, defaults to 16) — The maximum sequence length that this model might ever be used with. Typically set this to something large just in case (e.g., 512 or 1024 or 2048).
hidden_act (str
or function
, optional, defaults to "quick_gelu"
) — The non-linear activation function (function or string) in the encoder and pooler. If string, "gelu"
, "relu"
, "selu"
and "gelu_new"
`"quick_gelu"
are supported.
layer_norm_eps (float
, optional, defaults to 1e-5) — The epsilon used by the layer normalization layers.
attention_dropout (float
, optional, defaults to 0.0) — The dropout ratio for the attention probabilities.
initializer_range (float
, optional, defaults to 0.02) — The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
initializer_factor (float
, optional, defaults to 1) — A factor for initializing all weight matrices (should be kept to 1, used internally for initialization testing).
Example:
Copied
( hidden_size = 768intermediate_size = 3072num_hidden_layers = 12num_attention_heads = 12num_channels = 3image_size = 768patch_size = 32hidden_act = 'quick_gelu'layer_norm_eps = 1e-05attention_dropout = 0.0initializer_range = 0.02initializer_factor = 1.0**kwargs )
Parameters
hidden_size (int
, optional, defaults to 768) — Dimensionality of the encoder layers and the pooler layer.
intermediate_size (int
, optional, defaults to 3072) — Dimensionality of the “intermediate” (i.e., feed-forward) layer in the Transformer encoder.
num_hidden_layers (int
, optional, defaults to 12) — Number of hidden layers in the Transformer encoder.
num_attention_heads (int
, optional, defaults to 12) — Number of attention heads for each attention layer in the Transformer encoder.
num_channels (int
, optional, defaults to 3) — Number of channels in the input images.
image_size (int
, optional, defaults to 768) — The size (resolution) of each image.
patch_size (int
, optional, defaults to 32) — The size (resolution) of each patch.
hidden_act (str
or function
, optional, defaults to "quick_gelu"
) — The non-linear activation function (function or string) in the encoder and pooler. If string, "gelu"
, "relu"
, "selu"
and "gelu_new"
`"quick_gelu"
are supported.
layer_norm_eps (float
, optional, defaults to 1e-5) — The epsilon used by the layer normalization layers.
attention_dropout (float
, optional, defaults to 0.0) — The dropout ratio for the attention probabilities.
initializer_range (float
, optional, defaults to 0.02) — The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
initializer_factor (`float“, optional, defaults to 1) — A factor for initializing all weight matrices (should be kept to 1, used internally for initialization testing).
Example:
Copied
( do_resize = Truesize = Noneresample = <Resampling.BICUBIC: 3>do_center_crop = Falsecrop_size = Nonedo_rescale = Truerescale_factor = 0.00392156862745098do_normalize = Trueimage_mean = Noneimage_std = None**kwargs )
Parameters
do_resize (bool
, optional, defaults to True
) — Whether to resize the shorter edge of the input to a certain size
.
size (Dict[str, int]
, optional, defaults to {“height” — 768, “width”: 768}): The size to use for resizing the image. Only has an effect if do_resize
is set to True
. If size
is a sequence like (h, w), output size will be matched to this. If size
is an int, then image will be resized to (size, size).
resample (int
, optional, defaults to PIL.Image.Resampling.BICUBIC
) — An optional resampling filter. This can be one of PIL.Image.Resampling.NEAREST
, PIL.Image.Resampling.BOX
, PIL.Image.Resampling.BILINEAR
, PIL.Image.Resampling.HAMMING
, PIL.Image.Resampling.BICUBIC
or PIL.Image.Resampling.LANCZOS
. Only has an effect if do_resize
is set to True
.
do_center_crop (bool
, optional, defaults to False
) — Whether to crop the input at the center. If the input size is smaller than crop_size
along any edge, the image is padded with 0’s and then center cropped.
crop_size (int
, optional, defaults to {“height” — 768, “width”: 768}): The size to use for center cropping the image. Only has an effect if do_center_crop
is set to True
.
do_rescale (bool
, optional, defaults to True
) — Whether to rescale the input by a certain factor.
rescale_factor (float
, optional, defaults to 1/255
) — The factor to use for rescaling the image. Only has an effect if do_rescale
is set to True
.
do_normalize (bool
, optional, defaults to True
) — Whether or not to normalize the input with image_mean
and image_std
. Desired output size when applying center-cropping. Only has an effect if do_center_crop
is set to True
.
image_mean (List[int]
, optional, defaults to [0.48145466, 0.4578275, 0.40821073]
) — The sequence of means for each channel, to be used when normalizing images.
image_std (List[int]
, optional, defaults to [0.26862954, 0.26130258, 0.27577711]
) — The sequence of standard deviations for each channel, to be used when normalizing images.
Constructs an OWL-ViT image processor.
preprocess
( images: typing.Union[ForwardRef('PIL.Image.Image'), numpy.ndarray, ForwardRef('torch.Tensor'), typing.List[ForwardRef('PIL.Image.Image')], typing.List[numpy.ndarray], typing.List[ForwardRef('torch.Tensor')]]do_resize: typing.Optional[bool] = Nonesize: typing.Union[typing.Dict[str, int], NoneType] = Noneresample: Resampling = Nonedo_center_crop: typing.Optional[bool] = Nonecrop_size: typing.Union[typing.Dict[str, int], NoneType] = Nonedo_rescale: typing.Optional[bool] = Nonerescale_factor: typing.Optional[float] = Nonedo_normalize: typing.Optional[bool] = Noneimage_mean: typing.Union[float, typing.List[float], NoneType] = Noneimage_std: typing.Union[float, typing.List[float], NoneType] = Nonereturn_tensors: typing.Union[str, transformers.utils.generic.TensorType, NoneType] = Nonedata_format: typing.Union[str, transformers.image_utils.ChannelDimension] = <ChannelDimension.FIRST: 'channels_first'>input_data_format: typing.Union[str, transformers.image_utils.ChannelDimension, NoneType] = None**kwargs )
Parameters
images (ImageInput
) — The image or batch of images to be prepared. Expects a single or batch of images with pixel values ranging from 0 to 255. If passing in images with pixel values between 0 and 1, set do_rescale=False
.
do_resize (bool
, optional, defaults to self.do_resize
) — Whether or not to resize the input. If True
, will resize the input to the size specified by size
.
size (Dict[str, int]
, optional, defaults to self.size
) — The size to resize the input to. Only has an effect if do_resize
is set to True
.
resample (PILImageResampling
, optional, defaults to self.resample
) — The resampling filter to use when resizing the input. Only has an effect if do_resize
is set to True
.
do_center_crop (bool
, optional, defaults to self.do_center_crop
) — Whether or not to center crop the input. If True
, will center crop the input to the size specified by crop_size
.
crop_size (Dict[str, int]
, optional, defaults to self.crop_size
) — The size to center crop the input to. Only has an effect if do_center_crop
is set to True
.
do_rescale (bool
, optional, defaults to self.do_rescale
) — Whether or not to rescale the input. If True
, will rescale the input by dividing it by rescale_factor
.
rescale_factor (float
, optional, defaults to self.rescale_factor
) — The factor to rescale the input by. Only has an effect if do_rescale
is set to True
.
do_normalize (bool
, optional, defaults to self.do_normalize
) — Whether or not to normalize the input. If True
, will normalize the input by subtracting image_mean
and dividing by image_std
.
image_mean (Union[float, List[float]]
, optional, defaults to self.image_mean
) — The mean to subtract from the input when normalizing. Only has an effect if do_normalize
is set to True
.
image_std (Union[float, List[float]]
, optional, defaults to self.image_std
) — The standard deviation to divide the input by when normalizing. Only has an effect if do_normalize
is set to True
.
return_tensors (str
or TensorType
, optional) — The type of tensors to return. Can be one of:
Unset: Return a list of np.ndarray
.
TensorType.TENSORFLOW
or 'tf'
: Return a batch of type tf.Tensor
.
TensorType.PYTORCH
or 'pt'
: Return a batch of type torch.Tensor
.
TensorType.NUMPY
or 'np'
: Return a batch of type np.ndarray
.
TensorType.JAX
or 'jax'
: Return a batch of type jax.numpy.ndarray
.
data_format (ChannelDimension
or str
, optional, defaults to ChannelDimension.FIRST
) — The channel dimension format for the output image. Can be one of:
ChannelDimension.FIRST
: image in (num_channels, height, width) format.
ChannelDimension.LAST
: image in (height, width, num_channels) format.
Unset: defaults to the channel dimension format of the input image.
input_data_format (ChannelDimension
or str
, optional) — The channel dimension format for the input image. If unset, the channel dimension format is inferred from the input image. Can be one of:
"channels_first"
or ChannelDimension.FIRST
: image in (num_channels, height, width) format.
"channels_last"
or ChannelDimension.LAST
: image in (height, width, num_channels) format.
"none"
or ChannelDimension.NONE
: image in (height, width) format.
Prepares an image or batch of images for the model.
post_process_object_detection
( outputsthreshold: float = 0.1target_sizes: typing.Union[transformers.utils.generic.TensorType, typing.List[typing.Tuple]] = None ) → List[Dict]
Parameters
outputs (OwlViTObjectDetectionOutput
) — Raw outputs of the model.
threshold (float
, optional) — Score threshold to keep object detection predictions.
target_sizes (torch.Tensor
or List[Tuple[int, int]]
, optional) — Tensor of shape (batch_size, 2)
or list of tuples (Tuple[int, int]
) containing the target size (height, width)
of each image in the batch. If unset, predictions will not be resized.
Returns
List[Dict]
A list of dictionaries, each dictionary containing the scores, labels and boxes for an image in the batch as predicted by the model.
post_process_image_guided_detection
( outputsthreshold = 0.0nms_threshold = 0.3target_sizes = None ) → List[Dict]
Parameters
outputs (OwlViTImageGuidedObjectDetectionOutput
) — Raw outputs of the model.
threshold (float
, optional, defaults to 0.0) — Minimum confidence threshold to use to filter out predicted boxes.
nms_threshold (float
, optional, defaults to 0.3) — IoU threshold for non-maximum suppression of overlapping boxes.
target_sizes (torch.Tensor
, optional) — Tensor of shape (batch_size, 2) where each entry is the (height, width) of the corresponding image in the batch. If set, predicted normalized bounding boxes are rescaled to the target sizes. If left to None, predictions will not be unnormalized.
Returns
List[Dict]
A list of dictionaries, each dictionary containing the scores, labels and boxes for an image in the batch as predicted by the model. All labels are set to None as OwlViTForObjectDetection.image_guided_detection
perform one-shot object detection.
( *args**kwargs )
__call__
( images**kwargs )
Preprocess an image or a batch of images.
post_process
( outputstarget_sizes ) → List[Dict]
Parameters
outputs (OwlViTObjectDetectionOutput
) — Raw outputs of the model.
target_sizes (torch.Tensor
of shape (batch_size, 2)
) — Tensor containing the size (h, w) of each image of the batch. For evaluation, this must be the original image size (before any data augmentation). For visualization, this should be the image size after data augment, but before padding.
Returns
List[Dict]
A list of dictionaries, each dictionary containing the scores, labels and boxes for an image in the batch as predicted by the model.
post_process_image_guided_detection
( outputsthreshold = 0.0nms_threshold = 0.3target_sizes = None ) → List[Dict]
Parameters
outputs (OwlViTImageGuidedObjectDetectionOutput
) — Raw outputs of the model.
threshold (float
, optional, defaults to 0.0) — Minimum confidence threshold to use to filter out predicted boxes.
nms_threshold (float
, optional, defaults to 0.3) — IoU threshold for non-maximum suppression of overlapping boxes.
target_sizes (torch.Tensor
, optional) — Tensor of shape (batch_size, 2) where each entry is the (height, width) of the corresponding image in the batch. If set, predicted normalized bounding boxes are rescaled to the target sizes. If left to None, predictions will not be unnormalized.
Returns
List[Dict]
A list of dictionaries, each dictionary containing the scores, labels and boxes for an image in the batch as predicted by the model. All labels are set to None as OwlViTForObjectDetection.image_guided_detection
perform one-shot object detection.
( image_processor = Nonetokenizer = None**kwargs )
Parameters
tokenizer ([CLIPTokenizer
, CLIPTokenizerFast
]) — The tokenizer is a required input.
batch_decode
( *args**kwargs )
decode
( *args**kwargs )
post_process
( *args**kwargs )
post_process_image_guided_detection
( *args**kwargs )
This method forwards all its arguments to OwlViTImageProcessor.post_process_one_shot_object_detection
. Please refer to the docstring of this method for more information.
post_process_object_detection
( *args**kwargs )
( config: OwlViTConfig )
Parameters
This model is a PyTorch [torch.nn.Module](https — //pytorch.org/docs/stable/nn.html#torch.nn.Module) subclass. Use it
forward
( input_ids: typing.Optional[torch.LongTensor] = Nonepixel_values: typing.Optional[torch.FloatTensor] = Noneattention_mask: typing.Optional[torch.Tensor] = Nonereturn_loss: typing.Optional[bool] = Noneoutput_attentions: typing.Optional[bool] = Noneoutput_hidden_states: typing.Optional[bool] = Nonereturn_base_image_embeds: typing.Optional[bool] = Nonereturn_dict: typing.Optional[bool] = None ) → transformers.models.owlvit.modeling_owlvit.OwlViTOutput
or tuple(torch.FloatTensor)
Parameters
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,
pixel_values (torch.FloatTensor
of shape (batch_size, num_channels, height, width)
) — Pixel values.
return_loss (bool
, optional) — Whether or not to return the contrastive loss.
output_attentions (bool
, optional) — Whether or not to return the attentions tensors of all attention layers. See attentions
under returned tensors for more detail.
output_hidden_states (bool
, optional) — Whether or not to return the hidden states of all layers. See hidden_states
under returned tensors for more detail.
Returns
transformers.models.owlvit.modeling_owlvit.OwlViTOutput
or tuple(torch.FloatTensor)
A transformers.models.owlvit.modeling_owlvit.OwlViTOutput
or a tuple of torch.FloatTensor
(if return_dict=False
is passed or when config.return_dict=False
) comprising various elements depending on the configuration (<class 'transformers.models.owlvit.configuration_owlvit.OwlViTConfig'>
) and inputs.
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.
Although the recipe for forward pass needs to be defined within this function, one should call the Module
instance afterwards instead of this since the former takes care of running the pre and post processing steps while the latter silently ignores them.
Examples:
Copied
get_text_features
( input_ids: typing.Optional[torch.Tensor] = Noneattention_mask: typing.Optional[torch.Tensor] = Noneoutput_attentions: typing.Optional[bool] = Noneoutput_hidden_states: typing.Optional[bool] = Nonereturn_dict: typing.Optional[bool] = None ) → text_features (torch.FloatTensor
of shape (batch_size, output_dim
)
Parameters
attention_mask (torch.Tensor
of shape (batch_size, num_max_text_queries, 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,
output_attentions (bool
, optional) — Whether or not to return the attentions tensors of all attention layers. See attentions
under returned tensors for more detail.
output_hidden_states (bool
, optional) — Whether or not to return the hidden states of all layers. See hidden_states
under returned tensors for more detail.
Returns
text_features (torch.FloatTensor
of shape (batch_size, output_dim
)
Although the recipe for forward pass needs to be defined within this function, one should call the Module
instance afterwards instead of this since the former takes care of running the pre and post processing steps while the latter silently ignores them.
Examples:
Copied
get_image_features
( pixel_values: typing.Optional[torch.FloatTensor] = Noneoutput_attentions: typing.Optional[bool] = Noneoutput_hidden_states: typing.Optional[bool] = Nonereturn_dict: typing.Optional[bool] = None ) → image_features (torch.FloatTensor
of shape (batch_size, output_dim
)
Parameters
pixel_values (torch.FloatTensor
of shape (batch_size, num_channels, height, width)
) — Pixel values.
output_attentions (bool
, optional) — Whether or not to return the attentions tensors of all attention layers. See attentions
under returned tensors for more detail.
output_hidden_states (bool
, optional) — Whether or not to return the hidden states of all layers. See hidden_states
under returned tensors for more detail.
Returns
image_features (torch.FloatTensor
of shape (batch_size, output_dim
)
Although the recipe for forward pass needs to be defined within this function, one should call the Module
instance afterwards instead of this since the former takes care of running the pre and post processing steps while the latter silently ignores them.
Examples:
Copied
( config: OwlViTTextConfig )
forward
Parameters
attention_mask (torch.Tensor
of shape (batch_size, num_max_text_queries, 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,
output_attentions (bool
, optional) — Whether or not to return the attentions tensors of all attention layers. See attentions
under returned tensors for more detail.
output_hidden_states (bool
, optional) — Whether or not to return the hidden states of all layers. See hidden_states
under returned tensors for more detail.
Returns
last_hidden_state (torch.FloatTensor
of shape (batch_size, sequence_length, hidden_size)
) — Sequence of hidden-states at the output of the last layer of the model.
pooler_output (torch.FloatTensor
of shape (batch_size, hidden_size)
) — Last layer hidden-state of the first token of the sequence (classification token) after further processing through the layers used for the auxiliary pretraining task. E.g. for BERT-family of models, this returns the classification token after processing through a linear layer and a tanh activation function. The linear layer weights are trained from the next sentence prediction (classification) objective during pretraining.
hidden_states (tuple(torch.FloatTensor)
, optional, returned when output_hidden_states=True
is passed or when config.output_hidden_states=True
) — Tuple of torch.FloatTensor
(one for the output of the embeddings, if the model has an embedding layer, + one for the output of each layer) of shape (batch_size, sequence_length, hidden_size)
.
Hidden-states of the model at the output of each layer plus the optional initial embedding outputs.
attentions (tuple(torch.FloatTensor)
, optional, returned when output_attentions=True
is passed or when config.output_attentions=True
) — Tuple of torch.FloatTensor
(one for each layer) of shape (batch_size, num_heads, sequence_length, sequence_length)
.
Attentions weights after the attention softmax, used to compute the weighted average in the self-attention heads.
Although the recipe for forward pass needs to be defined within this function, one should call the Module
instance afterwards instead of this since the former takes care of running the pre and post processing steps while the latter silently ignores them.
Examples:
Copied
( config: OwlViTVisionConfig )
forward
Parameters
pixel_values (torch.FloatTensor
of shape (batch_size, num_channels, height, width)
) — Pixel values.
output_attentions (bool
, optional) — Whether or not to return the attentions tensors of all attention layers. See attentions
under returned tensors for more detail.
output_hidden_states (bool
, optional) — Whether or not to return the hidden states of all layers. See hidden_states
under returned tensors for more detail.
Returns
last_hidden_state (torch.FloatTensor
of shape (batch_size, sequence_length, hidden_size)
) — Sequence of hidden-states at the output of the last layer of the model.
pooler_output (torch.FloatTensor
of shape (batch_size, hidden_size)
) — Last layer hidden-state of the first token of the sequence (classification token) after further processing through the layers used for the auxiliary pretraining task. E.g. for BERT-family of models, this returns the classification token after processing through a linear layer and a tanh activation function. The linear layer weights are trained from the next sentence prediction (classification) objective during pretraining.
hidden_states (tuple(torch.FloatTensor)
, optional, returned when output_hidden_states=True
is passed or when config.output_hidden_states=True
) — Tuple of torch.FloatTensor
(one for the output of the embeddings, if the model has an embedding layer, + one for the output of each layer) of shape (batch_size, sequence_length, hidden_size)
.
Hidden-states of the model at the output of each layer plus the optional initial embedding outputs.
attentions (tuple(torch.FloatTensor)
, optional, returned when output_attentions=True
is passed or when config.output_attentions=True
) — Tuple of torch.FloatTensor
(one for each layer) of shape (batch_size, num_heads, sequence_length, sequence_length)
.
Attentions weights after the attention softmax, used to compute the weighted average in the self-attention heads.
Although the recipe for forward pass needs to be defined within this function, one should call the Module
instance afterwards instead of this since the former takes care of running the pre and post processing steps while the latter silently ignores them.
Examples:
Copied
( config: OwlViTConfig )
forward
( input_ids: Tensorpixel_values: FloatTensorattention_mask: typing.Optional[torch.Tensor] = Noneoutput_attentions: typing.Optional[bool] = Noneoutput_hidden_states: typing.Optional[bool] = Nonereturn_dict: typing.Optional[bool] = None ) → transformers.models.owlvit.modeling_owlvit.OwlViTObjectDetectionOutput
or tuple(torch.FloatTensor)
Parameters
pixel_values (torch.FloatTensor
of shape (batch_size, num_channels, height, width)
) — Pixel values.
attention_mask (torch.Tensor
of shape (batch_size, num_max_text_queries, 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,
output_hidden_states (bool
, optional) — Whether or not to return the last hidden state. See text_model_last_hidden_state
and vision_model_last_hidden_state
under returned tensors for more detail.
Returns
transformers.models.owlvit.modeling_owlvit.OwlViTObjectDetectionOutput
or tuple(torch.FloatTensor)
A transformers.models.owlvit.modeling_owlvit.OwlViTObjectDetectionOutput
or a tuple of torch.FloatTensor
(if return_dict=False
is passed or when config.return_dict=False
) comprising various elements depending on the configuration (<class 'transformers.models.owlvit.configuration_owlvit.OwlViTConfig'>
) and inputs.
loss (torch.FloatTensor
of shape (1,)
, optional, returned when labels
are provided)) — Total loss as a linear combination of a negative log-likehood (cross-entropy) for class prediction and a bounding box loss. The latter is defined as a linear combination of the L1 loss and the generalized scale-invariant IoU loss.
loss_dict (Dict
, optional) — A dictionary containing the individual losses. Useful for logging.
logits (torch.FloatTensor
of shape (batch_size, num_patches, num_queries)
) — Classification logits (including no-object) for all queries.
class_embeds (torch.FloatTensor
of shape (batch_size, num_patches, hidden_size)
) — Class embeddings of all image patches. OWL-ViT represents images as a set of image patches where the total number of patches is (image_size / patch_size)**2.
Although the recipe for forward pass needs to be defined within this function, one should call the Module
instance afterwards instead of this since the former takes care of running the pre and post processing steps while the latter silently ignores them.
Examples:
Copied
image_guided_detection
( pixel_values: FloatTensorquery_pixel_values: typing.Optional[torch.FloatTensor] = Noneoutput_attentions: typing.Optional[bool] = Noneoutput_hidden_states: typing.Optional[bool] = Nonereturn_dict: typing.Optional[bool] = None ) → transformers.models.owlvit.modeling_owlvit.OwlViTImageGuidedObjectDetectionOutput
or tuple(torch.FloatTensor)
Parameters
pixel_values (torch.FloatTensor
of shape (batch_size, num_channels, height, width)
) — Pixel values.
query_pixel_values (torch.FloatTensor
of shape (batch_size, num_channels, height, width)
) — Pixel values of query image(s) to be detected. Pass in one query image per target image.
output_attentions (bool
, optional) — Whether or not to return the attentions tensors of all attention layers. See attentions
under returned tensors for more detail.
output_hidden_states (bool
, optional) — Whether or not to return the hidden states of all layers. See hidden_states
under returned tensors for more detail.
Returns
transformers.models.owlvit.modeling_owlvit.OwlViTImageGuidedObjectDetectionOutput
or tuple(torch.FloatTensor)
A transformers.models.owlvit.modeling_owlvit.OwlViTImageGuidedObjectDetectionOutput
or a tuple of torch.FloatTensor
(if return_dict=False
is passed or when config.return_dict=False
) comprising various elements depending on the configuration (<class 'transformers.models.owlvit.configuration_owlvit.OwlViTConfig'>
) and inputs.
logits (torch.FloatTensor
of shape (batch_size, num_patches, num_queries)
) — Classification logits (including no-object) for all queries.
class_embeds (torch.FloatTensor
of shape (batch_size, num_patches, hidden_size)
) — Class embeddings of all image patches. OWL-ViT represents images as a set of image patches where the total number of patches is (image_size / patch_size)**2.
Although the recipe for forward pass needs to be defined within this function, one should call the Module
instance afterwards instead of this since the former takes care of running the pre and post processing steps while the latter silently ignores them.
Examples:
Copied
This model was contributed by . The original code can be found .
text_config (dict
, optional) — Dictionary of configuration options used to initialize .
vision_config (dict
, optional) — Dictionary of configuration options used to initialize .
is the configuration class to store the configuration of an . It is used to instantiate an OWL-ViT model according to the specified arguments, defining the text model and vision model configs. Instantiating a configuration with the defaults will yield a similar configuration to that of the OWL-ViT architecture.
Configuration objects inherit from and can be used to control the model outputs. Read the documentation from for more information.
( text_config: typing.Dictvision_config: typing.Dict**kwargs ) →
Instantiate a (or a derived class) from owlvit text model configuration and owlvit vision model configuration.
vocab_size (int
, optional, defaults to 49408) — Vocabulary size of the OWL-ViT text model. Defines the number of different tokens that can be represented by the inputs_ids
passed when calling .
This is the configuration class to store the configuration of an . It is used to instantiate an OwlViT text encoder according to the specified arguments, defining the model architecture. Instantiating a configuration with the defaults will yield a similar configuration to that of the OwlViT architecture.
Configuration objects inherit from and can be used to control the model outputs. Read the documentation from for more information.
This is the configuration class to store the configuration of an . It is used to instantiate an OWL-ViT image encoder according to the specified arguments, defining the model architecture. Instantiating a configuration with the defaults will yield a similar configuration to that of the OWL-ViT architecture.
Configuration objects inherit from and can be used to control the model outputs. Read the documentation from for more information.
This image processor inherits from which contains most of the main methods. Users should refer to this superclass for more information regarding those methods.
Converts the raw output of into final bounding boxes in (top_left_x, top_left_y, bottom_right_x, bottom_right_y) format.
Converts the output of into the format expected by the COCO api.
Converts the raw output of into final bounding boxes in (top_left_x, top_left_y, bottom_right_x, bottom_right_y) format.
Converts the output of into the format expected by the COCO api.
image_processor () — The image processor is a required input.
Constructs an OWL-ViT processor which wraps and / into a single processor that interits both the image processor and tokenizer functionalities. See the __call__()
and for more information.
This method forwards all its arguments to CLIPTokenizerFast’s . Please refer to the docstring of this method for more information.
This method forwards all its arguments to CLIPTokenizerFast’s . Please refer to the docstring of this method for more information.
This method forwards all its arguments to . Please refer to the docstring of this method for more information.
This method forwards all its arguments to . Please refer to the docstring of this method for more information.
as a regular PyTorch Module and refer to the PyTorch documentation for all matter related to general usage and — behavior. — config (): Model configuration class with all the parameters of the model. Initializing with a config file does not load the weights associated with the model, only the configuration. Check out the method to load the model weights.
input_ids (torch.LongTensor
of shape (batch_size, sequence_length)
) — Indices of input sequence tokens in the vocabulary. Indices can be obtained using . See and for details.
0 for tokens that are masked.
return_dict (bool
, optional) — Whether or not to return a instead of a plain tuple.
text_embeds (torch.FloatTensor
of shape (batch_size * num_max_text_queries, output_dim
) — The text embeddings obtained by applying the projection layer to the pooled output of .
image_embeds (torch.FloatTensor
of shape (batch_size, output_dim
) — The image embeddings obtained by applying the projection layer to the pooled output of .
text_model_output (TupleBaseModelOutputWithPooling
) — The output of the .
vision_model_output (BaseModelOutputWithPooling
) — The output of the .
The forward method, overrides the __call__
special method.
input_ids (torch.LongTensor
of shape (batch_size * num_max_text_queries, sequence_length)
) — Indices of input sequence tokens in the vocabulary. Indices can be obtained using . See and for details.
0 for tokens that are masked.
return_dict (bool
, optional) — Whether or not to return a instead of a plain tuple.
The text embeddings obtained by applying the projection layer to the pooled output of .
The forward method, overrides the __call__
special method.
return_dict (bool
, optional) — Whether or not to return a instead of a plain tuple.
The image embeddings obtained by applying the projection layer to the pooled output of .
The forward method, overrides the __call__
special method.
( input_ids: Tensorattention_mask: typing.Optional[torch.Tensor] = Noneoutput_attentions: typing.Optional[bool] = Noneoutput_hidden_states: typing.Optional[bool] = Nonereturn_dict: typing.Optional[bool] = None ) → or tuple(torch.FloatTensor)
input_ids (torch.LongTensor
of shape (batch_size * num_max_text_queries, sequence_length)
) — Indices of input sequence tokens in the vocabulary. Indices can be obtained using . See and for details.
0 for tokens that are masked.
return_dict (bool
, optional) — Whether or not to return a instead of a plain tuple.
or tuple(torch.FloatTensor)
A or a tuple of torch.FloatTensor
(if return_dict=False
is passed or when config.return_dict=False
) comprising various elements depending on the configuration (<class 'transformers.models.owlvit.configuration_owlvit.OwlViTTextConfig'>
) and inputs.
The forward method, overrides the __call__
special method.
( pixel_values: typing.Optional[torch.FloatTensor] = Noneoutput_attentions: typing.Optional[bool] = Noneoutput_hidden_states: typing.Optional[bool] = Nonereturn_dict: typing.Optional[bool] = None ) → or tuple(torch.FloatTensor)
return_dict (bool
, optional) — Whether or not to return a instead of a plain tuple.
or tuple(torch.FloatTensor)
A or a tuple of torch.FloatTensor
(if return_dict=False
is passed or when config.return_dict=False
) comprising various elements depending on the configuration (<class 'transformers.models.owlvit.configuration_owlvit.OwlViTVisionConfig'>
) and inputs.
The forward method, overrides the __call__
special method.
input_ids (torch.LongTensor
of shape (batch_size * num_max_text_queries, sequence_length)
, optional) — Indices of input sequence tokens in the vocabulary. Indices can be obtained using . See and for details. .
0 for tokens that are masked.
return_dict (bool
, optional) — Whether or not to return a instead of a plain tuple.
pred_boxes (torch.FloatTensor
of shape (batch_size, num_patches, 4)
) — Normalized boxes coordinates for all queries, represented as (center_x, center_y, width, height). These values are normalized in [0, 1], relative to the size of each individual image in the batch (disregarding possible padding). You can use to retrieve the unnormalized bounding boxes.
text_embeds (torch.FloatTensor
of shape (batch_size, num_max_text_queries, output_dim
) — The text embeddings obtained by applying the projection layer to the pooled output of .
image_embeds (torch.FloatTensor
of shape (batch_size, patch_size, patch_size, output_dim
) — Pooled output of . OWL-ViT represents images as a set of image patches and computes image embeddings for each patch.
text_model_output (TupleBaseModelOutputWithPooling
) — The output of the .
vision_model_output (BaseModelOutputWithPooling
) — The output of the .
The forward method, overrides the __call__
special method.
return_dict (bool
, optional) — Whether or not to return a instead of a plain tuple.
target_pred_boxes (torch.FloatTensor
of shape (batch_size, num_patches, 4)
) — Normalized boxes coordinates for all queries, represented as (center_x, center_y, width, height). These values are normalized in [0, 1], relative to the size of each individual target image in the batch (disregarding possible padding). You can use to retrieve the unnormalized bounding boxes.
query_pred_boxes (torch.FloatTensor
of shape (batch_size, num_patches, 4)
) — Normalized boxes coordinates for all queries, represented as (center_x, center_y, width, height). These values are normalized in [0, 1], relative to the size of each individual query image in the batch (disregarding possible padding). You can use to retrieve the unnormalized bounding boxes.
image_embeds (torch.FloatTensor
of shape (batch_size, patch_size, patch_size, output_dim
) — Pooled output of . OWL-ViT represents images as a set of image patches and computes image embeddings for each patch.
query_image_embeds (torch.FloatTensor
of shape (batch_size, patch_size, patch_size, output_dim
) — Pooled output of . OWL-ViT represents images as a set of image patches and computes image embeddings for each patch.
text_model_output (TupleBaseModelOutputWithPooling
) — The output of the .
vision_model_output (BaseModelOutputWithPooling
) — The output of the .
The forward method, overrides the __call__
special method.