idefics-80b / README.md
Leyo's picture
Add stars for evals in instruction dataset
9053c22
|
raw
history blame
No virus
30.5 kB
metadata
language: en
tags:
  - multimodal
  - text
  - image
license: other
datasets:
  - HuggingFaceM4/OBELICS
  - wikipedia
  - facebook/pmd
  - laion/laion2B-en

TODO: logo?

IDEFICS

IDEFICS (Image-aware Decoder Enhanced à la Flamingo with Interleaved Cross-attentionS) is an open-access reproduction of Flamingo, a closed-source visual language model developed by Deepmind. Like GPT-4, the multimodal model accepts arbitrary sequences of image and text inputs and produces text outputs. IDEFICS is built solely on public available data and models.

The model can answer questions about images, describe visual contents, create stories grounded on multiple images, or simply behave as a pure language model without visual inputs.

IDEFICS is on par with the original model on various image-text benchmarks, including visual question answering (open-ended and multiple choice), image captioning, and image classification when evaluated with in-context few-shot learning. It comes into two variants: a large 80 billion parameters version and a 9 billion parameters version.

We also fine-tune these base models on a mixture of supervised and instruction fine-tuning datasets, which boosts the downstream performance while making the models more usable in conversational settings: idefics-80b-instruct and idefics-9b-instruct. As they reach higher performance, we recommend using these instructed versions first.

Read more about some of the technical challenges encountered during training IDEFICS here.

Model Details

IDEFICS is a large multimodal English model that takes sequences of interleaved images and texts as inputs and generates text outputs. The model shows strong in-context few-shot learning capabilities and is on par with the closed-source model. This makes IDEFICS a robust starting point to fine-tune multimodal models on custom data.

IDEFICS is built on top of two unimodal open-access pre-trained models to connect the two modalities. Newly initialized parameters in the form of Transformer blocks bridge the gap between the vision encoder and the language model. The model is trained on a mixture of image/text pairs and unstrucutred multimodal web documents.

IDEFICS-instruct is the model obtained by further training IDEFICS on Supervised Fine-Tuning and Instruction Fine-Tuning datasets. This improves downstream performance significantly (making idefics-9b-instruct a very strong model at its 9 billion scale), while making the model more suitable to converse with.

Uses

The model can be used to perform inference on multimodal (image + text) tasks in which the input is composed of a text query/instruction along with one or multiple images. This model does not support image generation.

It is possible to fine-tune the base model on custom data for a specific use-case. We note that the instruction-fine-tuned models are significantly better at following instructions from users and thus should be prefered when using the models out-of-the-box.

The following screenshot is an example of interaction with the instructed model:

Guarding baguettes

How to Get Started with the Model

This tutorial shows a simple example to fine-tune IDEFICS on custom data. This colab notebook showcases how to do the fine-tuning in 4bits precision. TODO: change to the correct link once it's merged.

We provide quick-start code for both the base and the instruct models.

Use the code below to get started with the base model.

import torch
from transformers import IdeficsForVisionText2Text, AutoProcessor

device = "cuda" if torch.cuda.is_available() else "cpu"

checkpoint = "HuggingFaceM4/idefics-9b"
model = IdeficsForVisionText2Text.from_pretrained(checkpoint, torch_dtype=torch.bfloat16).to(device)
processor = AutoProcessor.from_pretrained(checkpoint)

# We feed to the model an arbitrary sequence of text strings and images. Images can be either URLs or PIL Images.
prompts = [
    [
        "https://upload.wikimedia.org/wikipedia/commons/8/86/Id%C3%A9fix.JPG",
        "In this picture from Asterix and Obelix, we can see"
    ],
]

# --batched mode
inputs = processor(prompts, return_tensors="pt").to(device)
# --single sample mode
# inputs = processor(prompts[0], return_tensors="pt").to(device)

generated_ids = model.generate(**inputs, max_length=100)
generated_text = processor.batch_decode(generated_ids, skip_special_tokens=True)
for i, t in enumerate(generated_text):
    print(f"{i}:\n{t}\n")

To quickly test your software without waiting for the huge model to download/load you can use HuggingFaceM4/tiny-random-idefics - it hasn't been trained and has random weights but it is very useful for quick testing.

Use that code to get started with the instruct model:

import torch
from transformers import IdeficsForVisionText2Text, AutoProcessor

device = "cuda" if torch.cuda.is_available() else "cpu"

