idefics2-8b-ft-docvqa-lora
is a fine-tuned version of the
HuggingFaceM4/idefics2-8b
model, specifically trained on the
doc-vqa
dataset published by Crédit Mutuel Arkéa. Optimized using the
LoRA
(Low-Rank Adaptation) method, this model was designed to enhance performance while reducing the complexity of fine-tuning.
During training, particular attention was given to linguistic balance, with a focus on french. The model was exposed to a predominantly french context, with a 70% likelihood of interacting with french questions/answers for a given image. It operates exclusively in bfloat16 precision, optimizing computational resources. The entire training process took 3 days on a single A100 40GB.
Thanks to its multilingual specialization and emphasis on french, this model excels in francophone environments, while also performing well in english. It is especially suited for tasks that require the analysis and understanding of complex documents, such as extracting information from forms, invoices, reports, and other text-based documents in a visual question-answering context.
Model Details
Model Description
Developed by:
Loïc SOKOUDJOU SONAGU and Yoann SOLA
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"if torch.cuda.is_available() else"cpu"# Note that passing the image urls (instead of the actual pil images) to the processor is also possible
image = load_image("https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg")
model_id = "cmarkea/idefics2-8b-ft-docvqa-lora"
processor = AutoProcessor.from_pretrained("HuggingFaceM4/idefics2-8b", do_image_splitting=False)
model = AutoModelForVision2Seq.from_pretrained(
model_id,
torch_dtype=torch.bfloat16,
).to(device)
# Create inputs
messages = [
{
"role": "user",
"content": [
{"type": "image"},
{"type": "text", "text": "What do we see in this image?"},
]
}
]
prompt = processor.apply_chat_template(messages, add_generation_prompt=True)
inputs = processor(text=prompt, image=image, return_tensors="pt")
inputs = {k: v.to(device) for k, v in inputs.items()}
# Generatewith torch.inference_mode():
generated_ids = model.generate(**inputs, max_new_tokens=500)
generated_texts = processor.batch_decode(generated_ids, skip_special_tokens=True)
print(generated_texts)
Results
By following the
LLM-as-Juries
evaluation method, the following results were obtained using three judge models (GPT-4o, Gemini1.5 Pro and Claude 3.5-Sonnet). This metric was adapted to the VQA context, with clear criteria for each score (0 to 5) to ensure the highest possible precision in meeting expectations.
idefics2-8b-ft-docvqa-lora
and
paligemma-3b-ft-docvqa-896-lora
demonstrate equivalent performance despite having different model sizes.
idefics2-8b-ft-docvqa-lora huggingface.co is an AI model on huggingface.co that provides idefics2-8b-ft-docvqa-lora's model effect (), which can be used instantly with this cmarkea idefics2-8b-ft-docvqa-lora model. huggingface.co supports a free trial of the idefics2-8b-ft-docvqa-lora model, and also provides paid use of the idefics2-8b-ft-docvqa-lora. Support call idefics2-8b-ft-docvqa-lora model through api, including Node.js, Python, http.
idefics2-8b-ft-docvqa-lora huggingface.co is an online trial and call api platform, which integrates idefics2-8b-ft-docvqa-lora's modeling effects, including api services, and provides a free online trial of idefics2-8b-ft-docvqa-lora, you can try idefics2-8b-ft-docvqa-lora online for free by clicking the link below.
cmarkea idefics2-8b-ft-docvqa-lora online free url in huggingface.co:
idefics2-8b-ft-docvqa-lora is an open source model from GitHub that offers a free installation service, and any user can find idefics2-8b-ft-docvqa-lora on GitHub to install. At the same time, huggingface.co provides the effect of idefics2-8b-ft-docvqa-lora install, users can directly use idefics2-8b-ft-docvqa-lora installed effect in huggingface.co for debugging and trial. It also supports api for free installation.
idefics2-8b-ft-docvqa-lora install url in huggingface.co: