Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:
Samoed commited on
Commit
adbab23
·
verified ·
1 Parent(s): 3d593fd

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +160 -32
README.md CHANGED
@@ -1,40 +1,168 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
- - config_name: corpus
4
- splits:
5
- - name: test
6
- num_bytes: 1217200
7
- num_examples: 5023
8
- - config_name: queries
9
- splits:
10
- - name: test
11
- num_bytes: 74479
12
- num_examples: 100
13
- - config_name: default
14
- splits:
15
- - name: test
16
- num_bytes: 41770
17
- num_examples: 5062
18
  configs:
19
- - config_name: corpus
20
- data_files:
21
- - split: test
22
- path: data/corpus/test-*.parquet
23
- - config_name: queries
24
- data_files:
25
- - split: test
26
- path: data/queries/test-*.parquet
27
- - config_name: default
28
- data_files:
29
- - split: test
30
- path: data/default/test-*.parquet
 
 
 
31
  ---
 
32
 
33
- # Dataset Card for BIRCO-Relic-Test
 
 
 
 
34
 
35
- ## Dataset Configurations
36
 
37
- - **Corpus**: Document collection (5023 documents)
38
- - **Queries**: Search queries (100 queries)
39
- - **Default**: Relevance judgments (5062 judgments)
 
 
40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - expert-annotated
4
+ language:
5
+ - eng
6
+ license: cc-by-4.0
7
+ multilinguality: monolingual
8
+ task_categories:
9
+ - text-retrieval
10
+ task_ids:
11
+ - Article retrieval
12
  dataset_info:
13
+ - config_name: corpus
14
+ splits:
15
+ - name: test
16
+ num_bytes: 1217200
17
+ num_examples: 5023
18
+ - config_name: queries
19
+ splits:
20
+ - name: test
21
+ num_bytes: 74479
22
+ num_examples: 100
23
+ - config_name: default
24
+ splits:
25
+ - name: test
26
+ num_bytes: 41770
27
+ num_examples: 5062
28
  configs:
29
+ - config_name: corpus
30
+ data_files:
31
+ - split: test
32
+ path: data/corpus/test-*.parquet
33
+ - config_name: queries
34
+ data_files:
35
+ - split: test
36
+ path: data/queries/test-*.parquet
37
+ - config_name: default
38
+ data_files:
39
+ - split: test
40
+ path: data/default/test-*.parquet
41
+ tags:
42
+ - mteb
43
+ - text
44
  ---
45
+ <!-- adapted from https://github.com/huggingface/huggingface_hub/blob/v0.30.2/src/huggingface_hub/templates/datasetcard_template.md -->
46
 
47
+ <div align="center" style="padding: 40px 20px; background-color: white; border-radius: 12px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); max-width: 600px; margin: 0 auto;">
48
+ <h1 style="font-size: 3.5rem; color: #1a1a1a; margin: 0 0 20px 0; letter-spacing: 2px; font-weight: 700;">BIRCO-Relic</h1>
49
+ <div style="font-size: 1.5rem; color: #4a4a4a; margin-bottom: 5px; font-weight: 300;">An <a href="https://github.com/embeddings-benchmark/mteb" style="color: #2c5282; font-weight: 600; text-decoration: none;" onmouseover="this.style.textDecoration='underline'" onmouseout="this.style.textDecoration='none'">MTEB</a> dataset</div>
50
+ <div style="font-size: 0.9rem; color: #2c5282; margin-top: 10px;">Massive Text Embedding Benchmark</div>
51
+ </div>
52
 
53
+ Retrieval task using the RELIC dataset from BIRCO. This dataset contains 100 queries which are excerpts from literary analyses with a missing quotation (indicated by [masked sentence(s)]). Each query has a candidate pool of 50 passages. The objective is to retrieve the passage that best completes the literary analysis.
54
 
55
+ | | |
56
+ |---------------|---------------------------------------------|
57
+ | Task category | t2t |
58
+ | Domains | Fiction |
59
+ | Reference | https://github.com/BIRCO-benchmark/BIRCO |
60
 
