search
HomeTechnology peripheralsAIECCV 2024|Did you really see it, or did you think you saw it? The over-reliance of large multi-modal models on text pre-training knowledge should be resolved

ECCV 2024|是真看到了,还是以为自己看到了?多模态大模型对文本预训练知识的过度依赖该解决了
The AIxiv column is a column where this site publishes academic and technical content. In the past few years, the AIxiv column of this site has received more than 2,000 reports, covering top laboratories from major universities and companies around the world, effectively promoting academic exchanges and dissemination. If you have excellent work that you want to share, please feel free to contribute or contact us for reporting. Submission email: liyazhou@jiqizhixin.com; zhaoyunfeng@jiqizhixin.com

Pi Renjie, the first author of this article, is a third-year doctoral student at Hong Kong University of Science and Technology, studying under Professor Zhang Tong and Professor Zhou Xiaofang. Previously received a bachelor's degree in computer engineering from the University of Hong Kong. His research interests include multimodal large language models, data-centric artificial intelligence, and automated machine learning.

With the advancement of large language models (LLMs), multimodal large language models (MLLMs) are developing rapidly. They use pre-trained visual encoders to process images, and input images to LLMs as token embeddings along with text information, thus extending the model's conversational capabilities for processing image inputs. This improvement in capabilities brings possibilities for a variety of potential application areas such as autonomous driving and medical assistants.

Although MLLMs have excellent image and text understanding capabilities, they still suffer from errors or hallucinations, generating responses that do not match the input image, such as answering non-existent objects or misidentifying attributes. We believe that the imbalance of data volume and training time in different training stages of multi-modal large models is one of the main reasons for this type of bias. The language modules of large multi-modal models often use massive text data for pre-training, while the modal alignment stage uses smaller data size and shorter training time.

In order to solve the above problems, we propose a preference alignment method - Bootstrapped Preference Optimization (BPO), which can alleviate the hallucination phenomenon of multi-modal large models while improving the visual understanding ability of the model.

ECCV 2024|是真看到了,还是以为自己看到了?多模态大模型对文本预训练知识的过度依赖该解决了

  • Paper title: Strengthening Multimodal Large Language Model with Bootstrapped Preference Optimization
  • Paper link: https://arxiv.org/pdf/2403.08730
  • Code link: https://github. com/pipilurj/bootstrapped-preference-optimization-BPO-

ECCV 2024|是真看到了,还是以为自己看到了?多模态大模型对文本预训练知识的过度依赖该解决了

Specifically, we designed two methods to automatically construct negative samples for preference learning, exposing the over-reliance of multi-modal models on training. Afterwards, we use the original data annotations as positive samples to fine-tune the preferences of the multi-modal model. Overall, our main contributions are:
1. We propose a new perspective that transforms the multi-modal alignment problem into a preference learning task, where pre-training bias and visual understanding ability are treated as old and new preferences;

2. We introduce a method to automate the construction of large-scale preference datasets. Through this method, a large number of negative samples with pre-training bias information can be constructed;

3. A large number of experiments have proven that our method can effectively improve the cognitive ability of multi-modal large models for images, training The latter model has improved performance in multiple benchmarks.
Scalable preference dataset construction

For positive examples of preference datasets, there are already many ready-made datasets designed for supervised fine-tuning, such as high-quality annotated question answering generated by LlaVA and MiniGPT4 Data,ShareGPTV leverages the powerful GPT4-V as a tool to,generate high-quality captions for images. We use these annotated public data sets as positive responses in the preference data set to avoid expensive manual annotation while ensuring high-quality data pairs.

In order to collect negative response data that reflects pre-training bias, we propose two methods.

a. Weaken image prompts: We add noise to the image data in the preference data set to destroy the image features and make the multi-modal large model more inclined to the original pre-trained distribution when answering. The resulting Error responses will contain the inherent bias of the LLM module. As can be seen from the figure, by adding different levels of noise to the image, the probability of the correct answer appearing is smaller, and the probability of the answer with pre-training bias appearing is greater.

ECCV 2024|是真看到了,还是以为自己看到了?多模态大模型对文本预训练知识的过度依赖该解决了

b. Error injection: We require the large language model corresponding to the multi-modal large model to directly rewrite the response, and require the model to generate an incorrect answer that is similar but not exactly the same as the answer.
Next, we use direct preference optimization (DPO) to optimize the multi-modal model:

ECCV 2024|是真看到了,还是以为自己看到了?多模态大模型对文本预训练知识的过度依赖该解决了

Experimental evaluation

We use the LLaVA model (LLaVA-7B) fine-tuned by BPO -BPO and LLaVA-13B-BPO) tested on MM-Vet, LLaVA-Wild and Object HalBench. MM-Vet and LlaVA-Bench are lists specifically used to measure the comprehensive capabilities of models, while Object HalBench is used to evaluate the visual credibility of multi-modal large models.

Experimental results show that the model fine-tuned by BPO takes the lead in all tasks on the three benchmark lists. On most tasks, LLaVA-7B-BPO even outperforms the untuned LLaVa1.5-13B model.

