Model reference · open weights
Idefics3-Llama3 is an open-weight language model from HuggingFaceM4. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | HuggingFaceM4 |
|---|---|
| Type | Language models |
| Task | Vision + text |
| Parameters (lead) | 8.5B |
| Context | 128k tokens |
| Runs with | transformers |
| Released | 2024-08-05 |
| Popularity | 92k downloads / month |
| Licence | Open weights |
About
Transformers version: >4.46.
Idefics3 is an open multimodal model that accepts arbitrary sequences of image and text inputs and produces text outputs. The model can answer questions about images, describe visual content, create stories grounded on multiple images, or simply behave as a pure language model without visual inputs. It improves upon Idefics1 and Idefics2, significantly enhancing capabilities around OCR, document understanding and visual reasoning.
We release the checkpoints under the Apache 2.0.
Idefics3-8B can be used to perform inference on multimodal (image + text) tasks in which the input is composed of a text query along with one (or multiple) image(s). Text and images can be arbitrarily interleaved. That includes image captioning, visual question answering, etc. These model does not support image generation.
The post-training of Idefics3-8B involves only a supervised fine-tuning stage, without RLHF alignment. As a result, the model may produce short answers or require prompt iterations to fully address the user's request. Adding a prefix to the assistant's response, such as "Let's fix this step by step" has been found to effectively influence the generated output.
To fine-tune Idefics3-8B on a specific task, we provide a fine-tuning tutorial.
Other resources for the fine-tuning of Idefics2 (can easily be adapted to Idefics3):
Idefics3 demonstrates a great improvement over Idefics2, especially in document understanding tasks. It serves as a strong foundation for various use-case specific fine-tunings.
| Model | MMMU (val) | MathVista (test) | MMStar (val) | DocVQA (test) | TextVQA (val) |
|---|---|---|---|---|---|
| Idefics2-8B | 45.2 | 52.2 | 49.5 | 74.0 | 73.0 |
| Idefics3-8B | 46.6 | 58.4 | 55.9 | 87.7 | 74.9 |
Idefics3 introduces several changes compared to Idefics2:
More details about the training of the model is available in our technical report.
This section shows snippets of code for generation for Idefics3-8B.
import requests
import torch
from PIL import Image
from io import BytesIO
from transformers import AutoProcessor, AutoModelForVision2Seq
from transformers.image_utils import load_image
DEVICE = "cuda:0"
# Note that passing the image urls (instead of the actual pil images) to the processor is also possible
image1 = load_image("https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg")
image2 = load_image("https://cdn.britannica.com/59/94459-050-DBA42467/Skyline-Chicago.jpg")
image3 = load_image("https://cdn.britannica.com/68/170868-050-8DDE8263/Golden-Gate-Bridge-San-Francisco.jpg")
processor = AutoProcessor.from_pretrained("HuggingFaceM4/Idefics3-8B-Llama3")
model = AutoModelForVision2Seq.from_pretrained(
"HuggingFaceM4/Idefics3-8B-Llama3", torch_dtype=torch.bfloat16
).to(DEVICE)
# Create inputs
messages = [
{
"role": "user",
"content": [
{"type": "image"},
{"type": "text", "text": "What do we see in this image?"},
]
},
{
"role": "assistant",
"content": [
{"type": "text", "text": "In this image, we can see the city of New York, and more specifically the Statue of Liberty."},
]
},
{
"role": "user",
"content": [
{"type": "image"},
{"type": "text", "text": "And how about this image?"},
]
},
]
prompt = processor.apply_chat_template(messages, add_generation_prompt=True)
inputs = processor(text=prompt, images=[image1, image2], return_tensors="pt")
inputs = {k: v.to(DEVICE) for k, v in inputs.items()}
# Generate
generated_ids = model.generate(**inputs, max_new_tokens=500)
generated_texts = processor.batch_decode(generated_ids, skip_special_tokens=True)
print(generated_texts)
Text generation inference
TODO.
If your GPU allows, we first recommend loading (and running inference) in half precision (torch.float16 or torch.bfloat16).
model = AutoFrom the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys idefics3-llama3 for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (idefics3-llama3 below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"idefics3-llama3","messages":[{"role":"user","content":"Hello"}]}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.