- Updated: July 4, 2026
- 7 min read
Is Our Benchmark Enough? An Analysis of Continual Learning for MLLMs
Direct Answer
The paper introduces RePRo, a training‑free, replay‑free routing technique that matches the performance of the MR‑LoRA router for multimodal large language models (MLLMs) while using far less computation. It also shows that the widely‑used MLLM‑CL benchmark rewards isolated learning rather than genuine continual transfer, calling for richer, more realistic evaluation protocols.
Background: Why This Problem Is Hard
Multimodal large language models have become the backbone of modern AI products that need to understand text, images, video, and audio in a single inference pass. Deploying these models in production means they must adapt to new domains—new visual styles, emerging slang, or novel sensor modalities—without forgetting what they have already learned. This is the essence of continual learning for MLLMs.
Two practical bottlenecks make continual learning especially difficult for multimodal systems:
- Catastrophic forgetting: Gradient updates on new tasks quickly erode representations that were useful for earlier tasks, especially when the model’s parameters are shared across modalities.
- Routing complexity: State‑of‑the‑art methods such as MR‑LoRA assume a dedicated MLLM‑based router that decides which expert modules to activate for each input. This router itself must be fine‑tuned for every new domain, adding a heavy computational overhead.
Existing continual‑learning pipelines either rely on heavy replay buffers (which raise privacy and storage concerns) or on sophisticated modular architectures that are expensive to train and maintain. As a result, many research groups resort to simplified benchmarks that do not reflect the overlapping, noisy, and non‑stationary data streams seen in real‑world deployments.
What the Researchers Propose
The authors challenge two implicit assumptions in the current MLLM‑CL literature:
- Routing requires a full‑scale MLLM: They argue that a lightweight, training‑free router can achieve comparable task selection accuracy.
- Shared experts improve continual learning: They demonstrate that, on the existing benchmark, shared expert modules do not provide measurable benefits.
To test these claims, the paper introduces RePRo (Replay‑free Prototypical Routing). RePRo builds on two ideas:
- Frozen pretrained features: It extracts modality‑specific embeddings from a frozen backbone (e.g., CLIP for images, a frozen transformer for text).
- Task prototypes: For each continual‑learning task, a small set of representative examples is stored. At inference time, RePRo computes cosine similarity between the incoming input’s embedding and each prototype, selecting the task (and thus the expert) with the highest similarity.
Because the router never updates its parameters, it eliminates the need for a separate MLLM‑based routing network, dramatically reducing memory and compute requirements.
How It Works in Practice
The practical workflow of RePRo can be broken down into three stages:
- Feature Extraction: An input (image, text, or multimodal pair) is passed through a frozen multimodal encoder. The encoder outputs a high‑dimensional feature vector that captures semantic content without any task‑specific fine‑tuning.
- Prototype Matching: For each task encountered so far, a small prototype bank (typically 5‑10 examples) is maintained. The system computes the similarity between the input feature and each prototype, selecting the task with the highest score.
- Expert Activation: Once the task is identified, the corresponding expert module—trained only on that task’s data—is invoked to produce the final output. No gradient flow passes through the router, so the router remains completely static.
This design contrasts sharply with MR‑LoRA, where a separate MLLM router is jointly trained with the experts, requiring additional forward and backward passes for every new task.
Below is a schematic illustration of the continual‑learning loop with RePRo:

The diagram highlights the separation between frozen feature extraction, prototype‑based routing, and task‑specific expert inference, emphasizing the minimal overhead introduced by RePRo.
Evaluation & Results
The authors evaluate RePRo and the shared‑expert hypothesis on the MLLM‑CL benchmark, a suite of ten multimodal classification tasks arranged in a fixed curriculum. Key findings include:
- Computational efficiency: RePRo achieves comparable accuracy to the MR‑LoRA router while using < 5 % of the FLOPs and < 2 % of the memory footprint.
- No replay needed: Because routing is based on static prototypes, the method does not require a replay buffer, sidestepping privacy concerns.
- Shared experts offer no gain: Experiments where multiple tasks share a common expert module show no statistically significant improvement in forward transfer or retention, contradicting the theoretical appeal of parameter sharing.
- Benchmark limitations uncovered: The tasks in MLLM‑CL are highly separable in the frozen feature space, meaning a simple nearest‑prototype classifier can already distinguish them. Moreover, the fixed task order makes the results sensitive to that single curriculum; shuffling the order leads to large variance in performance.
These results suggest that the benchmark primarily measures a model’s ability to learn tasks in isolation rather than its capacity for genuine continual transfer.
Why This Matters for AI Systems and Agents
For practitioners building AI agents that must evolve over time—think customer‑support bots that ingest new product images, or autonomous systems that encounter novel environments—the implications are immediate:
- Reduced infrastructure cost: RePRo’s training‑free router can be deployed on edge devices or low‑power servers, enabling continual adaptation without the need for large GPU clusters.
- Simplified data pipelines: By eliminating replay buffers, engineers can avoid complex data‑management layers that track and sanitize historical samples.
- More reliable evaluation: Understanding that current benchmarks over‑estimate forward transfer pushes teams to adopt richer validation sets that reflect overlapping domains.
Organizations looking to integrate multimodal capabilities into their products can leverage the UBOS platform overview to orchestrate modular expert pipelines, while the Workflow automation studio can automate prototype collection and routing updates.
For teams focused on market‑facing AI, the AI marketing agents module already incorporates a lightweight routing layer inspired by RePRo, demonstrating how research findings translate into production‑ready tools.
What Comes Next
While RePRo addresses the immediate inefficiencies of MLLM routing, the paper also outlines several open challenges that will shape future research:
- Benchmark redesign: New continual‑learning suites should feature overlapping task manifolds, multiple curricula, and fine‑grained domain shifts to better assess forward transfer.
- Dynamic prototype management: As tasks evolve, maintaining a static prototype bank may become suboptimal. Adaptive strategies that prune or augment prototypes on‑the‑fly could improve scalability.
- Hybrid routing: Combining prototype similarity with lightweight learned adapters might capture subtle cross‑task relationships without incurring full MLLM training costs.
- Privacy‑preserving routing: Future work could explore encrypted similarity computation, enabling routers to operate on sensitive data without exposing raw embeddings.
From an industry perspective, these directions align with the roadmap of the Enterprise AI platform by UBOS, which aims to provide secure, scalable environments for continual‑learning workloads. By integrating prototype‑based routing as a first‑class service, the platform can offer customers a path to sustainable model evolution.
Developers interested in experimenting with RePRo can start by cloning the open‑source implementation linked in the arXiv paper and plugging it into the UBOS solutions for SMBs stack, where the modular architecture already supports custom expert registration.
As the field moves toward more realistic continual‑learning scenarios, the community will need benchmarks that reward not just retention but also forward transfer, robustness to curriculum changes, and efficient resource usage. RePRo provides a compelling proof‑point that simpler, training‑free routing can meet these goals, and it sets a new baseline for future MLLM research.
For ongoing updates on AI research and practical implementations, visit the UBOS homepage and explore the latest blog posts.
Andrii Bidochko
CTO UBOS
Andrii Bidochko is an AI entrepreneur and researcher focused on AI agents, reinforcement learning, and autonomous systems. He writes about the technologies shaping the future of machine intelligence, from frontier models and agent architectures to real-world AI applications.