--- base_model: HuggingFaceM4/idefics2-8b library_name: peft license: apache-2.0 datasets: - cmarkea/doc-vqa language: - fr - en pipeline_tag: visual-question-answering --- # idefics2-8b-ft-docvqa-lora **idefics2-8b-ft-docvqa-lora** is a fine-tuned version of the **[HuggingFaceM4/idefics2-8b](https://huggingface.co/HuggingFaceM4/idefics2-8b)** model, specifically trained on the **[doc-vqa](https://huggingface.co/datasets/cmarkea/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 - **Model type:** Multi-modal model (image+text) - **Language(s) (NLP):** French, English - **License:** Apache 2.0 - **Finetuned from model:** [HuggingFaceM4/idefics2-8b](https://huggingface.co/HuggingFaceM4/idefics2-8b) ## Usage Model usage is simple via `transformers` API ```python 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()} # Generate with 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](https://arxiv.org/abs/2404.18796)** 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. ![constellation](https://i.postimg.cc/t4tjhy6b/constellation-0.png) **idefics2-8b-ft-docvqa-lora** and **paligemma-3b-ft-docvqa-896-lora** demonstrate equivalent performance despite having different model sizes. ## Citation ```bibtex @online{SOSoIdefics2, AUTHOR = {Loïc SOKOUDJOU SONAGU and Yoann SOLA}, URL = {https://huggingface.co/cmarkea/idefics2-8b-ft-docvqa-lora}, YEAR = {2024}, KEYWORDS = {Multimodal ; VQA}, } ```