A Comprehensive Survey and Guide to Multimodal Large Language Models in Vision–Language Tasks
Abstract
1. Introduction to Multimodal Large Language Models (MLLMs)
- Positioning relative to existing surveys. Several concurrent surveys cover overlapping ground. Yin et al. [1] provide an extensive taxonomy of MLLM architectures and training paradigms but do not include quantitative cross-model benchmark comparisons. Zhang et al. [2] focus on architectural evolution and representative models, yet omit design-space gap analysis and systematic failure mode documentation. Caffagni et al. [3] survey the broader MLLM landscape with emphasis on generative capabilities, but do not offer a self-contained tutorial path for newcomers. Our work complements these surveys by combining a pedagogical progression with original analytical contributions, as detailed below.
- Contributions of this survey. Building on this positioning, our work makes the following distinct contributions:
- End-to-end technical guide. We provide a self-contained progression from NLP foundations through MLLM architectures, training strategies, applications, and open challenges, designed to serve both as a reference for active researchers and as an accessible entry point for newcomers to the field.
- Unified empirical comparison. We compile a systematic, side-by-side benchmark comparison of fifteen major open-source and proprietary vision–language MLLMs—including recent 2024 models such as GPT-4o, Qwen2-VL, InternVL2, DeepSeek-VL, and LLaVA-OneVision—across five standardized benchmarks (VQAv2, GQA, TextVQA, MMBench, MMMU), supporting side-by-side architectural context and performance analysis (Section 2.3).
- Design-space gap analysis. We introduce a structured mapping of the Visual Encoder × LM Backbone × Connector design space (Section 6.7), identifying under-explored architectural combinations and training–strategy pairings that represent concrete opportunities for future research.
- Candid failure mode analysis. Unlike surveys that focus on aggregate benchmark scores, we document recurring failure modes of state-of-the-art multimodal assistants—including spatial reasoning errors, object hallucination, and multi-turn context loss—providing a more realistic assessment of current capabilities and limitations.
1.1. Definition and Importance of MLLMs
- Text-to-Image Generation: MLLMs can generate detailed images from textual descriptions, supporting creative workflows in areas such as graphic design and advertising. For example, a user might describe a “futuristic cityscape at sunset” and have an AI generate a corresponding image.
- Visual Question Answering: These models can analyze images and provide accurate answers to natural language questions, enhancing educational tools and accessibility technologies. For instance, an MLLM could answer questions about the contents of a photograph, such as “What breed of dog is in this image?”
- Multimodal Content Creation: MLLMs facilitate the creation of content that integrates text, visuals, and audio, such as illustrated stories or multimedia presentations. This could involve generating a coherent story with matching illustrations based on a brief prompt.
- Seamless translation between modalities (e.g., describing a photograph or generating an image from text).
- Cross-modal retrieval, where the model can find relevant images based on text queries or match sounds with visual content.
- More natural and intuitive interactions between humans and AI systems.
- Healthcare: Assisting clinicians by analyzing medical images alongside patient records and physician notes. For example, an MLLM could assist a clinician by jointly presenting evidence from a patient’s X-ray, medical history, and symptoms for human review.
- Security: Interpreting surveillance footage in conjunction with audio data to support situational awareness. This could involve analyzing video feeds and audio recordings to flag events for human review.
- E-commerce: Enhancing product searches by understanding both textual queries and visual product attributes. An MLLM could help a customer find a “blue floral summer dress” by understanding both the text description and visual characteristics of available products.
- Image captioning and visual question answering.
- Cross-modal retrieval and content generation.
- Audio–visual integration for tasks like video subtitling or lip-syncing.
- Multimodal translation, such as converting a video into a textual summary.
- Enhanced human–computer interaction through simultaneous interpretation of gestures, facial expressions, speech, and text.
- In autonomous vehicles, these models can integrate visual data from cameras with textual information from maps and traffic reports, supporting navigation and safety features. An MLLM could help a driving system interpret a road sign as one input to a broader perception and control stack.
- In scientific research, MLLMs can analyze molecular structures, research papers, and experimental data simultaneously to help researchers identify candidate compounds or literature patterns for further validation.
1.2. The Convergence of NLP and Computer Vision
- Representation learning enables joint embeddings that capture cross-modal semantic relationships, allowing models to map language and visual concepts into a shared space.
- Transfer learning allows large-scale pre-trained models to be adapted to downstream multimodal tasks with minimal task-specific data.
- Cross-modal attention extends the self-attention mechanism of transformers to selectively attend across modalities, forming the basis of modern MLLM fusion modules.
- These foundations, combined with the architectural innovations discussed in Section 2.3—visual encoders, cross-modal connectors, and large language model backbones—have enabled the current generation of MLLMs. The challenges associated with this convergence, including bias, interpretability, efficiency, and cross-modal consistency, are examined in Section 6 and Section 7.
2. Foundations and Architecture of Vision–Language MLLMs
2.1. From NLP to LLMs: A Brief Overview
- This subsection provides contextual background for readers less familiar with the NLP progression that led to modern LLMs. Readers already versed in this history may proceed directly to Section 2.2.
2.2. First-Principles Constraints on Multimodal Learning
2.3. Architecture of MLLMs
- Encoder layers: These process the input data, whether it is text tokens or visual features, and create contextualized representations.
- Decoder layers: These generate an output based on the encoded representations, often incorporating cross-attention mechanisms to attend to relevant parts of the input.
- Multi-head attention: This allows the model to attend to different aspects of the input simultaneously, enhancing its ability to capture diverse relationships in multimodal data.
- Position encodings: These are crucial for maintaining spatial or sequential information, especially important when dealing with image patches or text sequences.
- Modality-Specific Encoding: Initially, each input modality is processed through specialized encoders. For textual data, this typically involves tokenization followed by learned token embeddings or contextual representations from a language model. Visual data is typically encoded using Convolutional Neural Networks (CNNs) or Vision Transformers (ViTs) to extract salient features.
- Dimensionality Alignment: The embeddings from different modalities are often of different dimensionalities. A crucial step is to project these embeddings into a common dimensional space, usually through learnable linear transformations or more complex neural network layers.
- Joint Representation Learning: The aligned embeddings are then further processed to create a truly joint representation. This often involves attention mechanisms or fusion layers that allow the model to learn complex interactions between the modalities.
- Contrastive Learning: Many state-of-the-art MLLMs employ contrastive learning techniques during training. This approach encourages the model to produce similar embeddings for semantically related text–image pairs while pushing apart unrelated pairs in the embedding space.
- Fine-tuning for Downstream Tasks: The joint embeddings are then fine-tuned on specific downstream tasks, allowing the model to adapt its representations for particular applications while retaining the general cross-modal understanding gained during pre-training.
- Fine-grained multimodal alignment: Cross-attention facilitates precise alignment between elements of different modalities, allowing the model to capture nuanced relationships between specific words and image regions.
- Contextual understanding: By attending to relevant parts of one modality while processing the other, the model can develop a more contextual and holistic understanding of the multimodal input.
- Flexibility in handling varying input sizes: Cross-attention can naturally handle inputs of different lengths or sizes, making it suitable for processing variable-length text and images of different resolutions.
- Improved interpretability: The attention weights produced by cross-attention layers can be visualized, providing insights into which parts of an image the model focuses on when processing specific textual inputs, and vice versa.
Empirical Comparison of Vision–Language MLLMs
2.4. Training Methodologies and Data Requirements
2.5. Cross-Modal Understanding and Visual Reasoning
2.6. Multi-Image and Long-Video Reasoning
3. Training and Fine-Tuning Multimodal Large Language Models (MLLMs)
3.1. Pre-Training Strategies
3.1.1. Contrastive Learning (CLIP, ALIGN)
3.1.2. Masked Multimodal Modeling
3.1.3. Visual Question Answering (VQA) Pre-Training
3.1.4. Vision-And-Language Pre-Training (VLP)
3.2. Fine-Tuning for Specific Tasks
3.2.1. Task-Specific Datasets
3.2.2. Learning Rate Scheduling and Optimization
3.2.3. Multitask Fine-Tuning
3.2.4. Cross-Modal Tasks
3.3. Few-Shot and Zero-Shot Learning in Multimodal Large Language Models
3.3.1. Few-Shot Learning
3.3.2. Zero-Shot Learning
3.3.3. Transfer Learning
3.4. Instruction Tuning for MLLMs
3.4.1. Natural Language Instructions
3.4.2. Multimodal Instruction Tuning
3.4.3. Improving Generalization
3.4.4. Applications of Instruction Tuning
3.4.5. Illustrative Overview of Instruction Tuning
4. Applications of MLLMs in Vision–Language Tasks
4.1. Image Captioning and VQA
4.1.1. Image Captioning: Overview and Advances
- OSCAR (Object-Semantics Aligned Pre-training): Enhances captioning by aligning object tags with textual descriptions during pre-training. This leads to better object recognition and semantically rich captions [84].
- VIVO (Visual Vocabulary Pre-training): Introduces a vocabulary of visual concepts, helping models describe objects that are underrepresented or absent in captioning training data [86].
- Dense Captioning: Generates region-specific captions for different parts of an image, supporting detailed image understanding and retrieval [85].
- Generative Adversarial Networks (GANs): Have been explored for refining caption fluency and coherence through adversarial training, although most recent captioning advances rely on transformer-based vision–language pre-training [87].
- Meta-Learning Approaches: Aim to help models adapt to new captioning or VQA tasks with limited data, especially when task-specific training examples are scarce [88].
4.1.2. Visual Question Answering (VQA): Overview and Advances
- MCAN (Multimodal Co-Attention Network): Uses co-attention mechanisms to fuse image and text features, resulting in improved understanding of image–question relationships [90].
- Knowledge-Enhanced VQA Models: Incorporate external knowledge graphs for commonsense reasoning, improving performance on complex VQA tasks [91].
4.1.3. Applications of Image Captioning and VQA
- Assistive Technologies Image captioning and VQA can support assistive technologies for blind and low-vision users by turning visual inputs into spoken descriptions, OCR results, or question-driven responses. For instance, applications such as Microsoft Seeing AI use AI-powered visual recognition and narration to describe objects, people, scenes, and text in a user’s environment. VQA-style interaction can further allow users to ask targeted questions such as “What is the name on the sign?” or “Is there anyone near me?”, but these systems should be understood as assistive aids whose outputs require error-tolerant interaction design rather than as perfectly reliable perception systems [92].
- Autonomous Systems and Vehicles: In autonomous-driving research, captioning and VQA-style modules can provide interpretable summaries of road conditions, obstacles, pedestrians, and traffic signs as auxiliary inputs for monitoring, debugging, or human–vehicle interaction. They should not be framed as stand-alone safety controllers: deployed driving stacks still require specialized perception, prediction, planning, redundancy, and verification before visual-language outputs can influence safety-critical decisions.
- Medical Imaging and Healthcare: In medical imaging, research prototypes have demonstrated that MLLM-based captioning systems can draft preliminary descriptive reports from X-rays, CT scans, and MRIs [56]. Such systems are being investigated as a way to support—rather than replace—radiologists, with the goal of accelerating report drafting and surfacing candidate findings for expert review. We emphasize, however, that the published evidence comes from retrospective evaluations on benchmark datasets; current systems have not been prospectively validated in clinical workflows, their error characteristics under distribution shift are poorly understood, and claims of “high accuracy” or workload reduction must therefore be interpreted as early research findings rather than properties of deployed medical devices. Research-stage tools in this space (e.g., CaptionHealth) operate in this same pre-deployment regime. VQA models are similarly being explored for question-driven interrogation of medical images (“What abnormalities are present?”), again with the aim of supporting clinician decision-making rather than functioning as autonomous diagnostic agents.
- Content Moderation and Search Engines: On social media and search platforms, multimodal classifiers and captioning models can help tag images, detect text in images, and prioritize potentially objectionable content for review. VQA-style querying may further support human moderators by asking targeted questions such as “Does this image contain violence?” or “Is there inappropriate text in the background?”, but moderation decisions still depend on policy context, human review, and error monitoring.
4.2. Visual Storytelling and Scene Understanding
4.2.1. Technologies for Visual Storytelling and Scene Understanding
4.2.2. Applications
4.3. MLLM Applications in Content Creation and Editing
4.3.1. Technologies Behind MLLM in Content Creation
4.3.2. Applications in Content Creation and Editing
- Multimodal Content Generation: MLLMs and adjacent generative systems allow artists and creators to draft images, text, and video content from simple inputs. These models can interpret text prompts to create visual art, design characters, or prototype environments for video games and films. This application supports multimedia storytelling, where different types of content can be integrated into a common creative workflow [101,102]. MLLMs are also used in marketing and social media to help draft personalized content from user preferences and trends [96].
- Real-Time Video and Image Editing: MLLMs and multimodal editing systems are advancing video and image editing by enabling natural-language or sketch-guided modifications. Systems like ExpressEdit allow users to sketch over a video frame or provide verbal commands to alter specific elements in a scene [103]. Related tools can support color correction, object tracking, and scene enhancement, although latency and edit fidelity vary by model, hardware, and video length [104].
- Multimodal Script and Article Drafting: Text-only drafting becomes multimodal when paired with visual inputs such as storyboards, reference images, video outlines, product photographs, or design briefs. In these workflows, MLLMs and adjacent tools can produce structured drafts that human editors fact-check, revise, and align with the visual source material [105,106].
- Collaborative Content Creation: Collaborative content development tools powered by MLLMs allow teams to simultaneously work on different aspects of a project, from visual elements to text descriptions. Cloud-based platforms enable real-time collaboration, ensuring that all contributors are working on the most up-to-date version of the project [107]. In interactive design, tools like U-CREATE help creators develop augmented reality experiences and location-based services, streamlining the authoring process [108].
- Mobile Multimedia Editing: Mobile applications integrating MLLMs have made content creation accessible to a broader audience. These apps allow users to edit and generate multimedia content on their devices using intuitive commands and gestures. By automating some technical aspects of editing, MLLM-powered mobile apps can help social media creators and small businesses produce usable drafts without advanced editing skills [109].
- Content Repurposing and Multilingual Adaptation: MLLMs can assist in repurposing content for different platforms and adapting it to various languages. Whether reformatting a blog post for social media or translating a promotional video into multiple languages, these systems can draft adapted content that human reviewers then check for meaning, tone, and cultural nuance [105]. For global marketing campaigns, MLLMs can support localization workflows, but they do not remove the need for regional review [110].
- Creative Personalization: MLLMs can support content personalization based on user behavior and preferences. For example, recommendation or marketing systems may use multimodal models to analyze viewing habits, likes, and social trends [110]. This application is useful in e-commerce, where product descriptions and promotional materials can be adapted to user segments, subject to privacy and fairness constraints [102].
- Dynamic Multimedia Creation: MLLMs can dynamically generate multimedia presentations by combining textual, visual, and audio elements. This capability is particularly useful in industries like education and training, where interactive and adaptive content is essential for engaging users. In educational technology, MLLMs assist in creating lesson plans, video tutorials, and interactive learning modules that adapt to the learner’s pace and preferences [106].
4.4. MLLM Applications in Cross-Modal Retrieval and Search
4.4.1. Technological Foundations of Cross-Modal Retrieval
4.4.2. Applications of MLLMs in Cross-Modal Retrieval and Search
- Image–Text Retrieval: One of the most widespread applications of MLLMs in cross-modal retrieval is the search for images based on textual queries or vice versa. This has applications in areas such as e-commerce, where users can search for products using images or text descriptions. Models like CLIP map images and text into the same latent space, making it possible to retrieve images that semantically match the input text [93]. Advanced models also allow retrieval of more abstract visual concepts, such as emotion or style, based on text queries.
- Video–Audio–Text Retrieval: Cross-modal retrieval extends to the video and audio domains as well, with applications in multimedia search engines and content recommendation systems. For example, users can retrieve relevant video clips by providing a text description or even an audio snippet. Systems like Video-LLaMA and Speech2Text search can match video content with textual or spoken queries, allowing for accurate retrieval in large multimedia databases [112,113]. This has significant implications for media platforms, allowing users to discover video content based on both audio and text inputs.
- Generation from Cross-Modal Prompts: Generative models complement retrieval by enabling systems to create new content from user queries. For example, DALL-E and similar models allow users to generate images from detailed textual descriptions, while other systems generate music or video content from text-based prompts. This generative paradigm should be distinguished from retrieval: instead of finding existing content, users synthesize a new artifact that still requires evaluation for fidelity, originality, and safety [1,114].
- Multi-Lingual and Cross-Lingual Retrieval: MLLMs can support cross-lingual retrieval when their text, speech, and visual components are trained or aligned on multilingual data. Such systems may retrieve multimedia content across languages directly through multilingual embeddings or indirectly through translation and reranking. This is useful in global applications, where users may search in one language and receive content from another [93,112]. For instance, a user could search using an English query and retrieve relevant French or Spanish media files, provided the system has adequate multilingual coverage.
- Cross-Modal Music Retrieval: Cross-modal retrieval extends beyond text, images, and video into music as well. Researchers have developed systems that enable users to find musical pieces based on descriptions of melodies, moods, or even visual stimuli such as album covers or sheet music [114]. These systems can enhance music recommendation platforms, allowing users to find music across various modalities, leading to more immersive listening experiences.
- Lecture Video Retrieval: Cross-modal retrieval systems are becoming increasingly important in educational technology. For example, specialized multimodal lecture models have been applied to index and retrieve lecture videos based on both spoken content and text on slides [113]. This allows students to find relevant portions of lecture videos by searching with either keywords or topics, improving content retrieval in educational platforms.
- Content-Based Image Retrieval in Medical Domains: In the medical domain, cross-modal retrieval is being explored as a way to link textual descriptions (e.g., symptoms or diagnoses) with relevant medical images such as X-rays or MRIs. MLLMs trained on multimodal medical datasets have shown the potential to support—rather than replace—clinicians’ diagnostic workflows by retrieving and analyzing medical data across text and images. It is important to stress that existing systems such as RAMM [56] and the multimodal medical VQA framework of [55] are research prototypes evaluated on curated benchmark datasets; they have not yet been clinically validated and are therefore best understood as early-stage capabilities rather than deployed systems.
- Interactive Search in AR/VR: Augmented reality (AR) and virtual reality (VR) applications are using cross-modal retrieval to enable more interactive and immersive experiences. Users can search for virtual objects, spaces, or experiences by describing them with words or gestures, and MLLMs process these inputs to retrieve or generate corresponding virtual environments or objects. This is particularly useful in gaming, training simulations, and virtual tourism [93].
4.5. MLLMs in Enhancing Accessibility for People with Disabilities
4.5.1. Technological Foundations
4.5.2. Applications of MLLMs in Accessibility
- Text-to-Speech and Speech-to-Text Systems: Multimodal systems can improve speech recognition and generation by combining audio with visual or textual context. Models trained on large speech and text datasets can transcribe spoken content into text and synthesize speech from text, but accuracy varies with accent, noise, domain vocabulary, and speaker overlap. Real-time subtitles can improve access to live presentations, videos, and other media content, while still requiring fallback mechanisms when latency or transcription errors occur [115].
- Visual Assistance for the Blind and Visually Impaired: MLLMs are being leveraged to build systems that describe the surrounding environment to blind and low-vision users. Applications like VIAssist use cameras to capture images and then provide narration or detailed descriptions of objects, people, or text present in the environment [100]. These models can identify relevant aspects of scenes and summarize key details, but they may omit hazards or hallucinate objects, so navigation-critical uses require conservative interface design and user safeguards. This technology also extends to recognizing text from images, making documents and signs more accessible [71].
- Object Detection and Recognition: MLLMs enable object recognition systems that may benefit blind, low-vision, and deaf or hard-of-hearing users. For instance, wearable devices equipped with cameras can use multimodal recognition models to identify objects and provide audio descriptions when latency and power constraints permit [93]. For deaf or hard-of-hearing users, visual object recognition can support lip-reading assistance or visual cues, but such systems remain sensitive to occlusion, lighting, and user-specific variation [96].
- Assistive Text Summarization and Captioning: For people with combined vision and hearing loss, captioning and summarization of digital content can be valuable when paired with accessible output formats. MLLMs can generate captions or summaries for events, meetings, and video content, making it easier for users to stay informed when outputs are accurate and timely [116]. They can also summarize books, articles, and documents before conversion into audio, braille, or tactile formats, but the summaries must preserve essential information and avoid unsupported simplification [112].
- Real-Time Sign Language Translation: Another important application for deaf or hard-of-hearing users is sign language recognition and translation. MLLMs trained on multimodal datasets that include sign-language video can support translation from signs into text or spoken language, facilitating communication between sign-language users and those unfamiliar with a given sign language [71]. These models must recognize hand gestures, facial expressions, body movement, signer identity, and regional variation, so current systems should be described as promising research and assistive tools rather than as universally reliable translators [71].
- Personalized Accessibility Tools: With the advancement of MLLMs, personalized accessibility tools are becoming more feasible. These tools can learn individual user preferences and adapt their output accordingly, whether by adjusting speech patterns, text formatting, or the detail level of visual descriptions [71]. Personalized accessibility can improve usability, but it also raises privacy and consent questions because adaptation often depends on sensitive user data.
5. Case Studies: MLLMs and the Surrounding Multimodal Ecosystem
5.1. Purpose and Scope of the Case Studies
- Tier A—Architecturally Multimodal MLLMs: systems whose architecture jointly reasons over visual and textual (or, in some cases, audio or action) tokens through a shared language model backbone. This tier is the primary object of our survey and includes general-purpose assistants such as GPT-4V, GPT-4o, Claude 3, and Gemini, together with the vision–language–action models used in embodied AI (RT-2, SayCan/PaLM-SayCan, ManipLLM, PaLM-E, VoxPoser, and LLM-VLMaps).
- Tier B—Adjacent Generative Systems: text-to-image and text-to-video models (Midjourney, DALL-E 3, Stable Diffusion, Imagen, Flux.1, Runway, Pika, Kling, ModelScope, and related platforms). These are mostly diffusion-based generators rather than multimodal-understanding MLLMs, but they share encoders, tokenizers, and evaluation protocols with Tier A, and are therefore included as ecosystem context.
- Tier C—Supporting Infrastructure and Retrieval Systems: vector databases, RAG frameworks, and visual or cross-modal search engines (Pinecone, Chroma, FAISS, Vespa, Weaviate, Qdrant, LangChain, the OpenAI Retrieval Plugin reference implementation [117], Speculative RAG, Google Lens, Bing Visual Search, You.com, Perplexity, MARVEL, InteR, and SPECTER). These are not MLLMs in their own right but are the components on which many multimodal applications depend, so we document them for completeness while making their role explicit.
5.2. Case Studies
5.2.1. Image Generation
- Scope: Tier B—adjacent generative systems. The systems below are text-to-image diffusion models rather than multimodal-understanding MLLMs, but they share encoders, tokenizers, and evaluation protocols with the Tier A systems discussed later.
Imagen and Flux.1
5.2.2. Search and Information Retrieval
- Scope: Tier C—retrieval and search infrastructure. The systems surveyed below combine classical information retrieval with vision and language models; most are not themselves end-to-end MLLMs but rather components of multimodal search pipelines.
MARVEL
InteR
Semantic Scholar’s SPECTER
5.2.3. Retrieval-Augmented Generation (RAG)
- Scope: Tier C—supporting infrastructure. The frameworks and vector databases below are not MLLMs themselves; they are the retrieval components that multimodal applications depend on, and we document them for completeness.
LangChain
Speculative RAG
5.2.4. Multimodal Assistants and Chatbots
- Scope: Tier A—core architecturally multimodal MLLMs. The systems below (GPT-4V, GPT-4o, Claude 3, Gemini) are the primary object of this survey: they jointly reason over visual and textual tokens through a shared language model backbone.
GPT-4V (Visual)
GPT-4o
Claude 3
Gemini
5.2.5. Video Analysis and Generation
- Scope: Tier B—adjacent generative systems. Most of the platforms below are diffusion-based text-to-video generators or AI-assisted editors rather than multimodal-understanding MLLMs; they are discussed because their encoders, training data, and evaluation conventions are closely related to those of the Tier A systems.
5.2.6. Robotics and Embodied AI
- Scope: Tier A—architecturally multimodal MLLMs extended with action. The systems below (RT-2, SayCan, PaLM-SayCan, ManipLLM, PaLM-E, VoxPoser, LLM-VLMaps) jointly reason over visual, textual, and action tokens, and are therefore within the core scope of this survey.
RT-2 (Robotic Transformer 2)
SayCan
PaLM-SayCan
ManipLLM
PaLM-E
VoxPoser
LLM-VLMap
5.2.7. Case-Study Synthesis
6. Challenges and Limitations of Multimodal Large Language Models
6.1. Model Architecture and Scalability
6.1.1. Designing Efficient Multimodal Architectures
Cross-Modal Attention Mechanisms
- Computational Complexity: Traditional attention mechanisms scale quadratically with input size, which becomes problematic for multimodal inputs. This scaling challenge is particularly acute when dealing with high-dimensional inputs such as images or video sequences combined with text. Recent work on efficient attention, such as Performer [158], offers promise but requires adaptation for multimodal settings. These adaptations must balance computational efficiency with the ability to capture nuanced cross-modal relationships.
- Modality-specific Biases: Attention weights may be biased towards certain modalities, leading to suboptimal integration. This bias can result in models that overemphasize one modality while neglecting important information from others. Kim et al. [159] proposed ViLT, which uses a single transformer for both vision and language, but balancing attention across modalities remains an open problem. Addressing these biases requires careful architectural design and training strategies that ensure equal representation and importance across all modalities.
- Long-range Dependencies: Capturing long-range dependencies across modalities is crucial but computationally expensive. These dependencies are essential for understanding complex relationships between different parts of multimodal inputs, such as connecting visual elements with their textual descriptions or understanding temporal relationships in video content. Techniques like Longformer [160] could be adapted for multimodal contexts but require careful design to handle cross-modal interactions effectively.
Modality-Specific vs. Unified Encoders
- Separate Encoders: Models like CLIP [7] use separate encoders for images and text, allowing for modality-specific pre-training. This approach enables specialized processing of each modality and can leverage existing pre-trained models. However, this approach may struggle with fine-grained cross-modal reasoning due to the potential semantic gap between different encoder spaces. The challenge lies in effectively bridging these separate representations while maintaining the benefits of specialized processing.
- Unified Encoders: Early adjacent image–text generative systems such as DALL-E [161] illustrate one route to placing text and image tokens in a shared transformer, but they should be treated as historical and adjacent examples rather than central vision–language MLLMs. More general unified-interface systems, including Unified-IO [162], are closer to the survey’s multimodal framing because they use modality-specific tokenization with shared sequence modeling. The key challenge is designing architectures that can integrate diverse modality characteristics without losing task-specific efficiency or fine-grained evidence.
- Hybrid Approaches: Recent work by [162] on Unified-IO proposes a hybrid approach, using modality-specific tokenizers followed by a shared transformer. This promises a balance between specialization and integration but introduces additional complexity. These approaches attempt to combine the benefits of both separate and unified encoders while minimizing their respective drawbacks. The challenge lies in managing the increased architectural complexity while maintaining efficient training and inference.
Scaling Laws for Multimodal Models
- Modality-specific Scaling: Work by [163] on language model scaling laws needs extension to multimodal settings. Different modalities may exhibit distinct scaling characteristics due to their inherent properties and computational requirements. Preliminary studies suggest that different modalities may have different optimal scaling relationships, necessitating careful consideration of how to allocate model capacity across modalities.
- Cross-modal Scaling: The relationship between model size and cross-modal performance is not well-understood. This relationship is particularly complex due to the interactions between different modalities and the potential for emergent capabilities as models scale. Initial studies on scaling vision–language models provide promising insights, but more comprehensive investigations are needed to fully characterize the scaling dynamics of multimodal systems.
- Dataset Scaling: The impact of dataset size and quality on MLLM performance across different tasks and modalities requires further investigation. The quality and diversity of training data play crucial roles in model performance, but the relationships between dataset characteristics and model capabilities are not yet fully understood. Diverse and high-quality multimodal datasets are essential for effective scaling, emphasizing the importance of careful data curation strategies.
6.1.2. Computational Efficiency, Memory, Energy, and Deployment Cost
Inference Optimization
- Model Compression: Quantization and pruning [164] must be calibrated across the language backbone, vision encoder, and connector. A compression setting that preserves text fluency can still degrade grounding if it distorts visual embeddings, connector projections, or cross-modal calibration.
- Hardware-aware Design: Hardware-aware MLLM serving must account for vision-encoder cost, KV-cache growth, image or frame batching, and CPU–GPU–NPU data movement. Optimizing only the transformer decoder can leave preprocessing, visual projection, or memory transfer as the dominant latency source.
- Adaptive Computation: Conditional computation [165] can be extended to choose image resolution, frame sampling rate, token pruning, or early-exit behavior according to input complexity. The challenge is to save computation without discarding visual evidence needed for spatial, temporal, or fine-grained reasoning.
Training Efficiency
- Efficient Optimization: Large-batch training and gradient accumulation must handle variable image counts, frame counts, resolutions, and text lengths. Stable optimization requires balancing modality-specific losses and preventing high-cost visual examples from dominating throughput.
- Curriculum Learning: Multimodal curricula can order data by task complexity, modality mix, resolution, or temporal length. The main difficulty is defining progression rules that improve cross-modal reasoning rather than merely making early training cheaper.
- Pre-training Strategies: Efficient pre-training objectives must balance contrastive alignment, captioning, masked multimodal modeling, and instruction-style supervision without excessive visual-token cost. Work on large-scale contrastive learning [166] remains important, but MLLMs also need objectives that preserve fine-grained grounding after connector compression.
Memory Management
- Gradient Checkpointing: Gradient checkpointing [167] should consider which visual, connector, and language activations are cheapest to recompute. The optimal policy may differ for high-resolution images, long videos, and text-heavy batches.
- Mixed Precision Training: Mixed precision training [169] can reduce memory use, but numerical sensitivity may differ across visual features, connector layers, and language tokens. Precision choices should therefore be checked for both text quality and visual grounding.
6.2. Cross-Modal Learning and Representation
6.2.1. Alignment of Different Modalities
Alignment Quality as a Consequence of First Principles
Joint Embedding Spaces
- Contrastive Learning: Methods like CLIP [7] use contrastive learning to align visual and textual representations through a self-supervised learning approach. While these methods have shown strong performance in image–text alignment, extending these approaches to more modalities and fine-grained alignments remains challenging. The challenge includes designing appropriate contrastive objectives that can handle multiple modalities simultaneously and capture fine-grained semantic relationships across modalities.
- Cross-modal Autoencoders: Techniques like multimodal autoencoders [170] aim to learn shared representations through reconstruction objectives. These approaches attempt to find common latent spaces that can capture the essential information from each modality while enabling cross-modal generation and translation. Balancing modality-specific and shared information in these models is an ongoing research direction, requiring careful consideration of architecture design and training objectives.
- Optimal Transport: Recent work by Chen et al. [171] uses optimal transport theory to align cross-domain embeddings, providing a principled framework for learning alignments between different representation spaces. Scaling these approaches to large-scale MLLMs and multiple modalities presents both opportunities and challenges. The mathematical foundations of optimal transport offer promising directions for achieving more precise and theoretically grounded cross-modal alignments, but computational scalability and adaptation to multiple modalities remain significant challenges.
Temporal Alignment in Video–Text Models
- Long-term Dependencies: Capturing long-term dependencies across modalities in video understanding tasks is computationally challenging and requires sophisticated architectural solutions. These dependencies can span seconds, minutes, or even longer periods, making it difficult to maintain relevant context over time. Approaches like hierarchical transformers [172] show promise but require further development for multimodal settings. These architectures attempt to build representations at multiple temporal scales, from fine-grained frame-level features to high-level semantic concepts that span longer durations. The challenge lies in effectively combining these hierarchical representations while maintaining computational efficiency and meaningful cross-modal relationships.
- Asynchronous Events: Dealing with asynchronous events across modalities (e.g., delayed narration in videos) requires sophisticated temporal modeling that can handle complex temporal relationships. This challenge is particularly evident in real-world scenarios where different modalities may not be perfectly synchronized or may have varying temporal granularity. Recent work on temporal attention mechanisms provides a starting point for addressing this challenge, offering ways to learn flexible temporal alignments between modalities. These mechanisms must be capable of handling varying temporal scales and maintaining coherent cross-modal understanding despite temporal misalignments.
- Efficient Video Processing: Processing high-resolution video data in MLLMs is computationally intensive, requiring careful consideration of resource utilization and efficiency. The challenge is compounded by the need to process multiple frames while maintaining temporal coherence and cross-modal relationships. Techniques like dynamic sparse attention [173] could be adapted for efficient video processing in multimodal contexts, allowing models to focus computational resources on the most relevant temporal and spatial regions. This includes developing methods for adaptive frame sampling, temporal pooling, and efficient feature extraction that preserve important temporal dynamics while reducing computational overhead.
6.2.2. Transfer Learning and Generalization
Cross-Modal Transfer
- Zero-shot Cross-modal Transfer: Enabling MLLMs to perform tasks in one modality based on knowledge from another without specific training examples is a significant challenge that requires sophisticated architectural and training approaches. Work on frozen language models for visual learning provides insights into potential approaches, but generalizing this approach to multiple modalities and tasks remains an open problem. The challenge lies in creating representations that can effectively bridge different modalities while maintaining the specific characteristics and requirements of each modality. This includes developing methods for abstract reasoning that can translate concepts learned in one modality to meaningful applications in another.
- Few-shot Learning: Developing few-shot learning techniques that effectively leverage knowledge across modalities is crucial for adaptive MLLMs that can quickly learn from limited examples. Recent work on meta-learning in multimodal contexts [70] shows promise but requires further investigation for large-scale models. The challenge involves creating learning algorithms that can effectively utilize prior knowledge across modalities to accelerate learning in new situations. This includes developing methods for efficient adaptation that can leverage cross-modal relationships while maintaining model stability and performance.
- Negative Transfer: Preventing negative transfer, where learning in one modality degrades performance in another, is a significant challenge that requires careful consideration of learning dynamics and knowledge representation. Techniques like gradient surgery could be adapted for multimodal settings to mitigate negative transfer by identifying and preventing harmful parameter updates. This includes developing methods to detect and prevent interference between modalities while maintaining beneficial knowledge transfer.
Domain Adaptation in Multimodal Settings
- Cross-modal Domain Adaptation: Developing techniques that can adapt to domain shifts in multiple modalities simultaneously is challenging due to the complex interactions between modalities and the need to maintain coherent cross-modal relationships. Recent work on multi-source domain adaptation [174] provides a foundation for addressing these challenges, but extending these approaches to large-scale MLLMs remains an open problem. This includes developing methods that can effectively handle varying degrees of domain shift across different modalities while maintaining model performance and cross-modal understanding.
- Unsupervised Multimodal Adaptation: Creating unsupervised domain adaptation techniques for multimodal data is crucial for real-world deployments where labeled data in target domains may be scarce or unavailable. Approaches like MUDA show promise in addressing this challenge but require scaling to more complex multimodal scenarios. The challenge involves developing methods that can effectively leverage unlabeled data across modalities to adapt to new domains while maintaining model performance and reliability.
- Continual Adaptation: Enabling MLLMs to continuously adapt to changing domains across modalities without forgetting previously learned knowledge is a significant challenge that requires sophisticated approaches to memory and learning. Techniques like elastic weight consolidation [175] need careful adaptation for multimodal continual learning scenarios. This includes developing methods for selective parameter updates that can preserve important knowledge while allowing for adaptation to new domains and tasks.
6.3. Model Robustness and Reliability
6.3.1. Adversarial Robustness
Cross-Modal Adversarial Attacks
- Multimodal Adversarial Examples: Creating defense mechanisms against adversarial examples that span multiple modalities is challenging due to the complex interactions between different types of inputs and the potential for attacks to exploit cross-modal dependencies. Recent work on attacks against audio–visual models highlights the complexity of cross-modal adversarial attacks and the need for sophisticated defense mechanisms. This includes developing methods that can detect and mitigate attacks that target multiple modalities simultaneously or exploit inconsistencies in cross-modal processing.
- Certified Robustness: Extending certified robustness techniques to multimodal settings is an open problem that requires new theoretical frameworks and practical implementations. Approaches such as randomized smoothing [176] provide certified robustness for unimodal classifiers, but they need adaptation to handle the complexities of multiple input modalities and their interactions. The challenge involves developing certification methods that can provide bounded, assumption-explicit guarantees about model behavior across different modalities and types of inputs.
- Transferability of Attacks: Understanding and mitigating the transferability of adversarial examples across modalities and model architectures is crucial for developing robust MLLMs. Work on cross-domain adversarial transferability by Naseer et al. [177] provides related initial evidence that perturbations can transfer across data domains and model families; analogous cross-modal transfer in MLLMs requires more comprehensive study. This includes investigating how adversarial perturbations in one modality can affect processing in other modalities and developing defense mechanisms that can handle these complex attack scenarios.
Robustness to Input Perturbations
- Visual Robustness: Developing models robust to visual noise, occlusions, and transformations is challenging and requires sophisticated approaches to maintain performance across a wide range of visual conditions. This challenge is particularly acute in real-world scenarios where lighting conditions, camera angles, and image quality can vary significantly. Techniques like adversarial training [178] need adaptation for multimodal contexts to improve visual robustness without compromising performance on clean data. This includes developing methods that can maintain cross-modal understanding even when visual inputs are degraded or partially obscured, while also ensuring that defensive mechanisms do not interfere with the model’s ability to extract meaningful features from clean inputs.
- Linguistic Variations: Addressing robustness to linguistic variations, including typos, dialects, and non-standard language use, is crucial for creating MLLMs that can effectively serve diverse user populations. This challenge becomes particularly important in multilingual and multicultural contexts where language use can vary significantly from standard forms. Recent work on text perturbation strategies [179] could be extended to multimodal settings, providing ways to systematically evaluate and improve robustness to linguistic variations while maintaining cross-modal understanding. This includes developing methods that can handle variations in text while preserving semantic relationships with other modalities.
- Cross-modal Consistency: Ensuring consistent outputs when information across modalities is perturbed or conflicting presents unique challenges that require careful consideration of how different modalities interact and influence each other. The challenge involves developing methods that can maintain coherent outputs even when different modalities provide contradictory or noisy information. Developing evaluation metrics and training objectives for cross-modal consistency is an active area of research, requiring new approaches to quantifying and optimizing the alignment between different modalities under various perturbation scenarios.
6.3.2. Fundamental Limits: When Is Hallucination Unavoidable?
6.3.3. Handling Missing or Noisy Modalities
Graceful Degradation
- Modality Imputation: Developing methods to infer or reconstruct missing modalities could improve robustness by providing substitute inputs when original modalities are unavailable. Recent work on cross-modal generation [161] provides a foundation for addressing this challenge, but adapting these techniques for real-time inference in MLLMs is an open problem. This includes developing efficient methods for generating high-quality imputations that maintain semantic consistency with available modalities while being computationally feasible for real-time applications.
Uncertainty Quantification
- Calibration Techniques: Developing calibration methods for multimodal outputs is challenging due to the diverse nature of different modalities and the need to maintain consistent calibration across various types of outputs. Recent work on temperature scaling [180] needs extension to handle multimodal outputs effectively. This includes developing methods that can provide well-calibrated uncertainty estimates across different modalities while accounting for their unique characteristics and potential interactions.
- Bayesian MLLMs: Exploring Bayesian approaches to uncertainty quantification in MLLMs is a promising direction for providing principled uncertainty estimates in multimodal settings. Techniques like variational inference [181] need adaptation to handle the complexities of multimodal architectures, including the development of appropriate prior distributions and efficient inference methods that can scale to large multimodal models. This includes addressing challenges related to computational efficiency and the handling of different types of uncertainty across modalities.
- Out-of-distribution Detection: Identifying out-of-distribution inputs in multimodal settings is crucial for safe deployment, as it enables models to recognize situations where their predictions may be unreliable. Recent work on contrastive training for OOD detection [182] could be extended to multimodal scenarios, providing ways to identify unusual or potentially problematic inputs across different modalities. This includes developing methods that can effectively detect out-of-distribution samples while considering the joint distribution of multiple modalities.
6.4. Interpretability and Explainability
6.4.1. Visualizing Cross-Modal Attention
Attention Map Analysis
- Multi-head Attention Visualization: Techniques like attention rollout [183] need adaptation for multimodal scenarios to capture complex cross-modal interactions effectively. The challenge lies in developing visualization methods that can meaningfully represent attention patterns across different modalities while maintaining interpretability. This includes addressing questions of how to visualize attention between different types of tokens (e.g., text tokens, image patches, audio segments) and how to represent the hierarchical nature of attention in deep networks. The visualization must be both technically accurate and intuitively understandable to humans, potentially requiring different levels of abstraction for different audiences.
- Temporal Attention Analysis: For video-based MLLMs, visualizing attention over time presents additional challenges that require consideration of both spatial and temporal dimensions. Work on temporal attention could be extended to multimodal temporal data, providing insights into how models integrate information across time and modalities. This includes developing methods to visualize how attention patterns evolve over time, how different modalities influence each other temporally, and how the model maintains coherence across longer sequences. The challenge involves creating visualizations that can effectively represent these complex temporal relationships while remaining comprehensible to human observers.
- Cross-modal Attention Flows: Developing methods to visualize how information flows between modalities through attention mechanisms is an open challenge that requires innovative approaches to representation and visualization. Techniques like attention flow [183] could be adapted for cross-modal settings, providing insights into how information is integrated across modalities. This includes developing methods to track and visualize how information from one modality influences the processing of others, how different modalities contribute to final predictions, and how attention patterns reflect the model’s understanding of relationships between modalities.
Feature Attribution Methods
- Gradient-based Methods: Techniques like Integrated Gradients [184] need careful adaptation to handle multiple input modalities consistently while providing meaningful attributions. The challenge involves developing methods that can appropriately scale and compare gradients across different types of inputs, accounting for the different characteristics and scales of each modality. This includes addressing questions of how to normalize attributions across modalities, how to handle interactions between modalities, and how to present these attributions in a way that is meaningful to human observers. The development of these methods must consider both the technical accuracy of the attributions and their practical utility for understanding model behavior.
- Perturbation-based Methods: Methods like LIME [185] require extension to generate meaningful perturbations across different modalities while maintaining semantic coherence. The challenge lies in developing perturbation strategies that are appropriate for each modality while considering cross-modal dependencies and constraints. This includes determining how to generate realistic perturbations that preserve semantic relationships between modalities, how to sample perturbations effectively in high-dimensional multimodal spaces, and how to aggregate results across different types of perturbations. The development of these methods must balance the need for comprehensive exploration of the input space with computational feasibility and interpretability of results.
- Unified Attribution Frameworks: Developing frameworks that provide consistent attributions across modalities is crucial for understanding how different inputs contribute to model decisions. Recent work on unified saliency maps [186] provides a starting point but requires further development for complex MLLMs. This includes creating methods that can meaningfully compare and combine attributions across different modalities, handling challenges related to different scales and characteristics of different input types, and developing presentation methods that can effectively communicate these unified attributions to users. The framework must be both theoretically sound and practically useful for understanding model behavior in real-world applications.
6.5. Concept-Based Explanation Challenges
6.5.1. Concept-Based Explanations
Multimodal Concept Discovery
- Unsupervised Concept Discovery: While techniques like TCAV [187] have shown promise in single-modality scenarios, there is a pressing need to extend these approaches to discover concepts that span multiple modalities. This extension is non-trivial, as it requires algorithms capable of identifying abstract concepts that manifest differently across diverse data types. For instance, the concept of “joy” might be expressed through positive words in text, upbeat melodies in audio, and smiling faces in images. Developing methods that can autonomously discover such cross-modal concepts would significantly enhance our ability to interpret MLLM decision-making processes.
- Cross-modal Concept Alignment: The challenge of aligning concepts across modalities represents a fundamental hurdle in multimodal understanding. This task involves developing algorithms that can recognize when different modalities are expressing the same underlying concept, even when the surface-level representations are vastly different. For example, aligning the visual concept of a “cozy home” with its textual descriptions and associated sounds requires modeling both the individual modalities and their interrelationships. Progress on this challenge could lead to MLLMs that more reliably relate concepts across modalities, enhancing their usefulness in diverse scenarios.
- Hierarchical Concept Learning: The development of frameworks for learning hierarchical concept structures that integrate information across modalities represents a frontier in MLLM research. Such frameworks would need to capture not only the relationships between concepts within a single modality but also how these hierarchies interact and align across different modalities. This approach could lead to more nuanced and context-aware interpretations of multimodal data. For instance, a hierarchical concept structure might relate high-level concepts like “transportation” to more specific concepts like “cars” and “bicycles” across visual, textual, and auditory modalities, enabling richer and more coherent multimodal reasoning.
Compositional Explanations
- Neuro-symbolic Methods: The integration of symbolic reasoning with neural networks, as exemplified by the work of [188], holds significant promise for providing more interpretable explanations in multimodal contexts. These hybrid approaches aim to combine the flexibility and learning capabilities of neural networks with the transparency and logical rigor of symbolic systems. In the context of MLLMs, neuro-symbolic methods could enable the generation of explanations that are both data-driven and logically structured, potentially offering insights into how the model combines information across modalities to arrive at its conclusions. For example, a neuro-symbolic MLLM might explain its classification of a scene as “dangerous” by providing a logical chain of reasoning that incorporates visual cues (e.g., presence of smoke), textual context (e.g., news reports of a fire), and audio information (e.g., sound of sirens).
- Program Synthesis: Techniques for synthesizing programs that explain model decisions, such as those explored by [189], represent a powerful approach to generating interpretable explanations. Extending these methods to multimodal reasoning tasks presents both challenges and opportunities. The goal would be to generate executable programs that can recreate the MLLM’s decision-making process in a human-readable format. This approach could be particularly powerful for explaining complex multimodal interactions, as it would allow for step-by-step tracing of how information from different modalities is combined and processed. For instance, a synthesized program might explain how an MLLM determines the mood of a movie scene by detailing the steps it takes to analyze the visual composition, dialogue sentiment, and musical score, and how it weighs and combines these factors.
- Natural Language Explanations: The generation of coherent natural language explanations that integrate information from multiple modalities remains one of the most significant challenges in making MLLMs interpretable. This task requires not only the ability to reason across modalities but also the capacity to translate that reasoning into clear, concise, and contextually appropriate language. The difficulty lies in capturing the nuances of multimodal interactions without oversimplifying or losing critical information. Advances in this area could lead to MLLMs that provide clearer explanations for their outputs, enhancing their usefulness in fields such as education, healthcare, and decision support systems. For example, a clinical decision-support MLLM might explain a candidate output by referencing specific visual features from medical imaging, relevant passages from the patient’s medical history, and audio cues from recorded patient interviews, all synthesized into a coherent narrative that a healthcare professional can understand and verify.
6.6. Evaluation and Benchmarking
6.6.1. Comprehensive Multimodal Benchmarks
Task Diversity
- Cross-modal Reasoning: The development of tasks that require complex reasoning across modalities represents a frontier in MLLM evaluation. While datasets like CLEVR [190] have set a high standard for visual reasoning tasks, extending this approach to truly multimodal scenarios presents significant challenges. Such tasks might involve, for example, answering questions about a scene that require integrating information from visual, textual, and auditory inputs. For instance, a cross-modal reasoning task might present a video clip of a busy street scene along with a textual description and ambient audio, then ask questions that require the MLLM to synthesize information across all three modalities to infer complex relationships or predict outcomes.
- Open-ended Generation: Creating evaluation protocols for open-ended multimodal generation tasks presents unique challenges, particularly in assessing creativity and coherence across modalities. These tasks might include generating a story with accompanying illustrations, creating a multimedia presentation on a given topic, or composing music with lyrics that match a provided image. The difficulty lies not only in generating content that is coherent within each modality but also in ensuring that the generated elements are semantically aligned and enhance each other across modalities. Evaluation metrics for such tasks must go beyond traditional measures of quality for individual modalities and consider the holistic impact and coherence of the multimodal output.
- Long-form Understanding: Designing benchmarks for long-form multimodal content understanding, such as video story comprehension or multimedia document analysis, addresses a critical gap in current evaluation frameworks. These tasks require MLLMs to maintain context and track complex narratives or arguments across extended multimodal inputs. For example, a benchmark might involve summarizing a lengthy documentary film, requiring the model to integrate visual cues, spoken dialogue, background music, and on-screen text over an extended period. Such tasks test not only the model’s ability to process individual modalities but also its capacity to synthesize information over time and across modalities to form coherent, high-level understandings.
Fairness and Representation
- Cultural Diversity: Developing strategies for creating culturally diverse multimodal datasets that represent a wide range of global perspectives is crucial for ensuring that MLLMs can perform effectively across different cultural contexts. This challenge involves not only collecting data from diverse sources but also ensuring that the tasks and evaluation criteria are culturally sensitive and relevant. For instance, a truly diverse benchmark might include tasks that require understanding cultural nuances in gestures, idioms, or social cues across different societies, testing the MLLM’s ability to navigate complex cultural landscapes.
- Intersectionality: Designing benchmarks that assess model performance across intersectional categories, considering multiple demographic factors simultaneously, is essential for understanding how MLLMs perform for diverse user groups. This approach recognizes that individuals’ experiences and identities are shaped by the intersection of various factors such as race, gender, age, and socioeconomic status. Benchmarks incorporating intersectionality might, for example, evaluate an MLLM’s ability to understand and generate content relevant to older women from minority ethnic backgrounds, ensuring that the model’s performance is robust across diverse intersectional identities.
- Bias Detection: Creating tools and metrics for identifying and quantifying biases in multimodal datasets and model outputs is a critical component of responsible MLLM development. This challenge involves developing sophisticated analytical techniques that can detect subtle biases across different modalities and their interactions. For example, a bias detection tool might analyze whether an MLLM consistently associates certain visual characteristics with particular personality traits in generated text descriptions, or whether it shows preferences for certain types of voices when generating audio content to match text or images.
6.6.2. Metrics for Multimodal Performance
Cross-Modal Coherence Metrics
- Semantic Alignment Measures: Developing metrics that assess the semantic alignment between generated content in different modalities is essential for ensuring that MLLMs produce coherent multimodal outputs. These measures must go beyond surface-level similarity to capture deep semantic relationships. For instance, a semantic alignment metric might evaluate how well the emotional tone of generated text matches the mood conveyed by an accompanying generated image or musical piece. This could involve developing new embedding techniques that can represent semantic content across modalities in a comparable space, allowing for quantitative assessment of alignment.
- Perceptual Similarity Metrics: Creating metrics that correlate with human judgments of cross-modal similarity and coherence is crucial for developing MLLMs that produce outputs that are not only technically correct but also intuitively coherent to human users. This challenge involves bridging the gap between computational measures and human perception. Approaches might include developing large-scale human evaluation datasets to train machine learning models that can predict human judgments of multimodal coherence, or creating novel perceptual models that simulate human cross-modal processing.
- Temporal Coherence Measures: For video-based tasks, developing metrics that evaluate coherence over time across modalities is particularly challenging. These metrics must capture not only the moment-to-moment alignment of different modalities but also the overall narrative or thematic coherence across an extended temporal sequence. This might involve developing new techniques for analyzing the temporal dynamics of multimodal content, such as methods for tracking the evolution of themes or emotions across visual, auditory, and textual components of a video over time.
Compositional Generalization Metrics
- Systematic Generalization: Designing evaluation protocols that test for systematic generalization in multimodal contexts, similar to SCAN [191] but extended to multiple modalities, is essential for ensuring that MLLMs can apply learned concepts and relationships to novel situations. These protocols might involve creating carefully constructed test sets that require the model to apply known concepts in new multimodal combinations. For example, a test might assess whether a model that has learned to associate certain visual textures with tactile descriptions can generate appropriate cross-modal content for entirely new texture-description pairs.
- Few-shot Composition: Developing metrics to evaluate few-shot compositional abilities across modalities addresses the important challenge of assessing how well MLLMs can quickly adapt to new multimodal tasks with minimal examples. This is particularly relevant for real-world applications where the ability to quickly learn and apply new multimodal concepts is crucial. Metrics in this area might evaluate how effectively a model can learn to generate appropriate audio given a new combination of visual and textual inputs after seeing only a few examples, testing the model’s ability to rapidly compose learned unimodal concepts into novel multimodal outputs.
- Out-of-distribution Composition: Creating benchmarks that assess compositional generalization to novel combinations of modalities or concepts is crucial for understanding the robustness and flexibility of MLLMs. These benchmarks would test the model’s ability to handle inputs or tasks that fall outside the distribution of its training data, particularly in terms of how different modalities are combined. For instance, a benchmark might evaluate how well a model trained on image–caption pairs can handle tasks involving image–audio–text triads, assessing its ability to compose learned bimodal relationships into novel trimodal outputs.
6.7. Structured Gap Analysis: Explored vs. Unexplored Design Choices
Connector × Training Strategy Coverage
Under-Explored Directions
6.8. Synthesis of Challenges and Future Directions
7. Ethical Considerations and Responsible AI
7.1. From Technical Bias to Societal Impact and Governance
7.1.1. Technical Layer (Recap and Pointer)
7.1.2. Social Impact Layer: Who Is Affected, How, and Why It Matters
- Downstream decision harm. When MLLMs feed into hiring, lending, criminal-justice risk scoring, or clinical triage, modest benchmark-level disparities can translate into materially different admission, loan approval, or treatment outcomes depending on thresholds, deployment context, and human oversight. Unlike text-only bias, multimodal bias can cascade: stereotyped image captions feed into search-ranking and content-moderation pipelines that further reduce visibility for already-underrepresented groups.
- Representational harm. Stereotyped imagery and captions shape how entire communities are perceived by users of generative tools, independent of whether any formal decision is made; this is the “who gets to look normal?” problem.
- Access asymmetry. MLLMs trained overwhelmingly on English and high-resource-language image–caption pairs perform substantially worse in other languages and cultural contexts, concentrating the benefits of the technology in populations already over-represented in training data.
- Cross-modal amplification. A model whose text head is only mildly biased and whose image head is only mildly biased can still produce strongly biased outputs because the two modalities reinforce each other; this interaction is qualitatively absent from text-only or vision-only systems and is under-studied.
7.1.3. Governance Countermeasures: Making Technical and Impact Layers Accountable
- Model cards and multimodal disparity reporting. Model cards for multimodal systems should report per-group performance for each modality plus joint modalities, since, as noted above, cross-modal interactions produce disparities that single-modality metrics miss.
- Pre-deployment impact audits. Domain-specific audits (clinical, legal, educational) that explicitly evaluate representational and access harms, conducted by parties independent of the developer and informed by the affected communities, should be considered a prerequisite for deployment in high-stakes settings.
- Data-source transparency and consent. Because MLLM bias is rooted in web-scale image–text scraping, governance frameworks can require disclosure of the dataset provenance used for pre-training and provide meaningful opt-out or consent mechanisms for content creators whose data is used.
- Continuous monitoring and redress. Bias behaviour of deployed MLLMs drifts as users, prompts, and fine-tuning data change; governance frameworks should specify continuous post-deployment monitoring with clearly defined redress pathways for affected individuals, akin to GDPR Article 22 safeguards for solely automated decisions, including human intervention and contestation rights where applicable.
7.2. Privacy and Data Protection
Operational Privacy Controls for MLLMs
- Differential Privacy: By introducing carefully calibrated noise into gradients, training procedures, or model outputs, differential privacy helps limit the leakage of sensitive information about individual data points. Its guarantees depend on the specified mechanism, privacy budget, implementation, and composition accounting [213,214].
- Federated Learning: Instead of centralizing all training data in a single location, federated learning enables MLLMs to be trained collaboratively across multiple decentralized devices or institutions. Each participant keeps raw data locally and shares model updates, which may still leak information without protections such as secure aggregation, differential privacy, and attack monitoring. This approach is particularly valuable in domains such as healthcare, where data sharing is restricted by privacy regulations [215].
- Data Minimization and Anonymization: Collecting and retaining only the minimum amount of data necessary for the specific task at hand reduces the risk of privacy breaches. Additionally, techniques such as data anonymization, where personally identifiable information is removed or obfuscated, can help protect user privacy while still allowing MLLMs to learn from the data [216,217].
7.3. Summary
8. Conclusions
8.1. Summary of Key Findings
8.2. Open Problems and Future Research Directions
Cross-Modal Fairness Metrics
Privacy-Preserving Multimodal Training
Efficient Attention for Long Video and High-Resolution Images
Non-English and Low-Resource Multimodal AI
Hallucination Mitigation Beyond Detection
Closing the Open-Source–Proprietary Performance Gap
8.3. Lessons from Diminishing Returns and Abandoned Approaches
- (i)
- Naive model scaling. While early MLLM development showed consistent gains from scaling model parameters (LLaVA-7B → LLaVA-13B yields 1–3 point improvements), recent evidence suggests diminishing marginal returns. The jump from 7B to 72B parameters in models like Qwen2-VL and LLaVA-OneVision yields modest improvements on perception benchmarks (MMBench: 83.0 → 86.5 for Qwen2-VL) that may not justify the 10× increase in compute and memory cost. Data quality, instruction diversity, and training recipe appear to matter more than raw scale at current parameter counts, as demonstrated by 7–8B models matching or exceeding much larger predecessors.
- (ii)
- Q-Former and fixed-query compression. The Q-Former mechanism, introduced in BLIP-2 as an elegant solution to visual-token compression, remains influential but is less common among several recent high-scoring open-source models that use simpler MLP projections (LLaVA-1.5, InternVL, Qwen2-VL, LLaVA-OneVision). In our benchmark comparison, several MLP-based systems report higher scores than the Q-Former-based systems shown here (BLIP-2: 65.0 VQAv2; InstructBLIP: 36.0 MMBench), but these comparisons are not controlled connector ablations because model scale, data, training recipes, and evaluation protocols differ. The fixed query count can act as an information bottleneck that discards spatial detail critical for fine-grained tasks, and the additional cross-attention layers may provide diminishing benefit as encoder–backbone pairings grow stronger.
- (iii)
- Benchmark saturation. The community’s heavy reliance on VQAv2 and GQA has led to effective saturation: top models cluster within 1–2 points, and further improvements are difficult to distinguish from noise in the absence of statistical significance testing. Several newer models in our comparison either de-emphasize these benchmarks or omit one or both from their primary reporting, signaling a community-wide recognition that they are less discriminative among state-of-the-art systems than newer, more challenging evaluations. The field’s pivot toward benchmarks such as MMMU, DocVQA, and MathVista is a positive development, but these newer benchmarks face their own risks of rapid saturation and data contamination as they become standard training targets.
Author Contributions
Funding
Data Availability Statement
Conflicts of Interest
Abbreviations
| Abbreviation | Full Form |
| MLLM | Multimodal Large Language Model |
| LLM | Large Language Model |
| LM | Language Modeling |
| NLP | Natural Language Processing |
| VQA | Visual Question Answering |
| VLP | Vision–Language Pre-training |
| ITC | Image–Text Contrastive |
| ITM | Image–Text Matching |
| ITG | Image–Text Generation |
| CLIP | Contrastive Language–Image Pre-training |
| ViT | Vision Transformer |
| RLHF | Reinforcement Learning from Human Feedback |
| LoRA | Low-Rank Adaptation |
| QLoRA | Quantized Low-Rank Adaptation |
| PEFT | Parameter-Efficient Fine-Tuning |
| RAG | Retrieval-Augmented Generation |
| SFT | Supervised Fine-Tuning |
| DPO | Direct Preference Optimization |
| MLP | Multilayer Perceptron |
| CNN | Convolutional Neural Network |
| RNN | Recurrent Neural Network |
| LSTM | Long Short-Term Memory |
| GAN | Generative Adversarial Network |
| VAE | Variational Autoencoder |
| API | Application Programming Interface |
| OCR | Optical Character Recognition |
| AR | Augmented Reality |
| AI | Artificial Intelligence |
| DP | Differential Privacy |
| FL | Federated Learning |
| VL | Vision–Language |
| CV | Computer Vision |
References
- Yin, S.; Fu, C.; Zhao, S.; Li, K.; Sun, X.; Xu, T.; Chen, E. A survey on multimodal large language models. Natl. Sci. Rev. 2024, 11, nwae403. [Google Scholar] [CrossRef] [PubMed]
- Zhang, D.; Yu, Y.; Li, C.; Dong, J.; Su, D.; Chu, C.; Yu, D. MM-LLMs: Recent Advances in MultiModal Large Language Models. arXiv 2024, arXiv:2401.13601. [Google Scholar] [CrossRef]
- Caffagni, D.; Cocchi, F.; Barsellotti, L.; Moratelli, N.; Sarto, S.; Baraldi, L.; Corsini, M.; Cucchiara, R. The Revolution of Multimodal Large Language Models: A Survey. arXiv 2024, arXiv:2402.12451. [Google Scholar] [CrossRef]
- Xu, K.; Ba, J.L.; Kiros, R.; Cho, K.; Courville, A.; Salakhutdinov, R.; Zemel, R.; Bengio, Y. Show, Attend and Tell: Neural Image Caption Generation with Visual Attention. In Proceedings of the International Conference on Machine Learning (ICML), Lille, France, 6–11 July 2015. [Google Scholar]
- Antol, S.; Agrawal, A.; Lu, J.; Mitchell, M.; Batra, D.; Zitnick, C.L.; Parikh, D. VQA: Visual Question Answering. In Proceedings of the IEEE International Conference on Computer Vision (ICCV), Santiago, Chile, 7–13 December 2015. [Google Scholar]
- Lu, J.; Batra, D.; Parikh, D.; Lee, S. ViLBERT: Pretraining Task-Agnostic Visiolinguistic Representations for Vision-and-Language Tasks. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), Vancouver, BC, Canada, 8–14 December 2019. [Google Scholar]
- Radford, A.; Kim, J.W.; Hallacy, C.; Ramesh, A.; Goh, G.; Agarwal, S.; Sastry, G.; Askell, A.; Mishkin, P.; Clark, J.; et al. Learning Transferable Visual Models from Natural Language Supervision. In Proceedings of the International Conference on Machine Learning (ICML), Virtual, 18–24 July 2021; pp. 8748–8763. [Google Scholar] [CrossRef]
- Tong, S.; Brown, E.; Wu, P.; Woo, S.; Middepogu, M.; Akula, S.C.; Yang, J.; Yang, S.; Iyer, A.; Pan, X.; et al. Cambrian-1: A Fully Open, Vision-Centric Exploration of Multimodal LLMs. arXiv 2024, arXiv:2406.16860. [Google Scholar] [CrossRef]
- Wang, W.; Lv, Q.; Yu, W.; Hong, W.; Qi, J.; Wang, Y.; Ji, J.; Yang, Z.; Zhao, L.; Song, X.; et al. CogVLM: Visual Expert for Pretrained Language Models. arXiv 2024. [Google Scholar] [CrossRef]
- Yao, Y.; Yu, T.; Zhang, A.; Wang, C.; Cui, J.; Zhu, H.; Cai, T.; Li, H.; Zhao, W.; He, Z.; et al. MiniCPM-V: A GPT-4V Level MLLM on Your Phone. arXiv 2024. [Google Scholar] [CrossRef]
- 01.AI; Young, A.; Chen, B.; Li, C.; Huang, C.; Zhang, G.; Zhang, G.; Li, H.; Zhu, J.; Chen, J.; et al. Yi: Open Foundation Models by 01.AI. Includes Yi-VL vision-language variants. arXiv 2024. [Google Scholar] [CrossRef]
- Polanyi, L.; Culy, C.; Van Den Berg, M.; Thione, G.L.; Ahn, D. A Rule Based Approach to Discourse Parsing. In Proceedings of the 5th SIGdial Workshop on Discourse and Dialogue at HLT-NAACL 2004, Cambridge, MA, USA, 30 April–1 May 2004; pp. 108–117. [Google Scholar]
- Koehn, P. Statistical Machine Translation; Cambridge University Press: Cambridge, UK, 2009. [Google Scholar]
- Mikolov, T.; Chen, K.; Corrado, G.; Dean, J. Efficient Estimation of Word Representations in Vector Space. arXiv 2013, arXiv:1301.3781. [Google Scholar] [CrossRef]
- Pennington, J.; Socher, R.; Manning, C.D. GloVe: Global Vectors for Word Representation. In Proceedings of the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP), Doha, Qatar, 25–29 October 2014; pp. 1532–1543. [Google Scholar]
- Hochreiter, S.; Schmidhuber, J. Long Short-Term Memory. Neural Comput. 1997, 9, 1735–1780. [Google Scholar] [CrossRef] [PubMed]
- Bahdanau, D.; Cho, K.; Bengio, Y. Neural Machine Translation by Jointly Learning to Align and Translate. In Proceedings of the International Conference on Learning Representations (ICLR), San Diego, CA, USA, 7–9 May 2015. [Google Scholar] [CrossRef]
- Vaswani, A.; Shazeer, N.; Parmar, N.; Uszkoreit, J.; Jones, L.; Gomez, A.N.; Kaiser, Ł.; Polosukhin, I. Attention is all you need. In Proceedings of the Advances in Neural Information Processing Systems, Long Beach, CA, USA, 4–9 December 2017; Volume 30. [Google Scholar]
- Tishby, N.; Pereira, F.C.; Bialek, W. The Information Bottleneck Method. arXiv 2000, arXiv:physics/0004057. [Google Scholar] [CrossRef]
- Dosovitskiy, A.; Beyer, L.; Kolesnikov, A.; Weissenborn, D.; Zhai, X.; Unterthiner, T.; Dehghani, M.; Minderer, M.; Heigold, G.; Gelly, S.; et al. An image is worth 16 × 16 words: Transformers for image recognition at scale. In Proceedings of the International Conference on Learning Representations, Virtual, 3–7 May 2021. [Google Scholar]
- Alayrac, J.B.; Donahue, J.; Luc, P.; Miech, A.; Barr, I.; Hasson, Y.; Lenc, K.; Mensch, A.; Millican, K.; Reynolds, M.; et al. Flamingo: A Visual Language Model for Few-Shot Learning. Adv. Neural Inf. Process. Syst. 2022, 35, 23716–23736. [Google Scholar]
- Li, J.; Li, D.; Savarese, S.; Hoi, S. BLIP-2: Bootstrapping Language-Image Pre-training with Frozen Image Encoders and Large Language Models. In Proceedings of the International Conference on Machine Learning (ICML), Honolulu, HI, USA, 23–29 July 2023; pp. 19730–19742. [Google Scholar]
- Liu, H.; Li, C.; Wu, Q.; Lee, Y.J. Visual Instruction Tuning. Adv. Neural Inf. Process. Syst. 2023, 36, 34892–34916. [Google Scholar] [CrossRef]
- Goyal, Y.; Khot, T.; Summers-Stay, D.; Batra, D.; Parikh, D. Making the V in VQA Matter: Elevating the Role of Image Understanding in Visual Question Answering. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Honolulu, HI, USA, 21–26 July 2017; pp. 6904–6913. [Google Scholar]
- Hudson, D.A.; Manning, C.D. GQA: A New Dataset for Real-World Visual Reasoning and Compositional Question Answering. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Long Beach, CA, USA, 16–20 June 2019; pp. 6700–6709. [Google Scholar]
- Singh, A.; Natarajan, V.; Shah, M.; Jiang, Y.; Chen, X.; Batra, D.; Parikh, D.; Rohrbach, M. TextVQA: Towards Reasoning about Text in Images. arXiv 2019, arXiv:1904.08920. [Google Scholar] [CrossRef]
- Liu, Y.; Duan, H.; Zhang, Y.; Li, B.; Zhang, S.; Zhao, W.; Yuan, Y.; Wang, J.; He, C.; Liu, Z.; et al. MMBench: Is Your Multi-modal Model an All-around Player? arXiv 2024, arXiv:2307.06281. [Google Scholar] [CrossRef]
- Yue, X.; Ni, Y.; Zhang, K.; Zheng, T.; Liu, R.; Zhang, G.; Stevens, S.; Jiang, D.; Ren, W.; Sun, Y.; et al. MMMU: A Massive Multi-discipline Multimodal Understanding and Reasoning Benchmark for Expert AGI. arXiv 2024, arXiv:2311.16502. [Google Scholar] [CrossRef]
- Dai, W.; Li, J.; Li, D.; Tiong, A.M.H.; Zhao, J.; Wang, W.; Li, B.; Fung, P.; Hoi, S. InstructBLIP: Towards General-purpose Vision-Language Models with Instruction Tuning. arXiv 2023, arXiv:2305.06500. [Google Scholar] [CrossRef]
- Zhu, D.; Chen, J.; Shen, X.; Li, X.; Elhoseiny, M. MiniGPT-4: Enhancing Vision-Language Understanding with Advanced Large Language Models. arXiv 2023, arXiv:2304.10592. [Google Scholar] [CrossRef]
- Liu, H.; Li, C.; Li, Y.; Lee, Y.J. Improved Baselines with Visual Instruction Tuning. arXiv 2024. [Google Scholar] [CrossRef]
- Bai, J.; Bai, S.; Yang, S.; Wang, S.; Tan, S.; Wang, P.; Lin, J.; Zhou, C.; Zhou, J. Qwen-VL: A Versatile Vision-Language Model for Understanding, Localization, Text Reading, and Beyond. arXiv 2023. [Google Scholar] [CrossRef]
- Chen, Z.; Wang, W.; Tian, H.; Ye, S.; Gao, Z.; Cui, E.; Tong, W.; Hu, K.; Luo, J.; Ma, Z.; et al. How Far Are We to GPT-4V? Closing the Gap to Commercial Multimodal Models with Open-Source Suites. arXiv 2024. [Google Scholar] [CrossRef]
- Lu, H.; Liu, W.; Zhang, B.; Wang, B.; Dong, K.; Liu, B.; Sun, J.; Ren, T.; Li, Z.; Sun, Y.; et al. DeepSeek-VL: Towards Real-World Vision-Language Understanding. arXiv 2024. [Google Scholar] [CrossRef]
- Li, B.; Zhang, Y.; Guo, D.; Zhang, R.; Li, F.; Zhang, H.; Zhang, K.; Li, Y.; Liu, Z.; Li, C. LLaVA-OneVision: Easy Visual Task Transfer. arXiv 2024. [Google Scholar] [CrossRef]
- Wang, P.; Bai, S.; Tan, S.; Wang, S.; Fan, Z.; Bai, J.; Chen, K.; Liu, X.; Wang, J.; Ge, W.; et al. Qwen2-VL: Enhancing Vision-Language Model’s Perception of the World at Any Resolution. arXiv 2024. [Google Scholar] [CrossRef]
- OpenGVLab Team. InternVL2: Better than the Best—Expanding Performance Boundaries of Open-Source Multimodal Models with the Progressive Scaling Strategy. 2024. Available online: https://internvl.github.io/blog/2024-07-02-InternVL-2.0/ (accessed on 10 May 2026).
- Achiam, J.; Adler, S.; Agarwal, S.; Ahmad, L.; Akkaya, I.; Aleman, F.L.; Almeida, D.; Altenschmidt, J.; Altman, S.; Anadkat, S.; et al. GPT-4 Technical Report. arXiv 2023. [Google Scholar] [CrossRef]
- OpenAI; Hurst, A.; Lerer, A.; Goucher, A.P.; Perelman, A.; Ramesh, A.; Clark, A.; Ostrow, A.J.; Welihinda, A.; Hayes, A.; et al. GPT-4o System Card. arXiv 2024. [Google Scholar] [CrossRef]
- Gemini Team; Anil, R.; Borgeaud, S.; Alayrac, J.B.; Yu, J.; Soricut, R.; Schalkwyk, J.; Dai, A.M.; Hauth, A.; Millican, K.; et al. Gemini: A Family of Highly Capable Multimodal Models. arXiv 2023. [Google Scholar] [CrossRef]
- Anthropic. Claude. 2023. Available online: https://www.anthropic.com/ (accessed on 29 September 2024).
- Yan, S.; Zhu, T.; Wang, Z.; Cao, Y.; Zhang, M.; Ghosh, S.; Wu, Y.; Yu, J. VideoCoCa: Video-Text Modeling with Zero-Shot Transfer from Contrastive Captioners. arXiv 2022, arXiv:2212.04979. [Google Scholar]
- Zhang, H.; Li, X.; Bing, L. Video-LLaMA: An Instruction-tuned Audio-Visual Language Model for Video Understanding. arXiv 2023, arXiv:2306.02858. [Google Scholar]
- Lin, B.; Ye, Y.; Zhu, B.; Cui, J.; Ning, M.; Jin, P.; Yuan, L. Video-LLaVA: Learning United Visual Representation by Alignment Before Projection. arXiv 2023, arXiv:2311.10122. [Google Scholar]
- Kahatapitiya, K.; Ranasinghe, K.; Park, J.; Ryoo, M.S. Language Repository for Long Video Understanding. In Proceedings of the Findings of the Association for Computational Linguistics: ACL 2025, Vienna, Austria, 27 July–1 August 2025; Association for Computational Linguistics: Stroudsburg, PA, USA, 2025; pp. 5627–5646. [Google Scholar] [CrossRef]
- Wu, H.; Li, D.; Chen, B.; Li, J. LongVideoBench: A Benchmark for Long-context Interleaved Video-Language Understanding. In Proceedings of the Advances in Neural Information Processing Systems, Vancouver, BC, Canada, 10–15 December 2024; Volume 37, pp. 28828–28857. [Google Scholar] [CrossRef]
- Yu, L.; Shi, B.; Pasunuru, R.; Muller, B.; Golovneva, O.; Wang, T.; Babu, A.; Tang, B.; Karrer, B.; Sheynin, S.; et al. Scaling Autoregressive Multi-Modal Models: Pretraining and Instruction Tuning. arXiv 2023, arXiv:2309.02591. [Google Scholar] [CrossRef]
- Xu, Z.; Shen, Y.; Huang, L. MultiInstruct: Improving Multi-Modal Zero-Shot Learning via Instruction Tuning. In Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (ACL), Toronto, ON, Canada, 9–14 July 2023; pp. 11445–11465. [Google Scholar]
- Li, B.; Zhang, Y.; Chen, L.; Wang, J.; Pu, F.; Cahyono, J.A.; Yang, J.; Liu, Z. Otter: A Multi-Modal Model with In-Context Instruction Tuning. arXiv 2023, arXiv:2305.03726. [Google Scholar] [CrossRef] [PubMed]
- Wang, J.; Jiang, H.; Liu, Y.; Ma, C.; Zhang, X.; Pan, Y.; Liu, M.; Gu, P.; Xia, S.; Li, W.; et al. A comprehensive review of multimodal large language models: Performance and challenges across different tasks. arXiv 2024, arXiv:2408.01319. [Google Scholar] [CrossRef]
- Jiang, C.; Xu, H.; Dong, M.; Chen, J.; Ye, W.; Yan, M.; Ye, Q.; Zhang, J.; Huang, F.; Zhang, S. Hallucination Augmented Contrastive Learning for Multimodal Large Language Model. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Seattle, WA, USA, 17–21 June 2024; pp. 27036–27046. [Google Scholar] [CrossRef]
- Jiao, Q.; Chen, D.; Huang, Y.; Ding, B.; Li, Y.; Shen, Y. Img-Diff: Contrastive Data Synthesis for Multimodal Large Language Models. arXiv 2024, arXiv:2408.04594. [Google Scholar] [CrossRef]
- Xiao, H.; Zhou, F.; Liu, X.; Liu, T.; Li, Z.; Liu, X.; Huang, X. A Comprehensive Survey of Large Language Models and Multimodal Large Language Models in Medicine. Inf. Fusion 2025, 117, 102888. [Google Scholar] [CrossRef]
- Li, X.; Zhang, M.; Geng, Y.; Geng, H.; Long, Y.; Shen, Y.; Zhang, R.; Liu, J.; Dong, H. ManipLLM: Embodied Multimodal Large Language Model for Object-Centric Robotic Manipulation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Seattle, WA, USA, 17–21 June 2024; pp. 18061–18070. [Google Scholar]
- Li, P.; Liu, G.; He, J.; Zhao, Z.; Zhong, S. Masked Vision and Language Pre-training with Unimodal and Multimodal Contrastive Losses for Medical Visual Question Answering. In Proceedings of the International Conference on Medical Image Computing and Computer-Assisted Intervention (MICCAI); Springer Nature: Cham, Switzerland, 2023; pp. 374–383. [Google Scholar] [CrossRef]
- Yuan, Z.; Jin, Q.; Tan, C.; Zhao, Z.; Yuan, H.; Huang, F.; Huang, S. RAMM: Retrieval-augmented Biomedical Visual Question Answering with Multi-modal Pre-training. In Proceedings of the 31st ACM International Conference on Multimedia (ACM MM), Ottawa, ON, Canada, 29 October–3 November 2023; pp. 547–556. [Google Scholar] [CrossRef]
- Sun, R.; Li, Z.; Ding, Y.; Wang, Q.; Wang, J.; Zheng, H.; Wu, W.; Xian, Y. Fusion or Defusion? Flexible Vision-and-Language Pre-Training. In Proceedings of the Findings of the Association for Computational Linguistics: ACL 2023, Toronto, ON, Canada, 9–14 July 2023; pp. 5105–5119. [Google Scholar]
- Shuai, Z.; Shen, L. Mitigating Heterogeneity in Federated Multimodal Learning with Biomedical Vision-Language Pre-training. arXiv 2024, arXiv:2404.03854. [Google Scholar] [CrossRef]
- Zhou, X.; He, J.; Ke, Y.; Zhu, G.; Gutiérrez-Basulto, V.; Pan, J.Z. An Empirical Study on Parameter-Efficient Fine-Tuning for MultiModal Large Language Models. In Proceedings of the Findings of the Association for Computational Linguistics: ACL, Bangkok, Thailand, 11–16 August 2024. [Google Scholar] [CrossRef]
- Long, Z.; Killick, G.; McCreadie, R.; Aragon-Camarasa, G. MultiWay-Adapter: Adapting Large-Scale Multi-Modal Models for Scalable Image-Text Retrieval. arXiv 2023, arXiv:2309.01516. [Google Scholar] [CrossRef]
- Huang, J.; Zhang, J.; Jiang, K.; Qiu, H.; Lu, S. Visual Instruction Tuning towards General-Purpose Multimodal Model: A Survey. arXiv 2023, arXiv:2312.16602. [Google Scholar] [CrossRef]
- Jin, Y.; Li, J.; Liu, Y.; Gu, T.; Wu, K.; Jiang, Z.; He, M.; Zhao, B.; Tan, X.; Gan, Z.; et al. Efficient Multimodal Large Language Models: A Survey. Vis. Intell. 2025, 3, 27. [Google Scholar] [CrossRef]
- Baydin, A.G.; Cornish, R.; Rubio, D.M.; Schmidt, M.; Wood, F. Online Learning Rate Adaptation with Hypergradient Descent. arXiv 2018, arXiv:1703.04782. [Google Scholar] [CrossRef]
- Liu, B.; Chen, C.; Liao, C.; Gong, Z.; Wang, H.; Lei, Z.; Liang, M.; Chen, D.; Shen, M.; Zhou, H.; et al. MFTCoder: Boosting Code LLMs with Multitask Fine-Tuning. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, Barcelona, Spain, 25–29 August 2024. [Google Scholar] [CrossRef]
- Mahabadi, R.K.; Ruder, S.; Dehghani, M.; Henderson, J. Parameter-Efficient Multi-Task Fine-Tuning for Transformers via Shared Hypernetworks. In Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics (ACL), Online, 1–6 August 2021; pp. 565–576. [Google Scholar] [CrossRef]
- Bari, M.S.; Zhang, A.; Zheng, S.; Shi, X.; Zhu, Y.; Joty, S.; Li, M. SPT: Semi-Parametric Prompt Tuning for Multitask Prompted Learning. arXiv 2022, arXiv:2212.10929. [Google Scholar] [CrossRef]
- Liu, X.; Liu, T.; Huang, S.; Xin, Y.; Hu, Y.; Yin, Q.; Wang, D.; Wu, Y.; Chen, H. M2IST: Multi-Modal Interactive Side-Tuning for Efficient Referring Expression Comprehension. arXiv 2024, arXiv:2407.01131. [Google Scholar] [CrossRef]
- Li, J.; He, X.; Wei, L.; Qian, L.; Zhu, L.; Xie, L.; Zhuang, Y.; Tian, Q.; Tang, S. Fine-Grained Semantically Aligned Vision-Language Pre-Training. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), New Orleans, LA, USA, 28 November–9 December 2022. [Google Scholar]
- Hu, E.J.; Shen, Y.; Wallis, P.; Allen-Zhu, Z.; Li, Y.; Wang, S.; Wang, L.; Chen, W. LoRA: Low-Rank Adaptation of Large Language Models. In Proceedings of the International Conference on Learning Representations (ICLR), Virtual, 25–29 April 2022. [Google Scholar] [CrossRef]
- Tsimpoukelli, M.; Menick, J.L.; Cabi, S.; Eslami, S.M.A.; Vinyals, O.; Hill, F. Multimodal Few-Shot Learning with Frozen Pretrained Language Models. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), Virtual, 6–14 December 2021; Volume 34, pp. 200–212. [Google Scholar] [CrossRef]
- Huang, S.; Dong, L.; Wang, W.; Hao, Y.; Singhal, S.; Ma, S.; Lv, T.; Cui, L.; Mohammed, O.K.; Patra, B.; et al. Language Is Not All You Need: Aligning Perception with Language Models. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), New Orleans, LA, USA, 10–16 December 2023; Volume 36, pp. 72096–72109. [Google Scholar] [CrossRef]
- Hu, J.; Yao, Y.; Wang, C.; Wang, S.; Pan, Y.; Chen, Q.; Yu, T.; Wu, H.; Zhao, Y.; Zhang, H.; et al. Large Multilingual Models Pivot Zero-Shot Multimodal Learning across Languages. arXiv 2023, arXiv:2308.12038. [Google Scholar] [CrossRef]
- Peng, B.; Li, C.; He, P.; Galley, M.; Gao, J. Instruction Tuning with GPT-4. arXiv 2023, arXiv:2304.03277. [Google Scholar] [CrossRef]
- Gupta, H.; Sawant, S.A.; Mishra, S.; Nakamura, M.; Mitra, A.; Mashetty, S.; Baral, C. Instruction tuned models are quick learners. arXiv 2023, arXiv:2306.05539. [Google Scholar] [CrossRef]
- Lin, T.Y.; Maire, M.; Belongie, S.; Hays, J.; Perona, P.; Ramanan, D.; Dollár, P.; Zitnick, C.L. Microsoft COCO: Common Objects in Context. In Proceedings of the European Conference on Computer Vision (ECCV), Zurich, Switzerland, 6–12 September 2014; pp. 740–755. [Google Scholar]
- Young, P.; Lai, A.; Hodosh, M.; Hockenmaier, J. From image descriptions to visual denotations: New similarity metrics for semantic inference over event descriptions. Trans. Assoc. Comput. Linguist. 2014, 2, 67–78. [Google Scholar] [CrossRef]
- Singh, A.; Natarajan, V.; Shah, M.; Jiang, Y.; Chen, X.; Batra, D.; Parikh, D.; Rohrbach, M. Towards VQA Models That Can Read. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Long Beach, CA, USA, 16–20 June 2019; pp. 8317–8326. [Google Scholar]
- Marino, K.; Rastegari, M.; Farhadi, A.; Mottaghi, R. OK-VQA: A Visual Question Answering Benchmark Requiring External Knowledge. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Long Beach, CA, USA, 16–20 June 2019; pp. 3195–3204. [Google Scholar]
- Agrawal, H.; Desai, K.; Wang, Y.; Chen, X.; Jain, R.; Johnson, M.; Batra, D.; Parikh, D.; Lee, S.; Anderson, P. nocaps: Novel Object Captioning at Scale. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), Seoul, Republic of Korea, 27 October–2 November 2019; pp. 8948–8957. [Google Scholar]
- Suhr, A.; Zhou, S.; Zhang, A.; Zhang, I.; Bai, H.; Artzi, Y. A Corpus for Reasoning About Natural Language Grounded in Photographs. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics (ACL), Florence, Italy, 28 July–2 August 2019; pp. 6418–6428. [Google Scholar]
- Pezeshkpour, P.; Hruschka, E. Large Language Models Sensitivity to the Order of Options in Multiple-Choice Questions. arXiv 2023, arXiv:2308.11483. [Google Scholar] [CrossRef]
- Zheng, C.; Zhou, H.; Meng, F.; Zhou, J.; Huang, M. Large Language Models Are Not Robust Multiple Choice Selectors. arXiv 2023, arXiv:2309.03882. [Google Scholar]
- Cornia, M.; Stefanini, M.; Baraldi, L.; Cucchiara, R. Meshed-Memory Transformer for Image Captioning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Virtual, 14–19 June 2020; pp. 10578–10587. [Google Scholar] [CrossRef]
- Li, X.; Yin, X.; Li, C.; Zhang, P.; Hu, X.; Zhang, L.; Wang, L.; Hu, H.; Dong, L.; Wei, F.; et al. OSCAR: Object-Semantics Aligned Pre-training for Vision-Language Tasks. In Proceedings of the European Conference on Computer Vision (ECCV); Springer: Cham, Switzerland, 2020; pp. 121–137. [Google Scholar] [CrossRef]
- Johnson, J.; Karpathy, A.; Fei-Fei, L. DenseCap: Fully Convolutional Localization Networks for Dense Captioning. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Las Vegas, NV, USA, 26 June–1 July 2016; pp. 4565–4574. [Google Scholar]
- Hu, X.; Yin, X.; Lin, K.; Wang, L.; Zhang, L.; Gao, J.; Liu, Z. VIVO: Visual Vocabulary Pre-Training for Novel Object Captioning. In Proceedings of the AAAI Conference on Artificial Intelligence, Virtual, 2–9 February 2021. [Google Scholar] [CrossRef]
- Chen, C.; Mu, S.; Xiao, W.; Ye, Z.; Wu, L.; Ju, Q. Improving Image Captioning with Conditional Generative Adversarial Nets. In Proceedings of the AAAI Conference on Artificial Intelligence, Honolulu, HI, USA, 27 January–1 February 2019; pp. 8142–8150. [Google Scholar] [CrossRef]
- Li, N.; Chen, Z.; Liu, S. Meta Learning for Image Captioning. In Proceedings of the AAAI Conference on Artificial Intelligence, Honolulu, HI, USA, 27 January–1 February 2019; Volume 33, pp. 8626–8633. [Google Scholar]
- de Faria, A.C.A.M.; Bastos, F.d.C.; da Silva, J.V.N.A.; Fabris, V.L.; Uchoa, V.d.S.; Neto, D.G.d.A.; Santos, C.F.G.d. Visual Question Answering: A Survey on Techniques and Common Trends in Recent Literature. arXiv 2023, arXiv:2305.11033. [Google Scholar] [CrossRef]
- Yu, Z.; Yu, J.; Cui, Y.; Tao, D.; Tian, Q. Deep Modular Co-Attention Networks for Visual Question Answering. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Long Beach, CA, USA, 16–20 June 2019; pp. 6281–6290. [Google Scholar]
- Lan, Y.; Li, X.; Liu, X.; Li, Y.; Qin, W.; Qian, W. Improving Zero-shot Visual Question Answering via Large Language Models with Reasoning Question Prompts. arXiv 2023, arXiv:2311.09050. [Google Scholar] [CrossRef]
- Bigham, J.P.; Jayant, C.; Ji, H.; Little, G.; Miller, A.; Miller, R.C.; Miller, R.; Tatarowicz, A.; White, B.; White, S.; et al. VizWiz: Nearly Real-time Answers to Visual Questions. In Proceedings of the 23rd Annual ACM Symposium on User Interface Software and Technology (UIST), New York, NY, USA, 3–6 October 2010; pp. 333–342. [Google Scholar]
- Li, B.; Jia, G.; Gao, X.; Ma, C. Multidimensional Semantic Augmented Visual Storytelling. In Proceedings of the 2024 4th International Conference on Neural Networks, Information and Communication (NNICE), Guangzhou, China, 19–21 January 2024. [Google Scholar] [CrossRef]
- Hong, X.; Shetty, R.; Demberg, V.; Schiele, B. Diverse and Relevant Visual Storytelling with Scene Graph Embeddings. In Proceedings of the 24th Conference on Computational Natural Language Learning (CoNLL), Virtual, 19–20 November 2020; pp. 378–388. [Google Scholar] [CrossRef]
- Fu, R.; Liu, J.; Chen, X.; Nie, Y.; Xiong, W. Scene-LLM: Extending Language Model for 3D Visual Understanding and Reasoning. arXiv 2024, arXiv:2403.11401. [Google Scholar] [CrossRef]
- Parde, N. And, Action! Towards Leveraging Multimodal Patterns for Storytelling and Content Analysis. In Proceedings of the 2nd International Workshop on AI for Smart TV Content Production, Access and Delivery (AI4TV) at ACM MM, Virtual, 12 October 2020. [Google Scholar] [CrossRef]
- Wang, S.; Yu, Z.; Jiang, X.; Lan, S.; Shi, M.; Chang, N.; Kautz, J.; Li, Y.; Alvarez, J.M. OmniDrive: A Holistic LLM-Agent Framework for Autonomous Driving with 3D Perception, Reasoning and Planning. arXiv 2024, arXiv:2405.01533. [Google Scholar] [CrossRef]
- Dey, A.U.; Ghosh, S.K.; Valveny, E.; Harit, G. Beyond Visual Semantics: Exploring the Role of Scene Text in Image Understanding. Pattern Recognit. Lett. 2021, 149, 164–171. [Google Scholar] [CrossRef]
- Zang, C.; Tang, J.; Zhang, R.; Zhao, Z.; Lv, T.; Pei, M.; Liang, W. Let Storytelling Tell Vivid Stories: An Expressive and Fluent Multimodal Storyteller. arXiv 2024, arXiv:2403.07301. [Google Scholar] [CrossRef]
- Yang, B.; He, L.; Liu, K.; Yan, Z. VIAssist: Adapting Multi-modal Large Language Models for Users with Visual Impairments. arXiv 2024, arXiv:2404.02508. [Google Scholar] [CrossRef]
- Chang, S.F.; Eleftheriadis, A.; McClintock, R.O. Next-generation content representation, creation, and searching for new-media applications in education. Proc. IEEE 1998, 86, 884–904. [Google Scholar] [CrossRef]
- Martín, Á.; Iribas, H.; Alberdi, I.; Aginako, N. Dynamic Multimedia Creation Using Knowledge Content Driven Database. In Proceedings of the IEEE International Symposium on Parallel and Distributed Processing with Applications (ISPA), Leganés, Madrid, Spain, 10–13 July 2012. [Google Scholar] [CrossRef]
- Tilekbay, B.; Yang, S.; Lewkowicz, M.C.; Suryapranata, A.; Kim, J. ExpressEdit: Video Editing with Natural Language and Sketching. In Proceedings of the Companion Proceedings of the 29th International Conference on Intelligent User Interfaces (IUI Companion), Greenville, SC, USA, 18–21 March 2024. [Google Scholar] [CrossRef]
- Kubicek, R.; Zak, P.; Zemčík, P.; Herout, A. Automatic Video Editing for Multimodal Meetings. In Proceedings of the International Conference on Computer Vision and Graphics (ICCVG), Warsaw, Poland, 10–12 November 2008. [Google Scholar] [CrossRef]
- Obrenovic, Z.; Starcevic, D.; Selić, B. A model-driven approach to content repurposing. IEEE Multimed. 2004, 11, 62–71. [Google Scholar] [CrossRef]
- Wieschebrink, S. Collaborative editing of multimodal annotation data. In Proceedings of the ACM Symposium on Document Engineering (DocEng), Mountain View, CA, USA, 19–22 September 2011. [Google Scholar] [CrossRef]
- Santos, A. Multimedia and Groupware for Editing. In Computer Graphics: Systems and Applications; Springer: Berlin/Heidelberg, Germany, 1995. [Google Scholar] [CrossRef]
- Sauer, S.; Osswald, K.; Wielemans, X.; Stifter, M. U-Create: Creative Authoring Tools for Edutainment Applications. In Proceedings of the 3rd International Conference on Technologies for Interactive Digital Storytelling and Entertainment (TIDSE), Darmstadt, Germany, 4–6 December 2006. [Google Scholar] [CrossRef]
- Jokela, T.; Lehikoinen, J.; Korhonen, H. Mobile multimedia presentation editor: Enabling creation of audio-visual stories on mobile devices. In Proceedings of the SIGCHI Conference on Human Factors in Computing Systems (CHI), Florence, Italy, 5–10 April 2008. [Google Scholar] [CrossRef]
- Bateman, J. Multimodality and Genre: A Foundation for the Systematic Analysis of Multimodal Documents; Palgrave Macmillan: London, UK, 2008. [Google Scholar] [CrossRef]
- Ranjan, V.; Rasiwasia, N.; Jawahar, C. Multi-label Cross-Modal Retrieval. In Proceedings of the IEEE International Conference on Computer Vision (ICCV), Santiago, Chile, 7–13 December 2015; pp. 4094–4102. [Google Scholar] [CrossRef]
- Gomez, F.P.; Sanabria, R.; Sung, Y.h.; Cer, D.; Dalmia, S.; Hernández Abrego, G. Transforming LLMs into Cross-modal and Cross-lingual Retrieval Systems. In Proceedings of the 21st International Conference on Spoken Language Translation (IWSLT), Bangkok, Thailand, 15–16 August 2024. [Google Scholar] [CrossRef]
- Chen, H.; Cooper, M.L.; Joshi, D.; Girod, B. Multi-modal Language Models for Lecture Video Retrieval. In Proceedings of the ACM International Conference on Multimedia (MM), Orlando, FL, USA, 3–7 November 2014. [Google Scholar] [CrossRef]
- Müller, M.; Arzt, A.; Balke, S.; Dorfer, M.; Widmer, G. Cross-Modal Music Retrieval and Applications: An Overview of Key Methodologies. IEEE Signal Process. Mag. 2019, 36, 52–62. [Google Scholar] [CrossRef]
- Chen, B.; Xia, F.; Ichter, B.; Rao, K. Open-vocabulary Queryable Scene Representations for Real World Planning. In Proceedings of the IEEE International Conference on Robotics and Automation (ICRA), London, UK, 29 May–2 June 2023. [Google Scholar] [CrossRef]
- Dayma, B.; Patil, S.; Cuenca, P.; Saifullah, K.; Abraham, T.; Le Khac, P.; Melas, L.; Ghosh, R. DALL-E Mini. 2021. Available online: https://huggingface.co/spaces/dalle-mini/dalle-mini (accessed on 29 September 2024).
- OpenAI. ChatGPT Retrieval Plugin. 2023. Available online: https://github.com/openai/chatgpt-retrieval-plugin (accessed on 10 May 2026).
- Ramesh, A.; Dhariwal, P.; Nichol, A.; Chu, C.; Chen, M. Hierarchical Text-Conditional Image Generation with CLIP Latents. arXiv 2022, arXiv:2204.06125. [Google Scholar] [CrossRef]
- Rombach, R.; Blattmann, A.; Lorenz, D.; Esser, P.; Ommer, B. High-Resolution Image Synthesis with Latent Diffusion Models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), New Orleans, LA, USA, 19–24 June 2022; pp. 10684–10695. [Google Scholar] [CrossRef]
- Saharia, C.; Chan, W.; Saxena, S.; Li, L.; Whang, J.; Denton, E.L.; Ghasemipour, S.K.S.; Gontijo-Lopes, R.; Karagol Ayan, B.; Salimans, T.; et al. Photorealistic Text-to-Image Diffusion Models with Deep Language Understanding. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), New Orleans, LA, USA, 28 November–9 December 2022; Volume 35, pp. 36479–36494. [Google Scholar]
- Borji, A. Generated Faces in the Wild: Quantitative Comparison of Stable Diffusion, Midjourney and DALL-E 2. arXiv 2022, arXiv:2210.00586. [Google Scholar]
- Midjourney, Inc. Midjourney. 2022. Available online: https://www.midjourney.com/ (accessed on 29 September 2024).
- Betker, J.; Goh, G.; Jing, L.; Brooks, T.; Wang, J.; Li, L.; Ouyang, L.; Zhuang, J.; Lee, J.; Guo, Y.; et al. Improving Image Generation with Better Captions; Technical Report; OpenAI: San Francisco, CA, USA, 2023. [Google Scholar]
- Stability AI. Stable Diffusion. 2022. Available online: https://stability.ai/stable-diffusion (accessed on 29 September 2024).
- Black Forest Labs. FLUX.1: A High-Resolution Image Generation Model. 2024. Available online: https://github.com/black-forest-labs/flux (accessed on 29 September 2024).
- Liu, R.; Garrette, D.; Saharia, C.; Chan, W.; Roberts, A.; Narang, S.; Blok, I.; Mical, R.; Norouzi, M.; Constant, N. Character-Aware Models Improve Visual Text Rendering. In Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (ACL), Toronto, ON, Canada, 9–14 July 2023. [Google Scholar]
- Carlini, N.; Hayes, J.; Nasr, M.; Jagielski, M.; Sehwag, V.; Tramèr, F.; Balle, B.; Ippolito, D.; Wallace, E. Extracting Training Data from Diffusion Models. In Proceedings of the 32nd USENIX Security Symposium, Anaheim, CA, USA, 9–11 August 2023; pp. 5253–5270. [Google Scholar]
- Google. Google Lens. First released October 2017. 2017. Available online: https://lens.google.com/ (accessed on 29 September 2024).
- Microsoft. Bing Visual Search. 2017. Available online: https://www.bing.com/visualsearch (accessed on 29 September 2024).
- You.com. You.com: The AI Search Engine You Control. 2021. Available online: https://you.com/ (accessed on 29 September 2024).
- Perplexity AI. Perplexity AI. 2022. Available online: https://www.perplexity.ai/ (accessed on 29 September 2024).
- Zhou, T.; Mei, S.; Li, X.; Liu, Z.; Xiong, C.; Liu, Z.; Gu, Y.; Yu, G. MARVEL: Unlocking the Multi-Modal Capability of Dense Retrieval via Visual Module Plugin. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (ACL), Bangkok, Thailand, 11–16 August 2024. [Google Scholar] [CrossRef]
- Feng, J.; Tao, C.; Geng, X.; Shen, T.; Xu, C.; Long, G.; Zhao, D.; Jiang, D. Synergistic Interplay between Search and Large Language Models for Information Retrieval. arXiv 2023, arXiv:2305.07402. [Google Scholar] [CrossRef]
- Cohan, A.; Feldman, S.; Beltagy, I.; Downey, D.; Weld, D. SPECTER: Document-level Representation Learning using Citation-informed Transformers. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics (ACL), Virtual, 5–10 July 2020; pp. 2270–2282. [Google Scholar]
- LangChain. LangChain. 2022. Available online: https://langchain.com/ (accessed on 29 September 2024).
- Pinecone Systems Inc. Pinecone: Vector Database for Machine Learning. 2019. Available online: https://www.pinecone.io/ (accessed on 29 September 2024).
- Chroma. Chroma: The AI-Native Open-Source Embedding Database. 2022. Available online: https://www.trychroma.com/ (accessed on 29 September 2024).
- Johnson, J.; Douze, M.; Jégou, H. Billion-Scale Similarity Search with GPUs. IEEE Trans. Big Data 2019, 7, 535–547. [Google Scholar] [CrossRef]
- Weaviate. Weaviate: Vector Database. 2019. Available online: https://weaviate.io/ (accessed on 29 September 2024).
- Qdrant. Qdrant: Vector Database for the Next Generation of AI Applications. 2021. Available online: https://qdrant.tech/ (accessed on 29 September 2024).
- Vespa. Vespa: The Open Big Data Serving Engine. 2023. Available online: https://vespa.ai/ (accessed on 29 September 2024).
- Jégou, H.; Douze, M.; Schmid, C. Product Quantization for Nearest Neighbor Search. IEEE Trans. Pattern Anal. Mach. Intell. 2011, 33, 117–128. [Google Scholar] [CrossRef]
- Malkov, Y.A.; Yashunin, D.A. Efficient and robust approximate nearest neighbor search using hierarchical navigable small world graphs. IEEE Trans. Pattern Anal. Mach. Intell. 2018, 42, 824–836. [Google Scholar] [CrossRef] [PubMed]
- Li, Y.; Du, Y.; Zhou, K.; Wang, J.; Zhao, W.X.; Wen, J.R. Evaluating Object Hallucination in Large Vision-Language Models. In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP), Singapore, 6–10 December 2023; pp. 292–305. [Google Scholar]
- Wang, Z.; Wang, Z.; Le, L.; Zheng, H.S.; Mishra, S.; Perot, V.; Zhang, Y.; Mattapalli, A.; Taly, A.; Shang, J.; et al. Speculative RAG: Enhancing Retrieval Augmented Generation through Drafting. In Proceedings of the Thirteenth International Conference on Learning Representations (ICLR), Singapore, 24–28 April 2025. [Google Scholar] [CrossRef]
- Yang, Z.; Li, L.; Lin, K.; Wang, J.; Lin, C.C.; Liu, Z.; Wang, L. The Dawn of LMMs: Preliminary Explorations with GPT-4V(ision). arXiv 2023. [Google Scholar] [CrossRef]
- Runway AI, Inc. Runway ML. 2018. Available online: https://runwayml.com/ (accessed on 29 September 2024).
- Wang, J.; Yuan, H.; Chen, D.; Zhang, Y.; Wang, X.; Zhang, S. ModelScope Text-to-Video Technical Report. arXiv 2023, arXiv:2308.06571. [Google Scholar] [CrossRef]
- Guo, B.; Shan, X.; Chung, J. A Comparative Study on the Features and Applications of AI Tools-Focus on PIKA Labs and RUNWAY. Int. J. Internet Broadcast. Commun. 2024, 16, 86–91. [Google Scholar]
- Technology, K. Kling AI: Advanced Text-to-Video Generation Model. 2024. Available online: https://kling.kuaishou.com/en (accessed on 4 November 2024).
- Brohan, A.; Brown, N.; Carbajal, J.; Chebotar, Y.; Chen, X.; Choromanski, K.; Ding, T.; Driess, D.; Dubey, A.; Finn, C.; et al. RT-2: Vision-Language-Action Models Transfer Web Knowledge to Robotic Control. In Proceedings of the 7th Conference on Robot Learning (CoRL), PMLR, Atlanta, GA, USA, 6–9 November 2023; Volume 229. [Google Scholar] [CrossRef]
- Ahn, M.; Brohan, A.; Brown, N.; Chebotar, Y.; Cortes, O.; David, B.; Finn, C.; Fu, C.; Gopalakrishnan, K.; Hausman, K.; et al. Do As I Can, Not As I Say: Grounding Language in Robotic Affordances. In Proceedings of the 6th Conference on Robot Learning (CoRL), PMLR, Auckland, New Zealand, 14–18 December 2022; Volume 205, pp. 287–318. [Google Scholar] [CrossRef]
- Driess, D.; Xia, F.; Sajjadi, M.S.; Lynch, C.; Chowdhery, A.; Ichter, B.; Wahid, A.; Tompson, J.; Vuong, Q.; Yu, T.; et al. PaLM-E: An Embodied Multimodal Language Model. arXiv 2023, arXiv:2303.03378. [Google Scholar] [CrossRef]
- Huang, W.; Wang, C.; Zhang, R.; Li, Y.; Wu, J.; Li, F.-F. VoxPoser: Composable 3D Value Maps for Robotic Manipulation with Language Models. arXiv 2023, arXiv:2307.05973. [Google Scholar] [CrossRef]
- Huang, C.; Mees, O.; Zeng, A.; Burgard, W. Visual Language Maps for Robot Navigation. In Proceedings of the IEEE International Conference on Robotics and Automation (ICRA), London, UK, 29 May–2 June 2023. [Google Scholar]
- Chase, H. LangChain: Building Applications with LLMs Through Composability. 2022. Available online: https://github.com/langchain-ai/langchain (accessed on 10 May 2026).
- Lewis, P.; Perez, E.; Piktus, A.; Petroni, F.; Karpukhin, V.; Goyal, N.; Küttler, H.; Lewis, M.; Yih, W.t.; Rocktäschel, T.; et al. Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), Virtual, 6–12 December 2020; Volume 33, pp. 9459–9474. [Google Scholar]
- Choromanski, K.; Likhosherstov, V.; Dohan, D.; Song, X.; Gane, A.; Sarlos, T.; Hawkins, P.; Davis, J.; Mohiuddin, A.; Kaiser, L.; et al. Rethinking Attention with Performers. In Proceedings of the International Conference on Learning Representations (ICLR), Virtual, 3–7 May 2021. [Google Scholar] [CrossRef]
- Kim, W.; Son, B.; Kim, I. ViLT: Vision-and-Language Transformer Without Convolution or Region Supervision. In Proceedings of the International Conference on Machine Learning (ICML), PMLR, Virtual, 18–24 July 2021; pp. 5583–5594. [Google Scholar] [CrossRef]
- Beltagy, I.; Peters, M.E.; Cohan, A. Longformer: The Long-Document Transformer. arXiv 2020, arXiv:2004.05150. [Google Scholar] [CrossRef]
- Ramesh, A.; Pavlov, M.; Goh, G.; Gray, S.; Voss, C.; Radford, A.; Chen, M.; Sutskever, I. Zero-Shot Text-to-Image Generation. In Proceedings of the International Conference on Machine Learning (ICML), PMLR, Virtual, 18–24 July 2021; pp. 8821–8831. [Google Scholar] [CrossRef]
- Lu, J.; Clark, C.; Zellers, R.; Mottaghi, R.; Kembhavi, A. Unified-IO: A Unified Model for Vision, Language, and Multi-Modal Tasks. In Proceedings of the International Conference on Learning Representations (ICLR), Kigali, Rwanda, 1–5 May 2023. [Google Scholar] [CrossRef]
- Kaplan, J.; McCandlish, S.; Henighan, T.; Brown, T.B.; Chess, B.; Child, R.; Gray, S.; Radford, A.; Wu, J.; Amodei, D. Scaling Laws for Neural Language Models. arXiv 2020, arXiv:2001.08361. [Google Scholar] [CrossRef]
- Ganesh, P.; Chen, Y.; Lou, X.; Khan, M.H.A.; Yang, Y.; Sajjad, H.; Nakov, P.; Durrani, N. Compressing Large-Scale Transformer-Based Models: A Case Study on BERT. Trans. Assoc. Comput. Linguist. 2021, 9, 1061–1080. [Google Scholar] [CrossRef]
- Bengio, Y.; Léonard, N.; Courville, A. Estimating or Propagating Gradients Through Stochastic Neurons for Conditional Computation. arXiv 2013, arXiv:1308.3432. [Google Scholar] [CrossRef]
- Jia, C.; Yang, Y.; Xia, Y.; Chen, Y.T.; Parekh, Z.; Pham, H.; Le, Q.; Sung, Y.H.; Li, Z.; Duerig, T. Scaling Up Visual and Vision-Language Representation Learning with Noisy Text Supervision. In Proceedings of the International Conference on Machine Learning (ICML), PMLR, Virtual, 18–24 July 2021; pp. 4904–4916. [Google Scholar]
- Chen, T.; Xu, B.; Zhang, C.; Guestrin, C. Training Deep Nets with Sublinear Memory Cost. arXiv 2016, arXiv:1604.06174. [Google Scholar] [CrossRef]
- Katharopoulos, A.; Vyas, A.; Pappas, N.; Fleuret, F. Transformers are RNNs: Fast Autoregressive Transformers with Linear Attention. In Proceedings of the International Conference on Machine Learning (ICML), PMLR, Virtual, 13–18 July 2020; pp. 5156–5165. [Google Scholar]
- Micikevicius, P.; Narang, S.; Alben, J.; Diamos, G.; Elsen, E.; Garcia, D.; Ginsburg, B.; Houston, M.; Kuchaiev, O.; Venkatesh, G.; et al. Mixed Precision Training. In Proceedings of the International Conference on Learning Representations (ICLR), Vancouver, BC, Canada, 30 April–3 May 2018. [Google Scholar] [CrossRef]
- Ngiam, J.; Khosla, A.; Kim, M.; Nam, J.; Lee, H.; Ng, A.Y. Multimodal Deep Learning. In Proceedings of the International Conference on Machine Learning (ICML), Bellevue, WA, USA, 28 June–2 July 2011; pp. 689–696. [Google Scholar]
- Chen, L.; Gan, Z.; Cheng, Y.; Li, L.; Carin, L.; Liu, J. Graph Optimal Transport for Cross-Domain Alignment. In Proceedings of the International Conference on Machine Learning (ICML), PMLR, Virtual, 13–18 July 2020; Volume 119, pp. 1542–1553. Available online: https://proceedings.mlr.press/v119/chen20e.html (accessed on 10 March 2026).
- Liu, Z.; Ning, J.; Cao, Y.; Wei, Y.; Zhang, Z.; Lin, S.; Hu, H. Video Swin Transformer. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), New Orleans, LA, USA, 19–24 June 2022; pp. 3202–3211. [Google Scholar] [CrossRef]
- Child, R.; Gray, S.; Radford, A.; Sutskever, I. Generating Long Sequences with Sparse Transformers. arXiv 2019, arXiv:1904.10509. [Google Scholar] [CrossRef]
- Peng, X.; Bai, Q.; Xia, X.; Huang, Z.; Saenko, K.; Wang, B. Moment Matching for Multi-Source Domain Adaptation. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), Seoul, Republic of Korea, 27 October–2 November 2019; pp. 1406–1415. [Google Scholar]
- Kirkpatrick, J.; Pascanu, R.; Rabinowitz, N.; Veness, J.; Desjardins, G.; Rusu, A.A.; Milan, K.; Quan, J.; Ramalho, T.; Grabska-Barwinska, A.; et al. Overcoming Catastrophic Forgetting in Neural Networks. Proc. Natl. Acad. Sci. USA 2017, 114, 3521–3526. [Google Scholar] [CrossRef]
- Cohen, J.; Rosenfeld, E.; Kolter, Z. Certified Adversarial Robustness via Randomized Smoothing. In Proceedings of the International Conference on Machine Learning (ICML), PMLR, Long Beach, CA, USA, 9–15 June 2019; Volume 97, pp. 1310–1320. Available online: https://proceedings.mlr.press/v97/cohen19c.html (accessed on 10 March 2026).
- Naseer, M.M.; Khan, S.; Khan, M.H.; Khan, F.S.; Porikli, F. Cross-Domain Transferability of Adversarial Perturbations. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), Vancouver, BC, Canada, 8–14 December 2019; Volume 32. Available online: https://proceedings.neurips.cc/paper/2019/hash/99cd3843754d20ec3c5885d805db8a32-Abstract.html (accessed on 10 March 2026).
- Madry, A.; Makelov, A.; Schmidt, L.; Tsipras, D.; Vladu, A. Towards Deep Learning Models Resistant to Adversarial Attacks. In Proceedings of the International Conference on Learning Representations (ICLR), Vancouver, BC, Canada, 30 April–3 May 2018. [Google Scholar] [CrossRef]
- Lazaridou, A.; Kuncoro, A.; Gribovskaya, E.; Agrawal, D.; Liska, A.; Terzi, T.; Gimenez, M.; de Masson d’Autume, C.; Kocisky, T.; Ruder, S.; et al. Mind the Gap: Assessing Temporal Generalization in Neural Language Models. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), Virtual, 6–14 December 2021; Volume 34. [Google Scholar] [CrossRef]
- Guo, C.; Pleiss, G.; Sun, Y.; Weinberger, K.Q. On Calibration of Modern Neural Networks. In Proceedings of the International Conference on Machine Learning (ICML), PMLR, Sydney, Australia, 6–11 August 2017; pp. 1321–1330. [Google Scholar]
- Blei, D.M.; Kucukelbir, A.; McAuliffe, J.D. Variational Inference: A Review for Statisticians. J. Am. Stat. Assoc. 2017, 112, 859–877. [Google Scholar] [CrossRef]
- Tack, J.; Mo, S.; Jeong, J.; Shin, J. CSI: Novelty Detection via Contrastive Learning on Distributionally Shifted Instances. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), Virtual, 6–12 December 2020; Volume 33, pp. 11839–11852. [Google Scholar]
- Abnar, S.; Zuidema, W. Quantifying Attention Flow in Transformers. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics (ACL), Virtual, 5–10 July 2020; pp. 4190–4197. [Google Scholar] [CrossRef]
- Sundararajan, M.; Taly, A.; Yan, Q. Axiomatic Attribution for Deep Networks. In Proceedings of the International Conference on Machine Learning (ICML), PMLR, Sydney, Australia, 6–11 August 2017; pp. 3319–3328. [Google Scholar]
- Ribeiro, M.T.; Singh, S.; Guestrin, C. “Why Should I Trust You?”: Explaining the Predictions of Any Classifier. In Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD), San Francisco, CA, USA, 13–17 August 2016; pp. 1135–1144. [Google Scholar]
- Rebuffi, S.A.; Fong, R.; Ji, X.; Vedaldi, A. There and Back Again: Revisiting Backpropagation Saliency Methods. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Virtual, 14–19 June 2020. [Google Scholar] [CrossRef]
- Kim, B.; Wattenberg, M.; Gilmer, J.; Cai, C.; Wexler, J.; Viegas, F.; Sayres, R. Interpretability Beyond Feature Attribution: Quantitative Testing with Concept Activation Vectors (TCAV). In Proceedings of the International Conference on Machine Learning (ICML), PMLR, Stockholm, Sweden, 10–15 July 2018; pp. 2668–2677. [Google Scholar]
- Mao, J.; Gan, C.; Kohli, P.; Tenenbaum, J.B.; Wu, J. The Neuro-Symbolic Concept Learner: Interpreting Scenes, Words, and Sentences from Natural Supervision. In Proceedings of the International Conference on Learning Representations (ICLR), New Orleans, LA, USA, 6–9 May 2019. [Google Scholar] [CrossRef]
- Ellis, K.; Ritchie, D.; Solar-Lezama, A.; Tenenbaum, J.B. Learning to Infer Graphics Programs from Hand-Drawn Images. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), Montréal, QC, Canada, 2–8 December 2018; Volume 31. [Google Scholar] [CrossRef]
- Johnson, J.; Hariharan, B.; van der Maaten, L.; Fei-Fei, L.; Zitnick, C.L.; Girshick, R. CLEVR: A Diagnostic Dataset for Compositional Language and Elementary Visual Reasoning. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Honolulu, HI, USA, 21–26 July 2017; pp. 2901–2910. [Google Scholar]
- Lake, B.M.; Baroni, M. Generalization without Systematicity: On the Compositional Skills of Sequence-to-Sequence Recurrent Networks. In Proceedings of the International Conference on Machine Learning (ICML), PMLR, Stockholm, Sweden, 10–15 July 2018; pp. 2873–2882. [Google Scholar]
- Abdin, M.; Aneja, J.; Awadalla, H.; Awadallah, A.; Awan, A.A.; Bach, N.; Bahree, A.; Bakhtiari, A.; Bao, J.; Behl, H.; et al. Phi-3 Technical Report: A Highly Capable Language Model Locally on Your Phone. Phi-3-Vision described in the technical report. arXiv 2024, arXiv:2404.14219. [Google Scholar] [CrossRef]
- Konidena, B.K.; Malaiyappan, J.N.A.; Tadimarri, A. Ethical Considerations in the Development and Deployment of AI Systems. Eur. J. Technol. 2024, 8, 41–53. [Google Scholar] [CrossRef]
- Peng, B.; Chen, K.; Li, M.; Feng, P.; Bi, Z.; Liu, J.; Song, X.; Niu, Q. Securing Large Language Models: Addressing Bias, Misinformation, and Prompt Attacks. arXiv 2024, arXiv:2409.08087. [Google Scholar] [CrossRef]
- Chang, Y.; Chang, Y.; Wu, Y. BA-LoRA: Bias-Alleviating Low-Rank Adaptation to Mitigate Catastrophic Inheritance in Large Language Models. arXiv 2024, arXiv:2408.04556. [Google Scholar] [CrossRef]
- He, F.; Zhu, T.; Ye, D.; Liu, B.; Zhou, W.; Yu, P.S. The Emerged Security and Privacy of LLM Agent: A Survey with Case Studies. arXiv 2024, arXiv:2407.19354. [Google Scholar] [CrossRef]
- Friha, O.; Ferrag, M.A.; Kantarci, B.; Cakmak, B.; Ozgun, A.; Ghoualmi-Zine, N. LLM-Based Edge Intelligence: A Comprehensive Survey on Architectures, Applications, Security and Trustworthiness. IEEE Open J. Commun. Soc. 2024, 5, 5799–5856. [Google Scholar] [CrossRef]
- Chen, C.; Gong, X.; Liu, Z.; Jiang, W.; Goh, S.Q.; Lam, K.Y. Trustworthy, Responsible, and Safe AI: A Comprehensive Architectural Framework for AI Safety with Challenges and Mitigations. arXiv 2024, arXiv:2408.12935. [Google Scholar] [CrossRef]
- Rosenstrauch, D.; Mangla, U.; Gupta, A.; Masau, C.T. Artificial Intelligence and Ethics. In Digital Health Entrepreneurship; Springer: Cham, Switzerland, 2023; pp. 225–239. [Google Scholar]
- Ray, P.P. ChatGPT: A Comprehensive Review on Background, Applications, Key Challenges, Bias, Ethics, Limitations and Future Scope. Internet Things Cyber Phys. Syst. 2023, 3, 121–154. [Google Scholar] [CrossRef]
- Xu, Y.; Hu, L.; Zhao, J.; Qiu, Z.; Ye, Y.; Gu, H. A Survey on Multilingual Large Language Models: Corpora, Alignment, and Bias. arXiv 2024, arXiv:2404.00929. [Google Scholar] [CrossRef]
- Basta, C.R.S. Gender Bias in Natural Language Processing. Ph.D. Thesis, Universitat Politècnica de Catalunya, Barcelona, Spain, 2022. [Google Scholar]
- Magesh, V.; Surani, F.; Dahl, M.; Suzgun, M.; Manning, C.D.; Ho, D.E. Hallucination-Free? Assessing the Reliability of Leading AI Legal Research Tools. arXiv 2024, arXiv:2405.20362. [Google Scholar] [CrossRef]
- Brown, H.; Lee, K.; Mireshghallah, F.; Shokri, R.; Tramèr, F. What Does it Mean for a Language Model to Preserve Privacy? In Proceedings of the 2022 ACM Conference on Fairness, Accountability, and Transparency (FAccT), Seoul, Republic of Korea, 21–24 June 2022; pp. 2280–2292. [Google Scholar]
- Yao, Y.; Duan, J.; Xu, K.; Cai, Y.; Sun, Z.; Zhang, Y. A Survey on Large Language Model (LLM) Security and Privacy: The Good, the Bad, and the Ugly. High-Confid. Comput. 2024, 4, 100211. [Google Scholar] [CrossRef]
- Pan, X.; Zhang, M.; Ji, S.; Yang, M. Privacy Risks of General-Purpose Language Models. In Proceedings of the 2020 IEEE Symposium on Security and Privacy (SP), Virtual, 18–20 May 2020; IEEE: Piscataway, NJ, USA, 2020; pp. 1314–1331. [Google Scholar]
- Weidinger, L.; Mellor, J.; Rauh, M.; Griffin, C.; Uesato, J.; Huang, P.S.; Cheng, M.; Glaese, M.; Balle, B.; Kasirzadeh, A.; et al. Ethical and social risks of harm from language models. arXiv 2021, arXiv:2112.04359. [Google Scholar] [CrossRef]
- Zhang, D.; Finckenberg-Broman, P.; Hoang, T.; Pan, S.; Xing, Z.; Staples, M.; Xu, X. Right to be Forgotten in the Era of Large Language Models: Implications, Challenges, and Solutions. Ai Ethics 2025, 5, 2445–2454. [Google Scholar] [CrossRef]
- Weidinger, L.; Uesato, J.; Rauh, M.; Griffin, C.; Huang, P.S.; Mellor, J.; Glaese, A.; Cheng, M.; Balle, B.; Kasirzadeh, A.; et al. Taxonomy of Risks Posed by Language Models. In Proceedings of the 2022 ACM Conference on Fairness, Accountability, and Transparency (FAccT), Seoul, Republic of Korea, 21–24 June 2022; pp. 214–229. [Google Scholar]
- Sanderson, C.; Douglas, D.; Lu, Q.; Schleiger, E.; Whittle, J.; Lacey, J.; Newnham, G.; Hajkowicz, S.; Robinson, C.; Hansen, D. AI Ethics Principles in Practice: Perspectives of Designers and Developers. IEEE Trans. Technol. Soc. 2023, 4, 171–187. [Google Scholar] [CrossRef]
- Phattanaviroj, T.; Moslehpour, M.; Walawalkar, A.M. Data Ethics and Privacy. In Challenges in Large Language Model Development and AI Ethics; IGI Global: Hershey, PA, USA, 2024; pp. 321–353. [Google Scholar]
- Kibriya, H.; Khan, W.Z.; Siddiqa, A.; Khan, M.K. Privacy Issues in Large Language Models: A Survey. Comput. Electr. Eng. 2024, 120, 109698. [Google Scholar] [CrossRef]
- Singh, T.; Aditya, H.; Madisetti, V.K.; Bahga, A. Whispered Tuning: Data Privacy Preservation in Fine-Tuning LLMs through Differential Privacy. J. Softw. Eng. Appl. 2024, 17, 1–22. [Google Scholar] [CrossRef]
- Charles, Z.; Ganesh, A.; McKenna, R.; McMahan, H.B.; Mitchell, N.; Pillutla, K.; Rush, K. Fine-Tuning Large Language Models with User-Level Differential Privacy. arXiv 2024, arXiv:2407.07737. [Google Scholar] [CrossRef]
- Kuang, W.; Qian, B.; Li, Z.; Chen, D.; Gao, D.; Pan, X.; Xie, Y.; Li, Y.; Ding, B.; Zhou, J. FederatedScope-LLM: A Comprehensive Package for Fine-Tuning Large Language Models in Federated Learning. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining (KDD), Barcelona, Spain, 25–29 August 2024; pp. 5260–5271. [Google Scholar]
- Wiest, I.C.; Lessmann, M.E.; Wolf, F.; Ferber, D.; Van Treeck, M.; Zhu, J.; Ebert, M.P.; Westphalen, C.B.; Wermke, M.; Kather, J.N. Anonymizing Medical Documents with Local, Privacy Preserving Large Language Models: The LLM-Anonymizer. medRxiv 2024. [Google Scholar] [CrossRef]
- Li, Q.; Hong, J.; Xie, C.; Tan, J.; Xin, R.; Hou, J.; Yin, X.; Wang, Z.; Hendrycks, D.; Wang, Z.; et al. LLM-PBE: Assessing Data Privacy in Large Language Models. arXiv 2024, arXiv:2408.12787. [Google Scholar] [CrossRef]

















