BAAI / BGE-VL-MLLM-S1

huggingface.co
Total runs: 461
24-hour runs: -5
7-day runs: 25
30-day runs: 181
Model's Last Updated: April 10 2026
sentence-similarity

Introduction of BGE-VL-MLLM-S1

Model Details of BGE-VL-MLLM-S1

MegaPairs: Massive Data Synthesis For Universal Multimodal Retrieval

Build Build Build

Build Build Build Build

News

2024-3-4 🚀🚀 We have released the BGE-VL-MLLM models on Huggingface: BGE-VL-MLLM-S1 and BGE-VL-MLLM-S2 . BGE-VL-MLLM-S1 is trained exclusively on our MegaPairs dataset, achieving outstanding performance in composed image retrieval, with an 8.1% improvement on the CIRCO benchmark (mAP@5) over the previous state-of-the-art. BGE-VL-MLLM-S2 builds on BGE-VL-MLLM-S1 with an additional epoch of fine-tuning on the MMEB benchmark training set, delivering enhanced performance across a broader range of multimodal embedding tasks.

2024-12-27 🚀🚀 BGE-VL-CLIP models are released on Huggingface: BGE-VL-base and BGE-VL-large .

2024-12-19 🎉🎉 Release our paper: MegaPairs: Massive Data Synthesis For Universal Multimodal Retrieval .

Release Plan
  • Paper
  • BGE-VL-base and BGE-VL-large models
  • BGE-VL-MLLM model
  • MegaPairs Dataset
  • Evaluation code
  • Fine-tuning code
Introduction

In this work, we introduce MegaPairs , a novel data synthesis method that leverages open-domain images to create heterogeneous KNN triplets for universal multimodal retrieval. Our MegaPairs dataset contains over 26 million triplets, and we have trained a series of multimodal retrieval models, BGE-VL , including BGE-VL-CLIP (base and large) and BGE-VL-MLLM.

BGE-VL achieve state-of-the-art performance on four popular zero-shot composed image retrieval benchmarks and the massive multimodal embedding benchmark (MMEB). Extensive experiments demonstrate the efficiency, scalability, and generalization features of MegaPairs. Please refer to our paper for more details.

Model Usage
1. BGE-VL-CLIP Models

You can easily use BGE-VL-CLIP models based on transformers

import torch
from transformers import AutoModel

MODEL_NAME = "BAAI/BGE-VL-base" # or "BAAI/BGE-VL-large"

model = AutoModel.from_pretrained(MODEL_NAME, trust_remote_code=True) # You must set trust_remote_code=True
model.set_processor(MODEL_NAME)
model.eval()

with torch.no_grad():
    query = model.encode(
        images = "./assets/cir_query.png", 
        text = "Make the background dark, as if the camera has taken the photo at night"
    )

    candidates = model.encode(
        images = ["./assets/cir_candi_1.png", "./assets/cir_candi_2.png"]
    )
    
    scores = query @ candidates.T
print(scores)

See the demo for a complete example of using BGE-VL for multimodel retrieval.

2. BGE-VL-MLLM Models
import torch
from transformers import AutoModel
from PIL import Image

MODEL_NAME= "BAAI/BGE-VL-MLLM-S1"

model = AutoModel.from_pretrained(MODEL_NAME, trust_remote_code=True)
model.eval()
model.cuda()

with torch.no_grad():
    model.set_processor(MODEL_NAME)

    query_inputs = model.data_process(
        text="Make the background dark, as if the camera has taken the photo at night", 
        images="./assets/cir_query.png",
        q_or_c="q",
        task_instruction="Retrieve the target image that best meets the combined criteria by using both the provided image and the image retrieval instructions: "
    )

    candidate_inputs = model.data_process(
        images=["./assets/cir_candi_1.png", "./assets/cir_candi_2.png"],
        q_or_c="c",
    )

    query_embs = model(**query_inputs, output_hidden_states=True)[:, -1, :]
    candi_embs = model(**candidate_inputs, output_hidden_states=True)[:, -1, :]
    
    query_embs = torch.nn.functional.normalize(query_embs, dim=-1)
    candi_embs = torch.nn.functional.normalize(candi_embs, dim=-1)

    scores = torch.matmul(query_embs, candi_embs.T)
print(scores)
Model Performance
Zero-Shot Composed Image Retrieval

BGE-VL sets a new performance benchmark in zero-shot composed image retrieval tasks. On the CIRCO benchmark, our BGE-VL-base model, with only 149 million parameters, surpasses all previous models, including those with 50 times more parameters. Additionally, BGE-VL-MLLM achieves an 8.1% improvement over the previous state-of-the-art model.

Zero-Shot Performance on MMEB

BGE-VL-MLLM achieves state-of-the-art zero-shot performance on the Massive Multimodal Embedding Benchmark (MMEB), despite being trained only on the ImageText-to-Image paradigm. This demonstrates the excellent generalization capability of MegaPairs for multimodal embedding.

Fine-Tuning Performance on MMEB

After fine-tuning on downstream tasks, BGE-VL-MLLM maintains its leading performance. Notably, it surpasses the previous state-of-the-art by 7.1% on the MMEB out-of-distribution (OOD) set. These results demonstrate the robust generalization capability of BGE-VL-MLLM and highlight the potential of MegaPairs as foundational training data for universal multimodal embedding.

Performance Scaling

MegaPairs showcases scalability : BGE-VL-base improves as training data increases. It also demonstrates efficiency : with just 0.5M training samples, BGE-VL-base significantly outperforms MagicLens, which uses the same CLIP-base backbone and was trained on 36.7M samples.

License

The annotations for MegaPairs and the BGE-VL models are released under the MIT License . The images in MegaPairs originate from the Recap-Datacomp , which is released under the CC BY 4.0 license.

Citation

If you find this repository useful, please consider giving a star ⭐ and citation

@article{zhou2024megapairs,
  title={MegaPairs: Massive Data Synthesis For Universal Multimodal Retrieval},
  author={Zhou, Junjie and Liu, Zheng and Liu, Ze and Xiao, Shitao and Wang, Yueze and Zhao, Bo and Zhang, Chen Jason and Lian, Defu and Xiong, Yongping},
  journal={arXiv preprint arXiv:2412.14475},
  year={2024}
}

Runs of BAAI BGE-VL-MLLM-S1 on huggingface.co

461
Total runs
-5
24-hour runs
30
3-day runs
25
7-day runs
181
30-day runs

More Information About BGE-VL-MLLM-S1 huggingface.co Model

More BGE-VL-MLLM-S1 license Visit here:

https://choosealicense.com/licenses/mit

BGE-VL-MLLM-S1 huggingface.co

BGE-VL-MLLM-S1 huggingface.co is an AI model on huggingface.co that provides BGE-VL-MLLM-S1's model effect (), which can be used instantly with this BAAI BGE-VL-MLLM-S1 model. huggingface.co supports a free trial of the BGE-VL-MLLM-S1 model, and also provides paid use of the BGE-VL-MLLM-S1. Support call BGE-VL-MLLM-S1 model through api, including Node.js, Python, http.

BGE-VL-MLLM-S1 huggingface.co Url

https://huggingface.co/BAAI/BGE-VL-MLLM-S1

BAAI BGE-VL-MLLM-S1 online free

BGE-VL-MLLM-S1 huggingface.co is an online trial and call api platform, which integrates BGE-VL-MLLM-S1's modeling effects, including api services, and provides a free online trial of BGE-VL-MLLM-S1, you can try BGE-VL-MLLM-S1 online for free by clicking the link below.

BAAI BGE-VL-MLLM-S1 online free url in huggingface.co:

https://huggingface.co/BAAI/BGE-VL-MLLM-S1

BGE-VL-MLLM-S1 install

BGE-VL-MLLM-S1 is an open source model from GitHub that offers a free installation service, and any user can find BGE-VL-MLLM-S1 on GitHub to install. At the same time, huggingface.co provides the effect of BGE-VL-MLLM-S1 install, users can directly use BGE-VL-MLLM-S1 installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