ECCV 2024|是真看到了,还是以为自己看到了?多模态大模型对文本预训练知识的过度依赖该解决了

We also compare BPO with supervised fine-tuning training (SFT). We fine-tune the model by directly using positive samples from the dataset as supervised data. Experiments show that multi-modal large models fine-tuned by BPO perform better than SFT fine-tuning on different categories of subtasks.

ECCV 2024|是真看到了,还是以为自己看到了?多模态大模型对文本预训练知识的过度依赖该解决了

In terms of qualitative results, we compared the performance of multi-modal large models before and after BPO fine-tuning. We found that the BPO-finetuned model produced answers that were more faithful to the image input and contained less erroneous information.

ECCV 2024|是真看到了,还是以为自己看到了?多模态大模型对文本预训练知识的过度依赖该解决了

For more research details, please refer to the original paper.

The above is the detailed content of ECCV 2024|Did you really see it, or did you think you saw it? The over-reliance of large multi-modal models on text pre-training knowledge should be resolved. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
The Hidden Dangers Of AI Internal Deployment: Governance Gaps And Catastrophic RisksThe Hidden Dangers Of AI Internal Deployment: Governance Gaps And Catastrophic RisksApr 28, 2025 am 11:12 AM

The unchecked internal deployment of advanced AI systems poses significant risks, according to a new report from Apollo Research. This lack of oversight, prevalent among major AI firms, allows for potential catastrophic outcomes, ranging from uncont

Building The AI PolygraphBuilding The AI PolygraphApr 28, 2025 am 11:11 AM

Traditional lie detectors are outdated. Relying on the pointer connected by the wristband, a lie detector that prints out the subject's vital signs and physical reactions is not accurate in identifying lies. This is why lie detection results are not usually adopted by the court, although it has led to many innocent people being jailed. In contrast, artificial intelligence is a powerful data engine, and its working principle is to observe all aspects. This means that scientists can apply artificial intelligence to applications seeking truth through a variety of ways. One approach is to analyze the vital sign responses of the person being interrogated like a lie detector, but with a more detailed and precise comparative analysis. Another approach is to use linguistic markup to analyze what people actually say and use logic and reasoning. As the saying goes, one lie breeds another lie, and eventually

Is AI Cleared For Takeoff In The Aerospace Industry?Is AI Cleared For Takeoff In The Aerospace Industry?Apr 28, 2025 am 11:10 AM

The aerospace industry, a pioneer of innovation, is leveraging AI to tackle its most intricate challenges. Modern aviation's increasing complexity necessitates AI's automation and real-time intelligence capabilities for enhanced safety, reduced oper

Watching Beijing's Spring Robot RaceWatching Beijing's Spring Robot RaceApr 28, 2025 am 11:09 AM

The rapid development of robotics has brought us a fascinating case study. The N2 robot from Noetix weighs over 40 pounds and is 3 feet tall and is said to be able to backflip. Unitree's G1 robot weighs about twice the size of the N2 and is about 4 feet tall. There are also many smaller humanoid robots participating in the competition, and there is even a robot that is driven forward by a fan. Data interpretation The half marathon attracted more than 12,000 spectators, but only 21 humanoid robots participated. Although the government pointed out that the participating robots conducted "intensive training" before the competition, not all robots completed the entire competition. Champion - Tiangong Ult developed by Beijing Humanoid Robot Innovation Center

The Mirror Trap: AI Ethics And The Collapse Of Human ImaginationThe Mirror Trap: AI Ethics And The Collapse Of Human ImaginationApr 28, 2025 am 11:08 AM

Artificial intelligence, in its current form, isn't truly intelligent; it's adept at mimicking and refining existing data. We're not creating artificial intelligence, but rather artificial inference—machines that process information, while humans su

New Google Leak Reveals Handy Google Photos Feature UpdateNew Google Leak Reveals Handy Google Photos Feature UpdateApr 28, 2025 am 11:07 AM

A report found that an updated interface was hidden in the code for Google Photos Android version 7.26, and each time you view a photo, a row of newly detected face thumbnails are displayed at the bottom of the screen. The new facial thumbnails are missing name tags, so I suspect you need to click on them individually to see more information about each detected person. For now, this feature provides no information other than those people that Google Photos has found in your images. This feature is not available yet, so we don't know how Google will use it accurately. Google can use thumbnails to speed up finding more photos of selected people, or may be used for other purposes, such as selecting the individual to edit. Let's wait and see. As for now

Guide to Reinforcement Finetuning - Analytics VidhyaGuide to Reinforcement Finetuning - Analytics VidhyaApr 28, 2025 am 09:30 AM

Reinforcement finetuning has shaken up AI development by teaching models to adjust based on human feedback. It blends supervised learning foundations with reward-based updates to make them safer, more accurate, and genuinely help

Let's Dance: Structured Movement To Fine-Tune Our Human Neural NetsLet's Dance: Structured Movement To Fine-Tune Our Human Neural NetsApr 27, 2025 am 11:09 AM

Scientists have extensively studied human and simpler neural networks (like those in C. elegans) to understand their functionality. However, a crucial question arises: how do we adapt our own neural networks to work effectively alongside novel AI s

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)