mirror of
https://github.com/huggingface/transformers.git
synced 2025-07-08 07:10:06 +06:00

Adds the ALIGN model to transformers. ALIGN is introduced in "Scaling Up Visual and Vision-Language Representation Learning With Noisy Text Supervision" by Chao Jia, Yinfei Yang, Ye Xia, Yi-Ting Chen, Zarana Parekh, Hieu Pham, Quoc V. Le, Yunhsuan Sung, Zhen Li, Tom Duerig.
60 lines
3.6 KiB
Plaintext
60 lines
3.6 KiB
Plaintext
<!--Copyright 2023 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.
|
|
-->
|
|
|
|
# ALIGN
|
|
|
|
## Overview
|
|
|
|
The ALIGN model was proposed in [Scaling Up Visual and Vision-Language Representation Learning With Noisy Text Supervision](https://arxiv.org/abs/2102.05918) by Chao Jia, Yinfei Yang, Ye Xia, Yi-Ting Chen, Zarana Parekh, Hieu Pham, Quoc V. Le, Yunhsuan Sung, Zhen Li, Tom Duerig. ALIGN features a dual-encoder architecture with [EfficientNet](efficientnet) as its vision encoder and [BERT](bert) as its text encoder, and learns to align visual and text representations with contrastive learning. Unlike previous work, ALIGN leverages a massive noisy dataset and shows that the scale of the corpus can be used to achieve SOTA representations with a simple recipe.
|
|
|
|
The abstract from the paper is the following:
|
|
|
|
*Pre-trained representations are becoming crucial for many NLP and perception tasks. While representation learning in NLP has transitioned to training on raw text without human annotations, visual and vision-language representations still rely heavily on curated training datasets that are expensive or require expert knowledge. For vision applications, representations are mostly learned using datasets with explicit class labels such as ImageNet or OpenImages. For vision-language, popular datasets like Conceptual Captions, MSCOCO, or CLIP all involve a non-trivial data collection (and cleaning) process. This costly curation process limits the size of datasets and hence hinders the scaling of trained models. In this paper, we leverage a noisy dataset of over one billion image alt-text pairs, obtained without expensive filtering or post-processing steps in the Conceptual Captions dataset. A simple dual-encoder architecture learns to align visual and language representations of the image and text pairs using a contrastive loss. We show that the scale of our corpus can make up for its noise and leads to state-of-the-art representations even with such a simple learning scheme. Our visual representation achieves strong performance when transferred to classification tasks such as ImageNet and VTAB. The aligned visual and language representations enables zero-shot image classification and also set new state-of-the-art results on Flickr30K and MSCOCO image-text retrieval benchmarks, even when compared with more sophisticated cross-attention models. The representations also enable cross-modality search with complex text and text + image queries.*
|
|
|
|
This model was contributed by [Alara Dirik](https://huggingface.co/adirik).
|
|
The original code is not released, this implementation is based on the Kakao Brain implementation based on the original paper.
|
|
|
|
|
|
## AlignConfig
|
|
|
|
[[autodoc]] AlignConfig
|
|
- from_text_vision_configs
|
|
|
|
## AlignTextConfig
|
|
|
|
[[autodoc]] AlignTextConfig
|
|
|
|
## AlignVisionConfig
|
|
|
|
[[autodoc]] AlignVisionConfig
|
|
|
|
## AlignProcessor
|
|
|
|
[[autodoc]] AlignProcessor
|
|
|
|
## AlignModel
|
|
|
|
[[autodoc]] AlignModel
|
|
- forward
|
|
- get_text_features
|
|
- get_image_features
|
|
|
|
## AlignTextModel
|
|
|
|
[[autodoc]] AlignTextModel
|
|
- forward
|
|
|
|
## AlignVisionModel
|
|
|
|
[[autodoc]] AlignVisionModel
|
|
- forward
|