Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

MixBench: A Benchmark for Mixed Modality Retrieval

MixBench is a benchmark for evaluating retrieval across text, images, and multimodal documents. It is designed to test how well retrieval models handle queries and documents that span different modalities, such as pure text, pure images, and combined image+text inputs.

MixBench includes four subsets, each curated from a different data source:

  • MSCOCO
  • Google_WIT
  • VisualNews
  • OVEN

Each subset contains:

  • queries.jsonl: each entry contains a query_id, text, and/or image
  • mixed_corpus.jsonl: each entry contains a corpus_id, a text or an image or a multimodal document (text and image)
  • qrels.tsv: a tab-separated list of relevant query-document pairs (query_id, corpus_id, score=1)
  • corpus.jsonl: the original corpus

This benchmark supports diverse retrieval settings including unimodal-to-multimodal and cross-modal search.


πŸ”„ Load Example

You can load a specific subset of MixBench using the name argument:

from datasets import load_dataset

# Load the MSCOCO subset
ds_query = load_dataset("mixed-modality-search/MixBench25", name="MSCOCO", split='query')
ds_corpus = load_dataset("mixed-modality-search/MixBench25", name="MSCOCO", split='mixed_corpus')
ds_query = load_dataset("mixed-modality-search/MixBench25", name="MSCOCO", split='qrel')
# Load other subsets (corpus)
ds_gwit = load_dataset("mixed-modality-search/MixBench25", name="Google_WIT", split='mixed_corpus')
ds_news = load_dataset("mixed-modality-search/MixBench25", name="VisualNews",split='mixed_corpus')
ds_oven = load_dataset("mixed-modality-search/MixBench25", name="OVEN", split='mixed_corpus')
Downloads last month
197