BGE-VL-MLLM-S1 install url in huggingface.co:

https://huggingface.co/BAAI/BGE-VL-MLLM-S1

Url of BGE-VL-MLLM-S1

BGE-VL-MLLM-S1 huggingface.co Url

Provider of BGE-VL-MLLM-S1 huggingface.co

BAAI
ORGANIZATIONS

Other API from BAAI

huggingface.co

Total runs: 64.0M
Run Growth: -6.6M
Growth Rate: -10.32%
Updated:February 22 2024
huggingface.co

Total runs: 37.6M
Run Growth: 3.7M
Growth Rate: 9.69%
Updated:July 03 2024
huggingface.co

Total runs: 12.6M
Run Growth: 622.5K
Growth Rate: 4.86%
Updated:February 21 2024
huggingface.co

Total runs: 10.5M
Run Growth: -274.5K
Growth Rate: -2.59%
Updated:February 21 2024
huggingface.co

Total runs: 2.3M
Run Growth: 1.7M
Growth Rate: 77.46%
Updated:April 17 2024
huggingface.co

Total runs: 792.7K
Run Growth: -726.2K
Growth Rate: -91.32%
Updated:October 12 2023
huggingface.co

Total runs: 225.2K
Run Growth: -1.3M
Growth Rate: -582.76%
Updated:December 13 2023
huggingface.co

Total runs: 57.4K
Run Growth: -116.7K
Growth Rate: -197.13%
Updated:October 12 2023
huggingface.co

Total runs: 53.0K
Run Growth: -43.1K
Growth Rate: -83.89%
Updated:October 12 2023
huggingface.co

Total runs: 48.4K
Run Growth: 25.1K
Growth Rate: 58.90%
Updated:October 12 2023
huggingface.co

Total runs: 47.4K
Run Growth: 22.7K
Growth Rate: 49.08%
Updated:November 14 2023
huggingface.co

Total runs: 37.5K
Run Growth: -24.8K
Growth Rate: -66.13%
Updated:January 15 2025
huggingface.co

Total runs: 15.9K
Run Growth: 1.3K
Growth Rate: 8.46%
Updated:April 16 2025
huggingface.co

Total runs: 11.0K
Run Growth: -15.2K
Growth Rate: -136.62%
Updated:October 12 2023
huggingface.co

Total runs: 5.5K
Run Growth: 4.9K
Growth Rate: 89.62%
Updated:April 19 2024
huggingface.co

Total runs: 4.5K
Run Growth: -9.3K
Growth Rate: -203.11%
Updated:May 20 2025
huggingface.co

Total runs: 3.5K
Run Growth: 2.4K
Growth Rate: 72.02%
Updated:September 11 2026
huggingface.co

Total runs: 1.8K
Run Growth: 1.2K
Growth Rate: 63.98%
Updated:December 31 2022
huggingface.co

Total runs: 1.8K
Run Growth: -13.5K
Growth Rate: -793.18%
Updated:January 15 2025
huggingface.co

Total runs: 1.4K
Run Growth: -494
Growth Rate: -34.50%
Updated:April 10 2026
huggingface.co

Total runs: 1.4K
Run Growth: -791
Growth Rate: -53.92%
Updated:April 10 2026
huggingface.co

Total runs: 1.3K
Run Growth: -283
Growth Rate: -23.98%
Updated:November 28 2024
huggingface.co

Total runs: 1.2K
Run Growth: 285
Growth Rate: 22.84%
Updated:September 11 2026
huggingface.co

Total runs: 1.2K
Run Growth: 547
Growth Rate: 45.24%
Updated:October 23 2024
huggingface.co

Total runs: 1.1K
Run Growth: -33
Growth Rate: -2.92%
Updated:February 07 2024
huggingface.co

Total runs: 1.0K
Run Growth: 782
Growth Rate: 75.05%
Updated:October 24 2024
huggingface.co

Total runs: 751
Run Growth: 37
Growth Rate: 4.63%
Updated:May 23 2025
huggingface.co