| Capability | Description | Representative Applications |
|---|---|---|
| Cross-modal Understanding | Processing and reasoning over inputs from multiple modalities simultaneously | Visual question answering (VQA), audio–visual speech recognition |
| Text-to-Image Generation | Generating images conditioned on natural language descriptions | DALL-E 3, Stable Diffusion, Midjourney |
| Image Captioning | Producing natural language descriptions of image content | NoCaps, MS COCO captioning |
| Cross-modal Retrieval | Finding relevant content across modalities given a query | CLIP-based image search, video retrieval |
| Visual Grounding | Localizing and identifying objects referenced by language | Referring expression comprehension, Grounding DINO |
| Multimodal Generation | Producing coherent content spanning text and vision jointly | Illustrated story generation, slide deck synthesis |
| Embodied AI | Controlling agents in physical or simulated environments through multimodal perception | Robotic manipulation, vision–language navigation |
| Document Understanding | Parsing and reasoning over text-rich images such as charts and PDFs | DocVQA, ChartQA, InfographicVQA |
| Model | Yr | Visual Encoder | LM Backbone | Connector | Training Objective | Post-Training |
|---|---|---|---|---|---|---|
| Flamingo | 2022 | NFNet/CLIP ViT | Chinchilla (70B) | Gated cross-attn. | LM + ITC | None |
| BLIP-2 | 2023 | CLIP ViT-L/14 | OPT/FlanT5 | Q-Former | ITC + ITM + ITG | None |
| MiniGPT-4 | 2023 | EVA-CLIP ViT | Vicuna-13B | Linear proj. | Captioning | Instr. tuning |
| LLaVA | 2023 | CLIP ViT-L/14 | LLaMA-13B | Linear proj. | VQA + caption | Instr. tuning |
| LLaVA-1.5 | 2023 | CLIP ViT-L/14 | Vicuna-13B | MLP proj. | VQA + caption | Instr. tuning |
| InstructBLIP | 2023 | CLIP/EVA-CLIP | Vicuna/FlanT5 | Q-Former | Instr.-following | Instr. tuning |
| mPLUG-Owl | 2023 | CLIP ViT-L/14 | LLaMA-7B | Visual abstractor | LM + ITC | Instr. tuning |
| IDEFICS | 2023 | OpenCLIP ViT-H | LLaMA | Gated cross-attn. | LM + ITC | Instr. tuning |
| InternVL | 2024 | InternViT-6B | InternLM-20B | MLP | Contrastive + gen. | Instr. tuning |
| Qwen-VL | 2023 | OpenCLIP ViT-G | Qwen-7B | Cross-attn. | VQA + det. + cap. | Instr. + RLHF |
| DeepSeek-VL | 2024 | SigLIP + SAM-B | DeepSeek-LLM-7B | MLP proj. | VQA + cap. + OCR | Instr. tuning + DPO |
| LLaVA-OneVision | 2024 | SigLIP-SO400M | Qwen2-7B | MLP proj. | VQA + cap. | Instr. tuning |
| Qwen2-VL | 2024 | ViT-675M (native) | Qwen2-7B | MLP-based merger | Multimodal | Instr. + DPO |
| InternVL2 | 2024 | InternViT-6B | InternLM2-Chat | MLP | Contrastive + gen. | Instr. + RLHF |
| Cambrian-1 [8] | 2024 | Multi-encoder (CLIP + SigLIP + DINOv2 + ConvNeXt) | Vicuna/LLaMA-3 | Spatial Vision Aggregator | VQA + cap. | Instr. tuning |
| CogVLM [9] | 2023 | EVA2-CLIP-E | Vicuna/LLaMA | Visual expert module | Pre-train + SFT | Instr. tuning |
| MiniCPM-V 2.6 [10] | 2024 | SigLIP-400M | MiniCPM/Qwen2-7B | Perceiver Resampler | Multi-task | Instr. + DPO |
| Yi-VL [11] | 2024 | CLIP ViT-H/14 | Yi-6B/Yi-34B | MLP proj. | Vision–language SFT | Instr. tuning |
| GPT-4V | 2023 | Proprietary | GPT-4 | Proprietary | Undisclosed | RLHF |
| GPT-4o | 2024 | Proprietary (native) | GPT-4o | Proprietary (native) | Undisclosed | RLHF † |
| Gemini | 2023 | Proprietary | Gemini | Proprietary | Multimodal | RLHF/instr. |
| Claude 3 | 2024 | Proprietary | Claude 3 | Proprietary | Undisclosed | Constitutional AI † |
| Component | Function | Common Implementations | Key Trade-Offs |
|---|---|---|---|
| Visual Encoder | Extracts spatial and semantic features from images | CLIP ViT-L/14, EVA-CLIP, InternViT-6B | Higher resolution → richer features but higher cost |
| Language Backbone | Processes text; generates output tokens autoregressively | LLaMA, Vicuna, GPT-4, Qwen, FlanT5 | Larger LM → better reasoning but higher memory |
| Connector/Fusion Module | Bridges visual and language representation spaces | Q-Former (BLIP-2), MLP proj. (LLaVA), gated cross-attn. (Flamingo) | Q-Former reduces tokens but may lose spatial detail |
| Cross-modal Attention | Focuses the language model on relevant image regions | Standard cross-attention; sparse cross-attention | Full attention is expressive but costly for long images |
| Tokenizer (vision) | Converts image patches into discrete or continuous tokens | Patch embedding (ViT); discrete VQ-VAE codes | Discrete tokens: compact; continuous: higher fidelity |
| Output Head/Decoder | Generates text or structured outputs conditioned on fused representations | Autoregressive LM head; classification head | Autoregressive provides flexibility; classification is faster |
| Model | Params (B) | Visual Encoder | LM Backbone | Connector | VQAv2 | GQA | TextVQA | MMBench | MMMU |
|---|---|---|---|---|---|---|---|---|---|
| BLIP-2 [22] | 12.1 | ViT-G/14 | FlanT5-XXL | Q-Former | 65.0 | 41.0 | 40.6 | – | – |
| InstructBLIP [29] | 12.1 | ViT-G/14 | FlanT5-XXL | Q-Former | – | 49.5 | 50.7 | 36.0 | – |
| MiniGPT-4 [30] | 8.0 | ViT-G/14 | Vicuna-7B | Linear | – | 30.8 | – | 23.0 | – |
| LLaVA-1.5 (7B) [31] | 7.2 | CLIP ViT-L/14 | Vicuna-7B | MLP | 78.5 | 62.0 | 58.2 | 64.3 | 35.4 |
| LLaVA-1.5 (13B) [31] | 13.4 | CLIP ViT-L/14 | Vicuna-13B | MLP | 80.0 | 63.3 | 61.3 | 67.7 | 36.4 |
| Qwen-VL-Chat [32] | 9.6 | ViT-G | Qwen-7B | Cross-attn | 78.2 | 57.5 | 61.5 | 60.6 | – |
| InternVL-Chat-V1.5 [33] | 26.0 | InternViT-6B | InternLM2-20B | MLP | 80.6 | 64.8 | 68.0 | 82.2 | 46.8 |
| DeepSeek-VL [34] | 7.0 | SigLIP + SAM-B | DeepSeek-7B | MLP | – | – | – | 73.2 | 36.6 |
| LLaVA-OneVision (7B) [35] | 8.0 | SigLIP-SO400M | Qwen2-7B | MLP | – | – | – | 80.8 | 48.8 |
| Qwen2-VL (7B) [36] | 8.3 | ViT-675M | Qwen2-7B | MLP-based merger | – | – | 84.3 | 83.0 | 54.1 |
| InternVL2 (8B) [37] | 8.1 | InternViT-300M | InternLM2.5-7B | MLP | – | – | 77.4 | 81.7 | 51.8 |
| GPT-4V [38] | – | Undisclosed | Undisclosed | Undisclosed | 77.2 * | 62.0 * | 78.0 * | 75.1 * | 56.8 * |
| GPT-4o [39] | – | Native | Native | Native | – | – | – | 83.4 * | 69.1 * |
| Gemini Pro [40] | – | Native | Native MoE | Native | 71.2 * | – | 74.6 * | 73.6 * | 47.9 * |
| Claude 3 Opus [41] | – | Undisclosed | Undisclosed | Undisclosed | – | – | – | 76.7 * | 59.4 * |
| Disclosure Class | Examples | Known Quantities | Comparison Caveat |
|---|---|---|---|
| Open weights or detailed papers | LLaVA-1.5, Qwen2-VL, InternVL2, LLaVA-OneVision | Approximate parameters, encoder, backbone, connector, many benchmarks | More suitable for architecture-level comparison, although data mixtures and post-training recipes may still be incomplete. |
| Partially disclosed | Gemini, GPT-4V technical reports, Claude model cards | Product capability, selected benchmarks, safety notes | Useful for behavioral comparison, but architecture and training data remain too opaque for controlled causal claims. |
| Closed proprietary | GPT-4o, Claude 3, hosted multimodal assistants | Public product behavior and third-party benchmark scores | Training data scale, data quality, multimodal mixture, post-training cost, and serving stack are undisclosed and likely not comparable to open-source systems. |
| Strategy | Method | Representative Models | Key Strength |
|---|---|---|---|
| Contrastive Learning | Align image–text pairs | CLIP, ALIGN, FLAVA | Zero-shot transfer |
| Masked LM/MLM | Predict masked tokens | VisualBERT, VL-BERT, UNITER | Joint cross-modal representation |
| VQA Pre-training | Answer image questions | ViLBERT, LXMERT | Visual reasoning |
| VLP (multi-task) | Image–text matching + MLM | OSCAR, ALBEF, BLIP | Comprehensive multimodal understanding |
| Generative (LM) | Predict next token | Flamingo, BLIP-2, LLaVA | Open-ended generation |
| Technique | Description | Param. Efficiency | Use Case |
|---|---|---|---|
| Full Fine-tuning | Update all parameters | Low | Large task-specific datasets |
| LoRA | Low-rank adaptation of weight matrices | High | General downstream tasks |
| QLoRA | Quantized LoRA (4-bit) | Very High | Memory-constrained settings |
| Adapter Tuning | Insert small adapter modules | High | Multi-task adaptation |
| Prefix Tuning | Prepend trainable prefix tokens | High | Prompt-sensitive tasks |
| Instruction Tuning | Fine-tune on NL instruction datasets | Medium | Interactive/assistant systems |
| Multitask Fine-tuning | Train on multiple tasks jointly | Medium | Related task groups |
| Dataset | Task | Size | Key Features | Ref. |
|---|---|---|---|---|
| MS COCO | Captioning, Detection | 330,000 images | Multi-caption annotations (5 per image) | [75] |
| Flickr30K | Captioning, Retrieval | 31,000 images | 5 captions per image, entity grounding | [76] |
| VQAv2 | Visual QA | 1.1 million questions | Balanced yes/no answer distribution | [24] |
| TextVQA | Text-in-image QA | 28,000 images | Requires OCR + visual reasoning | [77] |
| GQA | Compositional QA | 22 million questions | Multi-step spatial reasoning | [25] |
| OK-VQA | Knowledge-based QA | 14,000 questions | Requires external world knowledge | [78] |
| NoCaps | Novel object captioning | 15,000 images | Evaluates generalization to new objects | [79] |
| NLVR2 | Visual reasoning | 107,000 pairs | Sentence–image pair reasoning | [80] |
| Benchmark | Task Type | Evaluation Dimension | Known Weaknesses/Traps | Recommended Reporting |
|---|---|---|---|---|
| MMBench | General multimodal | Perception, reasoning, knowledge | Prompt-sensitive; leakage risk | Report prompt template; model + split version |
| SEED-Bench | General multimodal | 12 evaluation dimensions | Skewed toward spatial tasks | Report all 12 dimensions separately |
| MME | Perception + cognition | Y/N + open-ended | Binary bias; ceiling effects | Report perception and cognition scores separately |
| MMMU | Multi-discipline | College-level knowledge | Requires domain expertise | Report per-discipline breakdown |
| HallusionBench | Hallucination | Visual grounding accuracy | Model-specific failure modes | Pair with POPE for cross-validation |
| POPE | Object hallucination | Precision/recall on objects | Adversarial vs. random split gap | Report all three splits (random, popular, adversarial) |
| VQAv2 | Open-ended VQA | Accuracy on answer strings | Answer distribution bias | Use test-dev; avoid leakage |
| GQA | Compositional reasoning | Accuracy, consistency, validity | Data contamination risk | Report accuracy + consistency jointly |
| Section 4 Principle | Case Study System | How the System Extends the Principle | Deployment Limitation |
|---|---|---|---|
| Cross-modal retrieval | Google Lens, Bing Visual Search, MARVEL | Adds OCR, object/entity linking, ANN retrieval, reranking, and web or knowledge-graph grounding on top of CLIP-like shared embedding principles. | Product internals are partly closed; retrieval quality depends on corpus freshness and indexing. |
| Image/video generation | DALL-E 3, Midjourney, Stable Diffusion, Runway, Kling | Converts task-level generation into deployed prompt rewriting, diffusion, safety filtering, and iterative editing workflows. | Often closed-source or commercial; benchmark protocols are inconsistent. |
| Evidence-grounded generation | LangChain, FAISS, Pinecone, Speculative RAG | Combines cross-modal retrieval with external evidence selection and LLM generation to reduce knowledge staleness and hallucination. | End-to-end quality depends on embedding, retrieval recall, reranking, and generation, not on any single component. |
| Multimodal dialogue | GPT-4V/4o, Claude 3, Gemini | Integrates visual encoders, connector modules, instruction tuning, and safety post-training into interactive assistants. | Proprietary systems disclose limited architectural, data, and serving details. |
| Embodied/agent tasks | RT-2, PaLM-E, SayCan, VoxPoser | Extends vision–language reasoning into action selection, affordance grounding, spatial planning, and robot control. | Physical deployment requires safety constraints, calibration, and real-time sensory feedback. |
| Model/System | Core Paradigm | Primary Domain |
|---|---|---|
| Midjourney, DALL-E 3 | Text-to-image generation | Creative generation |
| Stable Diffusion | Open-weight latent diffusion | Research & art |
| GPT-4V/4o, Claude 3, Gemini | Multimodal assistant models | Multimodal assistants |
| Google Lens, MARVEL | Dense visual retrieval | Search & e-commerce |
| BLIP-2, LLaVA | VLP + instruction tuning | VQA & captioning |
| Model | Type | Core Technique | Key Strength | Notable Limitation | Access |
|---|---|---|---|---|---|
| Midjourney | Text-to-img | Diffusion (proprietary) | Artistic quality; creative style | Closed-source; limited control | Discord |
| DALL-E 3 | Text-to-img | Closed generation pipeline; prompt rewriting | High prompt fidelity; ChatGPT-integrated | Usage cost; content restrictions | OpenAI API |
| Stable Diffusion | Text-to-img | Latent diffusion | Open weights; large community ecosystem | Needs tuning; safety filtering | Open weights |
| Imagen | Text-to-img | Cascaded diffusion | Photorealistic detail | Closed source; limited reproduction | |
| Flux.1 | Text-to-img | Rectified-flow transformer | High-fidelity image generation | Partial disclosure; mixed access | API/open weights |
| Google Lens | Visual search | CNN + Transformer | Real-world object/text recognition | Retrieval only; no generation | Mobile/Web |
| MARVEL | Cross-modal retrieval | Dense retrieval | Dense multimodal retrieval | Retrieval only; no generation | Research |
| System | Index Type | Multimodal | Scalability | License | Latency Note |
|---|---|---|---|---|---|
| Pinecone [136] | Managed ANN | Text + image emb. | Billions of vectors | Proprietary | Workload-dependent managed service |
| Chroma [137] | HNSW | Text + image emb. | Millions | Open-source | Local setup dependent |
| FAISS [138] | IVF/HNSW/PQ | Embedding-agnostic | Billions (GPU) | Open-source | Hardware/index dependent |
| Weaviate [139] | HNSW + filters | Native multimodal | Billions | Open-source | Cluster/config dependent |
| Qdrant [140] | HNSW + payload | Text + image emb. | Billions | Open-source | Cluster/config dependent |
| Vespa [141] | ANN + BM25 | Text + tensor | Billions | Open-source | Cluster/config dependent |
| Feature | GPT-4V (OpenAI) | Claude 3 (Anthropic) | Gemini (Google) |
|---|---|---|---|
| Input modalities | Text + image (JPEG, PNG) | Text + image/PDF pages | Text, image, audio, video |
| Architecture | Undisclosed †; multimodal extension of GPT-4 | Undisclosed †; multimodal assistant model | Mixture-of-Experts + multimodal [40] |
| Alignment methodology | Moderation filters + RLHF | Constitutional AI + RLHF † | Responsible AI principles |
| Strongest use case | Visual QA, charts, documents | Long-document + image reasoning | Multimodal reasoning and interaction |
| Known weakness | Spatial reasoning errors | Closed architecture; visual reasoning limits | Audio/video latency; hallucination |
| Access | OpenAI API/ChatGPT | Anthropic API/Claude.ai | Google AI Studio/Gemini App |
| Key benchmarks | Strong reported vision-language performance; version-dependent | Strong reported multimodal and long-context performance | Strong reported multimodal performance; version-dependent |
| System | Primary Route | Capability Addressed | Remaining Limitation |
|---|---|---|---|
| VideoCoCa | Video–text contrastive/captioning | Reuses image–text pre-training for video retrieval, captioning, VQA, and classification. | Flattened frame embeddings can miss long-range event structure. |
| Video-LLaMA | Video/audio Q-Formers | Aligns temporal visual and auditory information with an LLM for video dialogue. | Fixed query compression can bottleneck fine temporal evidence. |
| Video-LLaVA | Unified image–video representation | Improves transfer between image and video instruction tuning. | Still depends on frame budget and short-context visual evidence. |
| LangRepo | Language memory repository | Maintains interpretable state across long videos through chunk-level reading and writing. | Depends on summary quality and may lose visually fine-grained details. |
| LongVideoBench | Benchmark | Tests long-context video–language understanding and temporal retrieval over extended clips. | Benchmark success may still underrepresent open-ended real-world video tasks. |
| Dimension | What to Report | Why It Matters | Example Interpretation |
|---|---|---|---|
| Model size/precision | Parameters; FP16, BF16, INT8, 4-bit | Determines weight memory and hardware feasibility | 13B 4-bit weights are about 6.5 GB before overhead; 70B FP16 weights are about 140 GB. |
| KV/activation memory | Context length, batch size, layers, hidden size | Often dominates long-video or multi-image inference | More frames increase visual tokens and KV cache even if weight memory is unchanged. |
| Visual-token budget | Image resolution; frames sampled; connector compression | Controls attention cost and evidence retention | Q-Former-style compression saves memory but may discard fine spatial or temporal evidence. |
| Hardware class | Mobile NPU, single GPU, multi-GPU server | Latency and energy are hardware-dependent | A mobile 13B run and an 8 × H100 70B run answer different deployment questions. |
| Throughput/latency | Tokens/s, requests/s, time-to-first-token | Separates interactive usability from batch efficiency | A fast retrieval layer may be irrelevant if autoregressive generation dominates latency. |
| Energy/carbon proxy | ; carbon regional carbon intensity | Avoids unsupported absolute carbon claims while making environmental cost reportable | Report power, runtime, utilization, and region rather than a context-free carbon number. |
| Inference cost | Hardware rental/API cost per request or per 1 K tokens | Determines deployability at scale | A model with slightly lower accuracy may be preferable if it reduces cost by an order of magnitude. |
| Challenge Category | Key Problems | Representative Approaches | Open Problems |
|---|---|---|---|
| Architectural Scalability | Quadratic attention cost; modality-specific vs. unified encoders | Performer [158]; hybrid encoders | Optimal modality fusion; multimodal scaling laws |
| Cross-modal Alignment | Semantic gap between visual and language spaces | CLIP [7]; contrastive learning | Fine-grained alignment; 3+ modality alignment |
| Hallucination & Reliability | Factual errors; object hallucination in captions | RLHF; HACL [51] | Grounding-robust generation; calibrated uncertainty |
| Interpretability | Black-box decision-making; cross-modal attribution | TCAV [187]; attention visualization | Concept-level explanations across modalities |
| Evaluation & Benchmarking | Saturation of existing benchmarks; metric inadequacy | MMBench; MMMU; HallusionBench | Compositional generalization metrics; cultural diversity |
| Bias & Fairness | Dataset biases; demographic disparities | Adversarial debiasing; diverse data curation | Intersectional bias; evaluation across languages |
| Computational Efficiency | Latency, memory, energy, carbon proxy, and inference cost | Quantization; gradient checkpointing; resource cards | Hardware-aware design; adaptive computation; efficiency reporting |
| Privacy & Ethics | Data leakage; deepfake generation misuse | Differential privacy; watermarking | Consent-aware training; regulation alignment |
| Failure Mode | Symptom | Root Cause | Mitigation/Evaluation |
|---|---|---|---|
| Object Hallucination | Model names objects absent from the image | Over-reliance on language priors; weak visual grounding | POPE benchmark; HACL contrastive training [51] |
| Attribute Confusion | Incorrect color, size, or spatial relations | Insufficient cross-modal alignment during training | GQA spatial questions; attribute-specific probing |
| Counting Errors | Incorrect enumeration of objects | Limited compositional spatial reasoning | CountBench; synthetic counting datasets |
| OCR Failures | Garbled or missing text in images | Low-resolution training images; tokenization mismatch | TextVQA; DocVQA; high-res image patching |
| Cross-modal Inconsistency | Text contradicts image content | Modality imbalance in training | HallusionBench; NLI-based consistency checks |
| Sycophancy | Model agrees with incorrect user assertion | RLHF reward hacking; user-pleasing bias | Adversarial prompting evaluation; calibration metrics |
| Temporal Confusion | Errors in video ordering or event causality | Limited temporal position encodings | Video-QA benchmarks; next-event prediction tasks |
| Prompt Sensitivity | Different phrasings yield contradicting answers | Lack of instruction robustness | Paraphrase consistency testing; ensemble voting |
| Visual Encoder | LLaMA/Vicuna | Qwen | InternLM | Mistral | Phi | Gemma |
|---|---|---|---|---|---|---|
| CLIP ViT-L/14 | LLaVA-1.5 [23]; ShareGPT4V | — | — | — | — | — |
| CLIP ViT-G/14 | — | — | — | — | — | — |
| EVA-CLIP | MiniGPT-4; LLaVA-NeXT; CogVLM [9] | — | — | — | — | — |
| SigLIP | PaLI-X (PaLM) | Qwen2-VL; MiniCPM-V [10] | — | — | Phi-3-Vision [192] | PaliGemma |
| InternViT | — | — | InternVL 1–2 | — | InternVL2-Phi3 [192] | — |
| DINOv2 | — | — | — | — | — | — |
| Connector | Contrastive Pre-Train → Generative FT | Generative-Only (No Contrastive Stage) | Instruction Tuning w/o Contrastive Pre-Train |
|---|---|---|---|
| Q-Former | ✓ (BLIP-2, InstructBLIP) | sparse | — |
| Linear / MLP Projection | sparse | ✓ (LLaVA-1.5, LLaVA-NeXT) | ✓ (ShareGPT4V) |
| Cross-Attention Layers | ✓ (Flamingo) | — | — |
| Perceiver Resampler | ✓ (Flamingo, IDEFICS) | — | — |
| Technique | Mechanism | Privacy Guarantee | Utility Cost | Representative Basis/Example |
|---|---|---|---|---|
| Differential Privacy | Calibrated noise injection into gradients or outputs | Formal -DP under a specified mechanism, budget, and composition accounting | Accuracy loss at small | [213,214] |
| Federated Learning | Local training; model updates shared | Raw data remains local; updates may still leak information | Comm. overhead | [215] |
| Data Anonymization | PII removal; k-anonymity; generalization | Reduces re-identification risk | May reduce task performance | [216,217] |
| Data Minimization | Collect only task-necessary data | Reduces attack surface | Limited training diversity | GDPR Article 5 principle |
| Secure Aggregation | Cryptographic aggregation of updates | Hides individual updates under protocol assumptions | High computational cost | MPC-based FL protocols |
| Watermarking | Embed traceable signals in model outputs | Provenance tracking; misuse detection support | Quality and robustness trade-off | Output steganography methods |
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2026 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license.
Share and Cite
Liang, C.X.; Tian, P.; Yin, C.H.; Yua, Y.; Wei, A.-H.; Li, M.; Song, X.; Wang, T.; Bi, Z.; Liu, M.; et al. A Comprehensive Survey and Guide to Multimodal Large Language Models in Vision–Language Tasks. Computation 2026, 14, 125. https://doi.org/10.3390/computation14060125
Liang CX, Tian P, Yin CH, Yua Y, Wei A-H, Li M, Song X, Wang T, Bi Z, Liu M, et al. A Comprehensive Survey and Guide to Multimodal Large Language Models in Vision–Language Tasks. Computation. 2026; 14(6):125. https://doi.org/10.3390/computation14060125
Chicago/Turabian StyleLiang, Chia Xin, Pu Tian, Caitlyn Heqi Yin, Yao Yua, An-Hou Wei, Ming Li, Xinyuan Song, Tianyang Wang, Ziqian Bi, Ming Liu, and et al. 2026. "A Comprehensive Survey and Guide to Multimodal Large Language Models in Vision–Language Tasks" Computation 14, no. 6: 125. https://doi.org/10.3390/computation14060125
APA StyleLiang, C. X., Tian, P., Yin, C. H., Yua, Y., Wei, A.-H., Li, M., Song, X., Wang, T., Bi, Z., Liu, M., Bao, R., & Feng, P. (2026). A Comprehensive Survey and Guide to Multimodal Large Language Models in Vision–Language Tasks. Computation, 14(6), 125. https://doi.org/10.3390/computation14060125