61
+
62
+ ## How to evaluate on this task
63
+
64
+ You can evaluate an embedding model on this dataset using the following code:
65
+
66
+ ```python
67
+ import mteb
68
+
69
+ task = mteb.get_tasks(["BIRCO-Relic"])
70
+ evaluator = mteb.MTEB(task)
71
+
72
+ model = mteb.get_model(YOUR_MODEL)
73
+ evaluator.run(model)
74
+ ```
75
+
76
+ <!-- Datasets want link to arxiv in readme to autolink dataset with paper -->
77
+ To learn more about how to run models on `mteb` task check out the [GitHub repitory](https://github.com/embeddings-benchmark/mteb).
78
+
79
+ ## Citation
80
+
81
+ If you use this dataset, please cite the dataset as well as [mteb](https://github.com/embeddings-benchmark/mteb), as this dataset likely includes additional processing as a part of the [MMTEB Contribution](https://github.com/embeddings-benchmark/mteb/tree/main/docs/mmteb).
82
+
83
+ ```bibtex
84
+
85
+ @misc{wang2024bircobenchmarkinformationretrieval,
86
+ archiveprefix = {arXiv},
87
+ author = {Xiaoyue Wang and Jianyou Wang and Weili Cao and Kaicheng Wang and Ramamohan Paturi and Leon Bergen},
88
+ eprint = {2402.14151},
89
+ primaryclass = {cs.IR},
90
+ title = {BIRCO: A Benchmark of Information Retrieval Tasks with Complex Objectives},
91
+ url = {https://arxiv.org/abs/2402.14151},
92
+ year = {2024},
93
+ }
94
+
95
+
96
+ @article{enevoldsen2025mmtebmassivemultilingualtext,
97
+ title={MMTEB: Massive Multilingual Text Embedding Benchmark},
98
+ author={Kenneth Enevoldsen and Isaac Chung and Imene Kerboua and Márton Kardos and Ashwin Mathur and David Stap and Jay Gala and Wissam Siblini and Dominik Krzemiński and Genta Indra Winata and Saba Sturua and Saiteja Utpala and Mathieu Ciancone and Marion Schaeffer and Gabriel Sequeira and Diganta Misra and Shreeya Dhakal and Jonathan Rystrøm and Roman Solomatin and Ömer Çağatan and Akash Kundu and Martin Bernstorff and Shitao Xiao and Akshita Sukhlecha and Bhavish Pahwa and Rafał Poświata and Kranthi Kiran GV and Shawon Ashraf and Daniel Auras and Björn Plüster and Jan Philipp Harries and Loïc Magne and Isabelle Mohr and Mariya Hendriksen and Dawei Zhu and Hippolyte Gisserot-Boukhlef and Tom Aarsen and Jan Kostkan and Konrad Wojtasik and Taemin Lee and Marek Šuppa and Crystina Zhang and Roberta Rocca and Mohammed Hamdy and Andrianos Michail and John Yang and Manuel Faysse and Aleksei Vatolin and Nandan Thakur and Manan Dey and Dipam Vasani and Pranjal Chitale and Simone Tedeschi and Nguyen Tai and Artem Snegirev and Michael Günther and Mengzhou Xia and Weijia Shi and Xing Han Lù and Jordan Clive and Gayatri Krishnakumar and Anna Maksimova and Silvan Wehrli and Maria Tikhonova and Henil Panchal and Aleksandr Abramov and Malte Ostendorff and Zheng Liu and Simon Clematide and Lester James Miranda and Alena Fenogenova and Guangyu Song and Ruqiya Bin Safi and Wen-Ding Li and Alessia Borghini and Federico Cassano and Hongjin Su and Jimmy Lin and Howard Yen and Lasse Hansen and Sara Hooker and Chenghao Xiao and Vaibhav Adlakha and Orion Weller and Siva Reddy and Niklas Muennighoff},
99
+ publisher = {arXiv},
100
+ journal={arXiv preprint arXiv:2502.13595},
101
+ year={2025},
102
+ url={https://arxiv.org/abs/2502.13595},
103
+ doi = {10.48550/arXiv.2502.13595},
104
+ }
105
+
106
+ @article{muennighoff2022mteb,
107
+ author = {Muennighoff, Niklas and Tazi, Nouamane and Magne, Lo{\"\i}c and Reimers, Nils},
108
+ title = {MTEB: Massive Text Embedding Benchmark},
109
+ publisher = {arXiv},
110
+ journal={arXiv preprint arXiv:2210.07316},
111
+ year = {2022}
112
+ url = {https://arxiv.org/abs/2210.07316},
113
+ doi = {10.48550/ARXIV.2210.07316},
114
+ }
115
+ ```
116
+
117
+ # Dataset Statistics
118
+ <details>
119
+ <summary> Dataset Statistics</summary>
120
+
121
+ The following code contains the descriptive statistics from the task. These can also be obtained using:
122
+
123
+ ```python
124
+ import mteb
125
+
126
+ task = mteb.get_task("BIRCO-Relic")
127
+
128
+ desc_stats = task.metadata.descriptive_stats
129
+ ```
130
+
131
+ ```json
132
+ {
133
+ "test": {
134
+ "num_samples": 5123,
135
+ "number_of_characters": 2504348,
136
+ "num_documents": 5023,
137
+ "min_document_length": 13,
138
+ "average_document_length": 478.342823014135,
139
+ "max_document_length": 2579,
140
+ "unique_documents": 5023,
141
+ "num_queries": 100,
142
+ "min_query_length": 588,
143
+ "average_query_length": 1016.32,
144
+ "max_query_length": 1472,
145
+ "unique_queries": 100,
146
+ "none_queries": 0,
147
+ "num_relevant_docs": 5062,
148
+ "min_relevant_docs_per_query": 50,
149
+ "average_relevant_docs_per_query": 1.0,
150
+ "max_relevant_docs_per_query": 51,
151
+ "unique_relevant_docs": 5023,
152
+ "num_instructions": null,
153
+ "min_instruction_length": null,
154
+ "average_instruction_length": null,
155
+ "max_instruction_length": null,
156
+ "unique_instructions": null,
157
+ "num_top_ranked": null,
158
+ "min_top_ranked_per_query": null,
159
+ "average_top_ranked_per_query": null,
160
+ "max_top_ranked_per_query": null
161
+ }
162
+ }
163
+ ```
164
+
165
+ </details>
166
+
167
+ ---
168
+ *This dataset card was automatically generated using [MTEB](https://github.com/embeddings-benchmark/mteb)*