Datasets:
Tasks:
Text Ranking
Formats:
json
Sub-tasks:
document-retrieval
Languages:
English
Size:
1K - 10K
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -78,10 +78,10 @@ You can load a specific subset of MixBench using the `name` argument:
|
|
| 78 |
from datasets import load_dataset
|
| 79 |
|
| 80 |
# Load the MSCOCO subset
|
| 81 |
-
ds_query = load_dataset("
|
| 82 |
-
ds_corpus = load_dataset("
|
| 83 |
-
ds_query = load_dataset("
|
| 84 |
# Load other subsets (corpus)
|
| 85 |
-
ds_gwit = load_dataset("
|
| 86 |
-
ds_news = load_dataset("
|
| 87 |
-
ds_oven = load_dataset("
|
|
|
|
| 78 |
from datasets import load_dataset
|
| 79 |
|
| 80 |
# Load the MSCOCO subset
|
| 81 |
+
ds_query = load_dataset("mixed-modality-search/MixBench", name="MSCOCO", split='query')
|
| 82 |
+
ds_corpus = load_dataset("mixed-modality-search/MixBench", name="MSCOCO", split='mixed_corpus')
|
| 83 |
+
ds_query = load_dataset("mixed-modality-search/MixBench", name="MSCOCO", split='qrel')
|
| 84 |
# Load other subsets (corpus)
|
| 85 |
+
ds_gwit = load_dataset("mixed-modality-search/MixBench", name="Google_WIT", split='mixed_corpus')
|
| 86 |
+
ds_news = load_dataset("mixed-modality-search/MixBench", name="VisualNews",split='mixed_corpus')
|
| 87 |
+
ds_oven = load_dataset("mixed-modality-search/MixBench", name="OVEN", split='mixed_corpus')
|