Total runs: 596
Run Growth: -175
Growth Rate: -29.46%
Updated:July 13 2026
huggingface.co

Total runs: 479
Run Growth: -87
Growth Rate: -18.20%
Updated:July 13 2026
huggingface.co

Total runs: 430
Run Growth: -134
Growth Rate: -31.31%
Updated:October 27 2023
huggingface.co

Total runs: 411
Run Growth: -622
Growth Rate: -153.58%
Updated:April 18 2023
huggingface.co

Total runs: 392
Run Growth: -230
Growth Rate: -59.13%
Updated:August 11 2026
huggingface.co

Total runs: 366
Run Growth: -783
Growth Rate: -198.73%
Updated:August 11 2026
huggingface.co

Total runs: 358
Run Growth: -265
Growth Rate: -69.55%
Updated:December 25 2025
huggingface.co

Total runs: 334
Run Growth: 131
Growth Rate: 41.32%
Updated:July 13 2026
huggingface.co

Total runs: 323
Run Growth: 59
Growth Rate: 18.38%
Updated:July 13 2026
huggingface.co

Total runs: 294
Run Growth: 211
Growth Rate: 72.51%
Updated:August 18 2026
huggingface.co

Total runs: 291
Run Growth: -848
Growth Rate: -297.54%
Updated:December 25 2025
huggingface.co

Total runs: 290
Run Growth: 97
Growth Rate: 33.80%
Updated:July 13 2026
huggingface.co

Total runs: 283
Run Growth: -149
Growth Rate: -51.38%
Updated:March 07 2024
huggingface.co

Total runs: 282
Run Growth: -3.8K
Growth Rate: -1338.60%
Updated:April 10 2026
huggingface.co

Total runs: 259
Run Growth: 21
Growth Rate: 8.17%
Updated:February 11 2025
huggingface.co

Total runs: 253
Run Growth: -35
Growth Rate: -13.46%
Updated:April 10 2026
huggingface.co

Total runs: 213
Run Growth: -106
Growth Rate: -48.62%
Updated:July 17 2026
huggingface.co

Total runs: 208
Run Growth: -71
Growth Rate: -34.30%
Updated:July 13 2026
huggingface.co

Total runs: 205
Run Growth: -98
Growth Rate: -47.34%
Updated:June 06 2025
huggingface.co

Total runs: 201
Run Growth: -103
Growth Rate: -50.00%
Updated:October 23 2024
huggingface.co

Total runs: 192
Run Growth: -59
Growth Rate: -31.55%
Updated:July 13 2026
huggingface.co

Total runs: 189
Run Growth: 39
Growth Rate: 20.86%
Updated:April 02 2024
huggingface.co

Total runs: 181
Run Growth: 66
Growth Rate: 36.46%
Updated:July 13 2026
huggingface.co

Total runs: 175
Run Growth: -170
Growth Rate: -96.59%
Updated:May 13 2024
huggingface.co

Total runs: 167
Run Growth: -30
Growth Rate: -18.18%
Updated:May 13 2024
huggingface.co

Total runs: 166
Run Growth: -50
Growth Rate: -30.30%
Updated:April 10 2026
huggingface.co

Total runs: 166
Run Growth: -33
Growth Rate: -20.12%
Updated:May 31 2024
huggingface.co

Total runs: 164
Run Growth: -993
Growth Rate: -620.63%
Updated:June 24 2024
huggingface.co

Total runs: 163
Run Growth: -28
Growth Rate: -17.07%
Updated:May 13 2024
huggingface.co

Total runs: 163
Run Growth: 67
Growth Rate: 40.36%
Updated:August 23 2023
huggingface.co

Total runs: 156
Run Growth: 152
Growth Rate: 100.00%
Updated:September 05 2026
huggingface.co

Total runs: 151
Run Growth: -45
Growth Rate: -30.41%
Updated:July 13 2026
huggingface.co

Total runs: 148
Run Growth: 34
Growth Rate: 23.29%
Updated:July 13 2026
huggingface.co

Total runs: 145
Run Growth: 49
Growth Rate: 35.51%
Updated:March 13 2026