checkpoint = "HuggingFaceM4/idefics-9b-instruct"
model = IdeficsForVisionText2Text.from_pretrained(checkpoint, torch_dtype=torch.bfloat16).to(device)
processor = AutoProcessor.from_pretrained(checkpoint)

# We feed to the model an arbitrary sequence of text strings and images. Images can be either URLs or PIL Images.
prompts = [
    [
        "User: What is in this image?",
        "https://upload.wikimedia.org/wikipedia/commons/8/86/Id%C3%A9fix.JPG",
        "<end_of_utterance>",

        "\nAssistant: This picture depicts Idefix, the dog of Obelix in Asterix and Obelix. Idefix is running on the ground.<end_of_utterance>",

        "\nUser:",
        "https://static.wikia.nocookie.net/asterix/images/2/25/R22b.gif/revision/latest?cb=20110815073052",
        "And who is that?<end_of_utterance>",

        "\nAssistant:",
    ],
]

# --batched mode
inputs = processor(prompts, add_end_of_utterance_token=False, return_tensors="pt").to(device)
# --single sample mode
# inputs = processor(prompts[0], return_tensors="pt").to(device)
exit_condition = processor.tokenizer("<end_of_utterance>", add_special_tokens=False).input_ids

generated_ids = model.generate(**inputs, eos_token_id=exit_condition, max_length=100)
generated_text = processor.batch_decode(generated_ids, skip_special_tokens=True)
for i, t in enumerate(generated_text):
    print(f"{i}:\n{t}\n")

Training Details

IDEFICS base

We closely follow the training procedure layed out in Flamingo. We combine two open-source pre-trained models (laion/CLIP-ViT-H-14-laion2B-s32B-b79K and huggyllama/llama-65b) by initializing new Transformer blocks. The pre-trained backbones are frozen while we train the newly initialized parameters.

The model is trained on the following data mixture of openly accessible English data:

Data Source Type of Data Number of Tokens in Source Number of Images in Source Epochs Effective Proportion in Number of Tokens
OBELICS Unstructured Multimodal Web Documents 114.9B 353M 1 73.85%
Wikipedia Unstructured Multimodal Web Documents 3.192B 39M 3 6.15%
LAION Image-Text Pairs 29.9B 1.120B 1 17.18%
PMD Image-Text Pairs 1.6B 70M 3 2.82%

OBELICS is an open, massive and curated collection of interleaved image-text web documents, containing 141M documents, 115B text tokens and 353M images. An interactive visualization of the dataset content is available here.

Wkipedia. We used the English dump of Wikipedia created on February 20th, 2023.

LAION is a collection of image-text pairs collected from web pages from Common Crawl and texts are obtained using the alternative texts of each image. We deduplicated it (following Webster et al., 2023), filtered it, and removed the opted-out images using the Spawning API.

PMD is a collection of publicly-available image-text pair datasets. The dataset contains pairs from Conceptual Captions, Conceptual Captions 12M, WIT, Localized Narratives, RedCaps, COCO, SBU Captions, Visual Genome and a subset of YFCC100M dataset. Due to a server failure at the time of the pre-processing, we did not include SBU captions.

For multimodal web documents, we feed the model sequences corresponding to the succession of text paragraphs and images. For image-text pairs, we form the training sequences by packing images with their captions. The images are encoded with the vision encoder and vision hidden states are pooled with Transformer Perceiver blocks and then fused into the text sequence through the cross-attention blocks.

Following Dehghani et al., 2023, we apply a layer normalization on the projected queries and keys of both the Perceiver and cross-attention blocks, which improved training stability in our early experiments. We use the RMSNorm implementation for trainable Layer Norms.

The training objective is the standard next token prediction.

We use the following hyper and training parameters:

Parameters IDEFICS-80b IDEFICS-9b
Perceiver Resampler Number of Layers 6 6
Number of Latents 64 64
Number of Heads 16 16
Resampler Head Dimension 96 96
Model Language Model Backbone Llama-65b Llama-7b
Vision Model Backbone laion/CLIP-ViT-H-14-laion2B-s32B-b79K laion/CLIP-ViT-H-14-laion2B-s32B-b79K
Cross-Layer Interval 4 4
Training Sequence Length 1024 1024
Effective Batch Size (# of tokens) 3.67M 1.31M
Max Training Steps 200K 200K
Weight Decay 0.1 0.1
Optimizer Adam(0.9, 0.999) Adam(0.9, 0.999)
Gradient Clipping 1.0 1.0
Z-loss weight 1e-3 1e-3
Learning Rate Initial Max 5e-5 1e-5
Initial Final 3e-5 6e-6
Decay Schedule Linear Linear
Linear warmup Steps 2K 2K
Large-scale Optimization Gradient Checkpointing True True
Precision Mixed-pres bf16 Mixed-pres bf16
ZeRO Optimization Stage 3 Stage 3

IDEFICS-instruct

We start from the base IDEFICS models and fine-tune the models by unfreezing all the parameters (vision encoder, language model, cross-attentions). The mixture is composed of following English datasets:

Data Source Data Description Number of Unique Samples Sampling ratio
M3IT Prompted image-text academic datasets 1.5M 7.7%
LRV-Instruction Triplets of image/question/answer 155K 1.7%
LLaVA-Instruct Dialogues of question/answers grounded on an image 158K 5.9%
LLaVAR-Instruct Dialogues of question/answers grounded on an image with a focus on images containing text 15.5K 6.3%
SVIT Triplets of image/question/answer 3.2M 11.4%
Spot Difference Triplets of image/question/answer 158K 2.1%
UltraChat Multi-turn text-only dialogye 1.5M 29.1%

We note that all these datasets were obtained by using ChatGPT/GPT-4 in one way or another.

Additionally, we found it beneficial to include the pre-training data in the fine-tuning with the following sampling ratios: 5.1% of image-text pairs and 31.0 of multimodal web documents.

The training objective is the standard next token prediction. We use the following hyper and training parameters:

Parameters IDEFICS-80b-instruct IDEFICS-9b-instruct
Training Sequence Length 2048 2048
Effective Batch Size (# of tokens) 613K 205K
Max Training Steps 22K 22K
Weight Decay 0.1 0.1
Optimizer Adam(0.9, 0.999) Adam(0.9, 0.999)
Gradient Clipping 1.0 1.0
Z-loss weight 0. 0.
Learning Rate Initial Max 3e-6 1e-5
Initial Final 3.6e-7 1.2e-6
Decay Schedule Linear Linear
Linear warmup Steps 1K 1K
Large-scale Optimization Gradient Checkpointing True True
Precision Mixed-pres bf16 Mixed-pres bf16
ZeRO Optimization Stage 3 Stage 3

Evaluation

IDEFICS base

We follow the evaluation protocol of Flamingo and evaluate IDEFICS on a suite of downstream image-text benchmarks ranging from visual question answering to image captioning.

We compare our model to the original Flamingo along with OpenFlamingo, another open-source reproduction.

We perform checkpoint selection based on validation sets of VQAv2, TextVQA, OKVQA, VizWiz, Visual Dialogue, Coco, Flickr30k, and HatefulMemes. We select the checkpoint at step 65'000 for IDEFICS-9B and at step 37'500 for IDEFICS. The models are evaluated with in-context few-shot learning where the priming instances are selected at random from a support set. We do not use any form of ensembling.

As opposed to Flamingo, we did not train IDEFICS on video-text pairs datasets, and as such, we did not evaluate the model on video-text benchmarks like Flamingo did. We leave that evaluation for a future iteration.

Evals of IDEFICS

We note that since IDEFICS was trained on PMD (which contains COCO), the evaluation numbers on COCO are not directly comparable with Flamingo and OpenFlamingo since they did not explicitely have this dataset in the training mixture. Additionally, Flamingo is trained with images of resolution 320 x 320 while IDEFICS and OpenFlamingo were trained with images of 224 x 224 resolution.

Model Shots VQAv2
OE VQA acc.
OKVQA
OE VQA acc.
TextVQA
OE VQA acc.
VizWiz
OE VQA acc.
TextCaps
CIDEr
Coco
CIDEr
NoCaps
CIDEr
Flickr
CIDEr
VisDial
NDCG
HatefulMemes
ROC AUC
ScienceQA
acc.
RenderedSST2
acc.
Winoground
group (text/image)
IDEFICS 80B 0 60.0 45.2 30.9 36.0 56.8 91.8 65.0 53.7 48.8 60.6 68.9 60.5 8.0 (18.75/22.5)
4 63.6 52.4 34.4 40.4 72.7 110.3 99.6 73.7 48.4 57.8 58.9 66.6 -
8 64.8 55.1 35.7 46.1 77.6 114.3 105.7 76.6 47.9 58.2 - 67.8 -
16 65.4 56.8 36.3 48.3 81.4 116.6 107.0 80.1 - 55.8 - 67.7 -
32 65.9 57.8 36.7 50.0 82.7 116.6 107.5 81.1 - 52.5 - 67.3 -

IDEFICS 9B 0 50.9 38.4 25.9 35.5 25.4 46.0 36.8 27.3 48.7 51.7 44.2 61.8 5.0 (16.8/20.8)
4 55.4 45.5 27.6 36.9 60.0 93.0 81.3 59.7 47.9 50.7 37.4 62.3 -
8 56.4 47.7 27.5 40.4 63.2 97.0 86.8 61.9 47.6 51.0 - 66.3 -
16 57.0 48.4 27.9 42.6 67.4 99.7 89.4 64.5 - 50.9 - 67.8 -
32 57.9 49.6 28.3 43.7 68.1 98.0 90.5 64.4 - 49.8 - 67.0 -

For ImageNet-1k, we also report results where the priming samples are selected to be similar (i.e. close in a vector space) to the queried instance. This is the Retrieval-based In-Context Example Selection (RICES in short) approach introduced by Yang et al. (2021).

Model Shots Support set size Shots selection ImageNet-1k
Top-1 acc.
IDEFICS 80B 16 1K Random 65.4
16 5K RICES 72.9

IDEFICS 9B 16 1K Random 53.5
16 5K RICES 64.5

Fairness Evaluations:

Model Shots FairFaceGender
acc.
FairFaceRace
acc.
FairFaceAge
acc.
IDEFICS 80B 0 95.8 64.1 51.0
4 95.2 48.8 50.6
8 95.5 52.3 53.1
16 95.7 47.6 52.8
32 95.7 36.5 51.2

IDEFICS 9B 0 94.4 55.3 45.1
4 93.9 35.3 44.3
8 95.4 44.7 46.0
16 95.8 43.0 46.1
32 96.1 35.1 44.9

IDEFICS instruct

Similarly to the base IDEFICS models, we performed checkpoint selection to stop the training. Given that M3IT contains in the training set a handful of the benchmarks we were evaluating on, we used MMBench as a held-out validation benchmark to perform checkpoint selection. We select the checkpoint at step 3'000 for IDEFICS-80b-instruct and at step 8'000 for IDEFICS-9b-instruct.

Idefics Instruct Evaluations:

Model Shots VQAv2*
OE VQA acc.
OKVQA*
OE VQA acc.
TextVQA*
OE VQA acc.
VizWiz
OE VQA acc.
TextCaps*
CIDEr
Coco*
CIDEr
NoCaps
CIDEr
Flickr
CIDEr
VisDial*
NDCG
HatefulMemes
ROC AUC
ScienceQA*
acc.
RenderedSST2
acc.
Winoground
group (text/image)
IDEFICS 80B Instruct 0 37.4 (-22.7) 36.9 (-8.2) 32.9 (1.9) 26.2 (-9.8) 76.5 (19.7) 117.2 (25.4) 104.5 (39.5) 65.3 (11.7) 49.3 (0.4) 58.9 (-1.7) 69.5 (0.5) 67.3 (6.8) 9.2/20.0/25.0 (1.2/1.2/2.5)
4 67.5 (4.0) 54.0 (1.7) 37.8 (3.5) 39.8 (-0.7) 71.7 (-1.0) 116.9 (6.6) 104.0 (4.4) 67.1 (-6.6) 48.9 (0.5) 57.5 (-0.3) 60.5 (1.6) 65.5 (-1.1) -
8 68.1 (3.4) 56.9 (1.8) 38.2 (2.5) 44.8 (-1.3) 72.7 (-4.9) 116.8 (2.5) 104.8 (-0.9) 70.7 (-5.9) 48.2 (0.3) 58.0 (-0.2) - 68.6 (0.8) -
16 68.6 (3.2) 58.2 (1.4) 39.1 (2.8) 48.7 (0.4) 77.0 (-4.5) 120.5 (4.0) 107.4 (0.4) 76.0 (-4.1) - 56.4 (0.7) - 70.1 (2.4) -
32 68.8 (2.9) 59.5 (1.8) 39.3 (2.6) 51.2 (1.2) 79.7 (-3.0) 123.2 (6.5) 108.4 (1.0) 78.4 (-2.7) - 54.9 (2.4) - 70.5 (3.2) -

IDEFICS 9B Instruct 0 65.8 (15.0) 46.1 (7.6) 29.2 (3.3) 41.2 (5.6) 67.1 (41.7) 129.1 (83.0) 101.1 (64.3) 71.9 (44.6) 49.2 (0.5) 53.5 (1.8) 60.6 (16.4) 62.8 (1.0) 5.8/20.0/18.0 (0.8/2.2/-2.8)
4 66.2 (10.8) 48.7 (3.3) 31.0 (3.4) 39.0 (2.1) 68.2 (8.2) 128.2 (35.1) 100.9 (19.6) 74.8 (15.0) 48.9 (1.0) 51.8 (1.1) 53.8 (16.4) 60.6 (-1.8) -
8 66.5 (10.2) 50.8 (3.1) 31.0 (3.5) 41.9 (1.6) 70.0 (6.7) 128.8 (31.8) 101.5 (14.8) 75.5 (13.6) 48.2 (0.6) 51.7 (0.6) - 61.3 (-4.9) -
16 66.8 (9.8) 51.7 (3.3) 31.6 (3.7) 44.8 (2.3) 70.2 (2.7) 128.8 (29.1) 101.5 (12.2) 75.8 (11.4) - 51.7 (0.7) - 63.3 (-4.6) -
32 66.9 (9.0) 52.3 (2.7) 32.0 (3.7) 46.0 (2.2) 71.7 (3.6) 127.8 (29.8) 101.0 (10.5) 76.3 (11.9) - 50.8 (1.0) - 60.9 (-6.1) -

*Starred evaluations are also part of the intsruction data mix

Fairness Evaluations:

Model Shots FairFaceGender
acc.
FairFaceRace
acc.
FairFaceAge
acc.
IDEFICS 80B Instruct 0 95.7 63.4 47.1
4 95.6 51.4 48.3
8 95.8 51.0 51.1
16 96.1 47.6 51.8
32 96.2 36.8 50.3

IDEFICS 9B Instruct 0 92.7 59.6 43.9
4 95.2 43.3 38.7
8 95.8 51.7 40.1
16 96.1 58.9 41.7
32 96.1 59.7 44.8

Technical Specifications

Hardware

The IDEFICS models were trained on an AWS SageMaker cluster using at the maximum 64 nodes of 8x80GB A100 GPUs (512 GPUs total). The cluster uses the current EFA network. IDEFICS-80b was trained for approximately 672 node hours. IDEFICS-80b-instruct was trained for approximately 3 days on 48 nodes.

Software

The training software is built on top of HuggingFace Transformers + Accelerate, and DeepSpeed ZeRO-3 for training, and WebDataset for data loading.

Bias, Risks, and Limitations

Significant research has explored bias and fairness issues with language models (see, e.g., Sheng et al. (2021) and Bender et al. (2021)). As a derivative of such a language model, IDEFICS can produce texts that include disturbing and harmful stereotypes across protected classes; identity characteristics; and sensitive, social, and occupational groups. Moreover, IDEFICS can produce factually incorrect texts, and should not be relied on to produce factually accurate information.

Here are a few examples of outputs that could be categorized as factually incorrect, biased, or offensive: TODO: give 4/5 representative examples

To measure IDEFICS's ability to recognize socilogical (TODO: find a better adjective) attributes, we evaluate the model on FairFace... TODO: include FairFace numbers

License

The model is built on top of of two pre-trained models: laion/CLIP-ViT-H-14-laion2B-s32B-b79K and huggyllama/llama-65b. The first was released under an MIT license, while the second was released under a specific noncommercial license focused on research purposes. As such, users should comply with that license by applying directly to Meta's form.

We release the additional weights we trained under an MIT license.

Citation

BibTeX:

@misc{laurençon2023obelisc,
      title={OBELISC: An Open Web-Scale Filtered Dataset of Interleaved Image-Text Documents},
      author={Hugo Laurençon and Lucile Saulnier and Léo Tronchon and Stas Bekman and Amanpreet Singh and Anton Lozhkov and Thomas Wang and Siddharth Karamcheti and Alexander M. Rush and Douwe Kiela and Matthieu Cord and Victor Sanh},
      year={2023},
      eprint={2306.16527},
      archivePrefix={arXiv},
      primaryClass={cs.IR}
}

Model Card Authors

V, i, c, t, o, r, ,, , S, t, a, s, ,, , X, X, X

Model Card Contact

Please open a discussion on the Community tab!