<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>QPPTK@TIREx: Simplified Query Performance Prediction for Ad-Hoc Retrieval Experiments</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Oleg Zendel</string-name>
          <email>D@k</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Maik Fröbe</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Guglielmo Faggioli</string-name>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Friedrich-Schiller-Universität Jena</institution>
          ,
          <addr-line>Jena</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>RMIT University</institution>
          ,
          <addr-line>Melbourne</addr-line>
          ,
          <country country="AU">Australia</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>University of Padua</institution>
          ,
          <addr-line>Padua</addr-line>
          ,
          <country country="IT">Italy</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>We describe our software submission to the ECIR 2024 Workshop on Open Web Search [1]. We submit the query performance prediction toolkit qpptk that comes with 12 performance predictors to substantially simplify the re-use of those predictors in ad-hoc retrieval experiments. Therefore, we have extended qpptk so that it can run in TIREx and that it can process arbitrary workloads using ir_datasets and PyTerrier indices as inputs. We execute qpptk on all 23 test collections in TIREx that have PyTerrier indices available and make their predictions and the Docker image publicly available. Thereby, subsequent retrieval experiments can easily re-use the predictions by just downloading a few kilobytes, instead of having to run the system on their machine (which is still possible, e.g., by executing the Docker image on new or modified inputs). Our analysis on the 23 test collections highlights predictor performance variability, emphasizing the importance of standardized baselines and evaluation methods. Openly sharing predictions aims to enhance research accessibility, promoting broader utilization of query performance predictors and inspiring the development of novel prediction and evaluation techniques.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        Query Performance Prediction (QPP) is defined as assessing the quality of the query effectiveness
in the absence of relevance judgements [
        <xref ref-type="bibr" rid="ref2 ref3">2, 3</xref>
        ]. This task is particularly important under three
major aspects. First, it allows for some form of automatic evaluation of the Information Retrieval
(IR) system, thus reducing the cost of collecting highly expensive manual relevance annotations.
Secondly, it can be used as a feature for IR tasks such as reranking, model selection [
        <xref ref-type="bibr" rid="ref3">3, 4</xref>
        ], and
rank fusion [5]. From the query perspective, it can be used to carry out query suggestion [
        <xref ref-type="bibr" rid="ref3">3, 4</xref>
        ]
or to identify particularly challenging queries, so that the system administrators can operate
failure analysis and enhance the model on those specific queries [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ].
      </p>
      <p>While QPP holds significant potential for enhancing IR, its progress faces a major challenge
linked to the evaluation and comparison methodologies employed. Building on discussions
from the recent QPP++ workshop [6], we assert that a fundamental issue in QPP research
lies in the lack of result reproducibility and stability. First of all, most of the traditional QPP
approaches have been designed and tested considering the Query Language Model [7] as the
underlying retrieval engine. Therefore, this might induce a general instability of the models
when considering different retrieval models, especially if they are based on a widely different
rationale, such as neural IR models [8, 9, 10]. This also reflects on the possible instability
1st International Workshop on Open Web Search (WOWS), in: Advances in Information Retrieval. 46th European
Conference on IR Research (ECIR 2024), March 28, 2024, Glasgow, UK</p>
      <p>
        © 2024 Copyright for this paper by its authors. Use permitted under Creative Commons License Attribution 4.0 International (CC BY 4.0).
due to the usage of different hyper-parameters for the IR model, different implementations
of it, or different query normalization strategies, such as the stemmer used or stopping list
considered [4, 11, 12]. Secondly, QPP models are typically characterized by one or more
parameters, such as the length of the retrieved list when considering post-retrieval models.
If not properly tuned, such parameters might result in particularly ineffective predictions.
Finally, QPP models are known to operate differently on different collections [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]: using the
wrong QPP for a given collection might lead to low prediction performance and thus to a
generally weak baseline. To summarize, when experimenting with QPP, three major aspects
might substantially impact the performance of (baseline) predictors: the underlying retrieval
model, the hyperparameters of the predictor, and the collection considered. Furthermore, the
same aspects hinder the reproducibility of the QPP: it is not uncommon in the QPP scenario
to observe the same model performing differently from paper to paper. This is often due to
naturally occurring differences in the implementation, but also due to different experimental
settings (i.e., the retrieval model, and/or hyperparameters).
      </p>
      <p>To alleviate these limitations and foster simplified, reproducible and stable experimentation in
QPP, we describe our approach to embed the Query Performance Prediction ToolKit (qpptk) [11,
12, 13] into TIRA [14] / TIREx [15]. This setup allows us to provide a solid and stable set of
baselines for future experiments: when carrying out new experiments, we can ensure that the
implementation and hyper-parameters of the IR models underneath remain the same as they
are archived within TIREx. Secondly, it allows us to test the same QPP over the abundance of
collections that are already available in TIREx. This, in turn, allows us to provide the research
community with a large amount of – already computed – shared baselines for future QPP
experiments. Finally, re-using cached outputs can help fast prototyping: when developing a
new QPP, the practitioner can delegate secondary aspects, such as setting up the IR system or
processing the corpus, to cached TIREx outputs, focusing exclusively on the development of
the QPP. Our implementation is publicly available.1</p>
      <p>The remainder of the paper is organized as follows: Section 2 provides the background
on the QPP methods, and describes the main QPP models that have been implemented in
qpptk. Section 3 details how our qpptk component submitted to TIREx can be used to obtain
reproducible QPP results. Section 4 reports our experimental analysis. Finally, section 5 draws
the conclusions and outlines our future work.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Background</title>
      <p>We describe here the predictors implemented within qpptk. According to the classical separation,
predictors are divided into pre- and post-retrieval.</p>
      <p>Before introducing the predictors, we provide here the notation adopted in the remainder
of this work. Let q be a query and d a document belonging to a corpus of documents C
with |C| = N . Without loss of generality, we call s(q, d) the score assigned by an arbitrary
ranking model to the document d in response to the query q. We call D@k the list of the
top-k documents retrieved in response to the query. Additionally, given a term t, we define
ft = |{d ∈ C : t ∈ d}| the document frequency (i.e., the number of documents the term appears
1Code: https://github.com/Zendelo/QPP-EnhancedEval/tree/qpptk-dev
in), while fd,t = |{w ∈ d : w = t}| is the term frequency (i.e., the number of times the term
appear in document d).</p>
      <sec id="sec-2-1">
        <title>2.1. Pre-Retrieval Predictors</title>
        <p>Pre-retrieval predictors are those predictors that base their prediction based only on the query
tokens and the (indexed) corpus. We implemented three major categories of pre-retrieval
predictors: those based on Inverse Document Frequency (IDF), those relying on Similarity
between the query and the collection (SCQ), and those based on score variability (VAR).</p>
        <sec id="sec-2-1-1">
          <title>Inverse Document Frequency (IDF)-based Predictors [16, 17] The IDF predictors rely</title>
          <p>on computing the IDF for each query term:</p>
          <p>IDF (t) = ln 1 +</p>
          <p>N
ft
then, this predictor can be instantiated in two ways, either by computing the average IDF
over all query terms (avgIDF) or by computing the maximum IDF (maxIDF) over the query
terms. The rationale is that if the terms have high inverse document frequency, they are highly
characterizing (i.e., they are contained in a few documents and are very specific). Therefore,
it is more likely that documents containing such terms will be relevant, indicating how the
retrieval will perform.</p>
        </sec>
        <sec id="sec-2-1-2">
          <title>Similarity between a Query and a Collection (SCQ)-based Predictors [16] The term</title>
          <p>wise SCQ score is defined as follows:</p>
          <p>SCQ(t) = (1 + ln(fc,t)) · 1 +</p>
          <p>N
ft
where fc,t is the number of times the term appears in the corpus. Once the SCQ has been
computed for each term, it is possible to aggregate it either by summing the SCQ for all the
query terms (SCQ), averaging (avgSCQ), or by computing the maximum (maxSCQ).
Variability (VAR)-Based Predictors [16] To compute the VAR predictors, it is first necessary
to compute the weight wd,t of each query term t with respect to each document d as the TFIDF
score wd,t = 1 + ln(fd,t) · IDF (t). Called Dt the set of documents containing t, the prediction
weight of each term is defined as follows:</p>
          <p>V AR(t) = X
t∈q
s 1</p>
          <p>X (wd,t − wt)2
ft d∈Dt
where wt is the average weight wd,t over the documents in Dt. As for the previous cases,
the VAR score is aggregated over the query terms using either the sum (sumVAR), maximum
(maxVAR), or the average (avgVAR).</p>
        </sec>
      </sec>
      <sec id="sec-2-2">
        <title>2.2. Post-Retrieval Predictors</title>
        <p>Post-retrieval predictors utilize both the query and the top-k retrieved documents to formulate
their prediction. Among post-retrieval predictors, we recognize three major classes: those based
on the coherence of the retrieved list (e.g., clarity), those based on the distribution of the scores
(e.g., NQC, WIG, SMV), and those relying on the robustness of the results – i.e., how much the
introduction of noise in the query or the collection changes the retrieved ranked list – such as
the UEF framework.</p>
        <p>Clarity [17] This represents one of the seminal efforts in the QPP domain. The approach
consists of computing the language model for the first top-k documents, which we refer to as
θD@k. Then, this language model is compared with the language model of the entire corpus
θC . The rationale is that the language model for the first top-k is highly divergent from the
language model of the entire collection, then documents are highly coherent internally and this
hints at an effective retrieval. More in detail:</p>
        <p>Clarity(q) =
where V is the vocabulary and p(w|θ) is the probability of observing the token w according to
θ the language model.</p>
        <p>Weighted Information Gain (WIG) [18] This predictor represents one of the first efforts
in utilizing the distribution of the scores for the top-k retrieved documents to determine the
retrieval performance. More in detail, the prediction is given as the average difference between
the score of the top-k documents retrieved and the score that the entire corpus would obtain in
response to the query, which acts as a regularization component.</p>
        <p>W IG(q) =
1</p>
        <p>X (s(q, d) − s(q, C)) .</p>
        <p>kp|q| d∈D@k
Normalized Query Commitment (NQC) [19] This predictor is in line with WIG, with the
main difference that, in this case, the statistic of interest is the variance of the scores of the first
top-k documents, normalized by the score that the entire corpus would obtain in response to
the query:</p>
        <p>N QC(q) =
s(q, C)</p>
        <sec id="sec-2-2-1">
          <title>Score Magnitude and Variance (SMV) [20] This QPP combines NQC and WIG, by taking</title>
          <p>into account both the magnitude of the scores, as well as their variance and it is defined as
follows:</p>
          <p>SM V (q) =
s(q, C)
3. Porting qpptk to TIREx for Simplified QPP Experiments
The qpptk toolkit currently implements eight pre-retrieval and four post-retrieval QPP methods.
Leveraging a PyTerrier index, the toolkit is designed with extensibility in mind, allowing for
easy integration of additional methods. You can access qpptk on GitHub.2 In this work, we
integrate qpptk into the TIREx framework [15].3 We dockerize qpptk so that it can run in the
TIRA sandbox in TIREx and adopt it so that it can use arbitrary inputs from ir_datasets [21]. To
reduce the effort of running performance predictions, we configure qpptk in TIREx so that it
uses the the PyTerrier [22] Indexer that is dockerized in TIRA as previous stage so that it runs
against prebuilt PyTerrier indices which makes its execution faster.</p>
          <p>The incorporation of qpptk into TIREx serves multiple purposes. Firstly, it establishes a stable
and reproducible baseline for future QPP experiments. Secondly, it allows the testing of identical
QPP methods across all collections available in TIREx, contributing multiple shared baselines to
the research community. Lastly, it facilitates swift and seamless prototyping. Developers can
focus exclusively on QPP method development and evaluation, delegating secondary tasks like
setting up the IR system or processing the corpus to TIREx.</p>
          <p>To use qpptk in TIREx, users must install the TIRA package and execute the following code:4</p>
          <p>The code in Listing 1 demonstrates how using only a few lines of code, users can access the
TIRA API, load a dataset, and initialize a QPP transformer. The transformer then returns a
DataFrame with all the predictions. This example illustrates the ease of use and the potential of
the TIREx framework in facilitating QPP experiments.
2https://github.com/Zendelo/QPP-EnhancedEval.
3See https://www.tira.io/tirex. Accessed on 28-03-2024.
4Assuming that PyTerrier and ir_datasets are already installed.
0.1 Äs
'll
a
d
n
e
K
are employed consistently.</p>
          <p>To further demonstrate the potential of qpptk@TIREx for the community, we conduct a
comprehensive ANalysis Of the VAriance (ANOVA) on the pre-retrieval QPP methods, employing
10 different retrieval models (rankers) and 23 diverse datasets. The rankers include BM25, LGD,
PL2, TF-IDF, ANCE-Cosine, ColBERT, SBERT, MonoT5-3b, MonoT5-Base and DirichletLM. We
randomly sample 30 queries from each dataset, reflecting the maximum number available across
all datasets. We then compute sARE error values for each query across all datasets and rankers,6
utilizing them for the ANOVA analysis. The results, presented in Table 1, reveal that the ranker,
dataset, and QPP factors are all statistically significant, indicating that at least one of the levels
of each factor has a statistically significant effect on the prediction quality. The effect sizes are
small, with the dataset factor having the largest effect size on prediction quality. The
interaction effects Ranker:Dataset and Dataset:QPP are also significant, with Dataset:QPP having
the most substantial effect size. This underscores the dependency of pre-retrieval QPP method
performance on the dataset, with the influence of the retrieval model being dataset-specific.
6Similarly to correlation, the values are computed per each combination of dataset, ranker, and QPP method.</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>5. Conclusion and Future Work</title>
      <p>This paper introduces the qpptk toolkit, encompassing a diverse array of pre-retrieval and
post-retrieval QPP methods. We present the integration of qpptk into TIREx, to simplify rapid
and efficient experimentation with QPP methods.</p>
      <p>The integration helps to establish stable and reproducible baselines for forthcoming QPP
experiments, testing identical QPP methods across all available TIREx collections, and
contributing multiple shared baselines to the research community. Currently, available QPP methods in
qpptk include eight pre-retrieval methods and four post-retrieval methods, with the potential
for further expansion. Moving forward, our future work involves expanding the qpptk toolkit
to incorporate additional QPP methods and enhancing its integration into TIREx. All code
and data used in this work are accessible on GitHub and Zenodo,7 encouraging the research
community to utilize and build upon our contributions.
[4] P. Thomas, F. Scholer, P. Bailey, A. Moffat, Tasks, queries, and rankers in pre-retrieval
performance prediction, in: Proceedings of the 22nd Australasian Document Computing
Symposium, ADCS 2017, 2017, pp. 1–4.
[5] H. Roitman, Enhanced performance prediction of fusion-based retrieval, in: D. Song,
T. Liu, L. Sun, P. Bruza, M. Melucci, F. Sebastiani, G. H. Yang (Eds.), Proceedings of the
2018 ACM SIGIR International Conference on Theory of Information Retrieval, ICTIR
2018, Tianjin, China, September 14-17, 2018, ACM, 2018, pp. 195–198. URL: https://doi.org/
10.1145/3234944.3234950. doi:10.1145/3234944.3234950.
[6] G. Faggioli, N. Ferro, J. Mothe, F. Raiber, M. Fröbe, Report on the 1st workshop on query
performance prediction and its evaluation in new tasks (qpp++ 2023) at ecir 2023, SIGIR
Forum 57 (2023). URL: https://doi.org/10.1145/3636341.3636356. doi:10.1145/3636341.
3636356.
[7] C. Zhai, J. Lafferty, A study of smoothing methods for language models applied to
information retrieval, ACM Trans. Inf. Syst. 22 (2004) 179–214. URL: https://doi.org/10.
1145/984321.984322. doi:10.1145/984321.984322.
[8] H. Hashemi, H. Zamani, W. B. Croft, Performance prediction for non-factoid question
answering, in: Y. Fang, Y. Zhang, J. Allan, K. Balog, B. Carterette, J. Guo (Eds.), Proceedings
of the 2019 ACM SIGIR International Conference on Theory of Information Retrieval,
ICTIR 2019, Santa Clara, CA, USA, October 2-5, 2019, ACM, 2019, pp. 55–58. URL: https:
//doi.org/10.1145/3341981.3344249. doi:10.1145/3341981.3344249.
[9] G. Faggioli, T. Formal, S. Marchesin, S. Clinchant, N. Ferro, B. Piwowarski, Query
performance prediction for neural IR: are we there yet?, in: J. Kamps, L. Goeuriot, F. Crestani,
M. Maistro, H. Joho, B. Davis, C. Gurrin, U. Kruschwitz, A. Caputo (Eds.), Advances in
Information Retrieval - 45th European Conference on Information Retrieval, ECIR 2023, Dublin,
Ireland, April 2-6, 2023, Proceedings, Part I, volume 13980 of Lecture Notes in Computer
Science, Springer, 2023, pp. 232–248. URL: https://doi.org/10.1007/978-3-031-28244-7_15.
doi:10.1007/978-3-031-28244-7\_15.
[10] S. Datta, D. Ganguly, M. Mitra, D. Greene, A relative information gain-based query
performance prediction framework with generated query variants, ACM Trans. Inf. Syst.
41 (2023) 38:1–38:31. URL: https://doi.org/10.1145/3545112. doi:10.1145/3545112.
[11] G. Faggioli, O. Zendel, J. S. Culpepper, N. Ferro, F. Scholer, An enhanced evaluation
framework for query performance prediction, in: D. Hiemstra, M. Moens, J. Mothe, R. Perego,
M. Potthast, F. Sebastiani (Eds.), Advances in Information Retrieval - 43rd European
Conference on IR Research, ECIR 2021, Virtual Event, March 28 - April 1, 2021, Proceedings,
Part I, volume 12656 of Lecture Notes in Computer Science, Springer, 2021, pp. 115–129. URL:
https://doi.org/10.1007/978-3-030-72113-8_8. doi:10.1007/978-3-030-72113-8\_8.
[12] G. Faggioli, O. Zendel, J. S. Culpepper, N. Ferro, F. Scholer, smare: a new paradigm to
evaluate and understand query performance prediction methods, Inf. Retr. J. 25 (2022) 94–122.</p>
      <p>URL: https://doi.org/10.1007/s10791-022-09407-w. doi:10.1007/S10791-022-09407-W.
[13] O. Zendel, J. S. Culpepper, F. Scholer, Is query performance prediction with multiple
query variations harder than topic performance prediction?, in: Proceedings of the
44th International ACM SIGIR Conference on Research and Development in Information
Retrieval, SIGIR’21, Association for Computing Machinery, New York, NY, USA, 2021. URL:
https://doi.org/10.1145/3404835.3463039. doi:10.1145/3404835.3463039.
[14] M. Fröbe, M. Wiegmann, N. Kolyada, B. Grahm, T. Elstner, F. Loebe, M. Hagen, B. Stein,
M. Potthast, Continuous Integration for Reproducible Shared Tasks with TIRA.io, in:
J. Kamps, L. Goeuriot, F. Crestani, M. Maistro, H. Joho, B. Davis, C. Gurrin, U.
Kruschwitz, A. Caputo (Eds.), Advances in Information Retrieval. 45th European Conference
on IR Research (ECIR 2023), Lecture Notes in Computer Science, Springer, Berlin
Heidelberg New York, 2023, pp. 236–241. URL: https://link.springer.com/chapter/10.1007/
978-3-031-28241-6_20. doi:10.1007/978-3-031-28241-6_20.
[15] M. Fröbe, J. H. Reimer, S. MacAvaney, N. Deckers, S. Reich, J. Bevendorff, B. Stein, M. Hagen,
M. Potthast, The information retrieval experiment platform, in: H. Chen, W. E. Duh,
H. Huang, M. P. Kato, J. Mothe, B. Poblete (Eds.), Proceedings of the 46th International
ACM SIGIR Conference on Research and Development in Information Retrieval, SIGIR
2023, Taipei, Taiwan, July 23-27, 2023, ACM, 2023, pp. 2826–2836. URL: https://doi.org/10.
1145/3539618.3591888. doi:10.1145/3539618.3591888.
[16] Y. Zhao, F. Scholer, Y. Tsegay, Effective pre-retrieval query performance prediction using
similarity and variability evidence, in: C. Macdonald, I. Ounis, V. Plachouras, I. Ruthven,
R. W. White (Eds.), Advances in Information Retrieval , 30th European Conference on IR
Research, ECIR 2008, Glasgow, UK, March 30-April 3, 2008. Proceedings, volume 4956 of
Lecture Notes in Computer Science, Springer, 2008, pp. 52–64. URL: https://doi.org/10.1007/
978-3-540-78646-7_8. doi:10.1007/978-3-540-78646-7\_8.
[17] S. Cronen-Townsend, Y. Zhou, W. B. Croft, Predicting query performance, in: K. Järvelin,
M. Beaulieu, R. A. Baeza-Yates, S. Myaeng (Eds.), SIGIR 2002: Proceedings of the 25th
Annual International ACM SIGIR Conference on Research and Development in Information
Retrieval, August 11-15, 2002, Tampere, Finland, ACM, 2002, pp. 299–306. URL: https:
//doi.org/10.1145/564376.564429. doi:10.1145/564376.564429.
[18] Y. Zhou, W. B. Croft, Query performance prediction in web search environments, in:
W. Kraaij, A. P. de Vries, C. L. A. Clarke, N. Fuhr, N. Kando (Eds.), SIGIR 2007: Proceedings
of the 30th Annual International ACM SIGIR Conference on Research and Development in
Information Retrieval, Amsterdam, The Netherlands, July 23-27, 2007, ACM, 2007, pp. 543–
550. URL: https://doi.org/10.1145/1277741.1277835. doi:10.1145/1277741.1277835.
[19] A. Shtok, O. Kurland, D. Carmel, F. Raiber, G. Markovits, Predicting query performance by
query-drift estimation, ACM Trans. Inf. Syst. 30 (2012) 11:1–11:35. URL: https://doi.org/10.
1145/2180868.2180873. doi:10.1145/2180868.2180873.
[20] Y. Tao, S. Wu, Query performance prediction by considering score magnitude and variance
together, in: J. Li, X. S. Wang, M. N. Garofalakis, I. Soboroff, T. Suel, M. Wang (Eds.),
Proceedings of the 23rd ACM International Conference on Conference on Information and
Knowledge Management, CIKM 2014, Shanghai, China, November 3-7, 2014, ACM, 2014, pp. 1891–
1894. URL: https://doi.org/10.1145/2661829.2661906. doi:10.1145/2661829.2661906.
[21] S. MacAvaney, A. Yates, S. Feldman, D. Downey, A. Cohan, N. Goharian, Simplified data
wrangling with ir_datasets, in: SIGIR, 2021.
[22] C. Macdonald, N. Tonellotto, Declarative experimentation ininformation retrieval using
pyterrier, in: Proceedings of ICTIR 2020, 2020.
[23] A. Bondarenko, L. Gienapp, M. Fröbe, M. Beloucif, Y. Ajjour, A. Panchenko, C. Biemann,
B. Stein, H. Wachsmuth, M. Potthast, M. Hagen, Overview of Touché 2021: Argument
Retrieval, in: K. Candan, B. Ionescu, L. Goeuriot, H. Müller, A. Joly, M. Maistro, F. Piroi,
medical information retrieval, in: N. Ferro, F. Crestani, M. Moens, J. Mothe, F. Silvestri,
G. M. D. Nunzio, C. Hauff, G. Silvello (Eds.), Advances in Information Retrieval - 38th
European Conference on IR Research, ECIR 2016, Padua, Italy, March 20-23, 2016. Proceedings,
volume 9626 of Lecture Notes in Computer Science, Springer, 2016, pp. 716–722.
[46] C. Cleverdon, The Cranfield tests on index language devices, in: ASLIB Proceedings, MCB
UP Ltd. (Reprinted in Readings in Information Retrieval, Karen Sparck-Jones and Peter
Willett, editors, Morgan Kaufmann, 1997), 1967, pp. 173–192.
[47] C. W. Cleverdon, The significance of the Cranfield tests on index languages, in: A.
Bookstein, Y. Chiaramella, G. Salton, V. V. Raghavan (Eds.), Proceedings of the 14th Annual
International ACM SIGIR Conference on Research and Development in Information
Retrieval. Chicago, Illinois, USA, October 13-16, 1991 (Special Issue of the SIGIR Forum),
ACM, 1991, pp. 3–12.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>S.</given-names>
            <surname>Farzana</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Fröbe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Granitzer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Hendriksen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Hiemstra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Zerhoudi</surname>
          </string-name>
          , 1st International Workshop on Open Web Search (WOWS),
          <source>in: Advances in Information Retrieval. 46th European Conference on IR Research (ECIR</source>
          <year>2024</year>
          ), Springer,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>C.</given-names>
            <surname>Hauff</surname>
          </string-name>
          ,
          <source>Predicting the Effectiveness of Queries and Retrieval Systems, Ph.D. thesis</source>
          , University of Twente, Enschede, Netherlands,
          <year>2010</year>
          . URL: http://eprints.eemcs.utwente.nl/ 17338/.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>D.</given-names>
            <surname>Carmel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Yom-Tov</surname>
          </string-name>
          ,
          <article-title>Estimating the Query Difficulty for Information Retrieval</article-title>
          ,
          <source>Synthesis Lectures on Information Concepts</source>
          , Retrieval, and Services, Morgan &amp; Claypool Publishers,
          <year>2010</year>
          . URL: https://doi.org/10.2200/S00235ED1V01Y201004ICR015. doi:
          <volume>10</volume>
          .2200/ S00235ED1V01Y201004ICR015. G. Faggioli, N. Ferro (Eds.),
          <source>Experimental IR Meets Multilinguality, Multimodality, and Interaction. 12th International Conference of the CLEF Association (CLEF</source>
          <year>2021</year>
          ), volume
          <volume>12880</volume>
          of Lecture Notes in Computer Science, Springer, Berlin Heidelberg New York,
          <year>2021</year>
          , pp.
          <fpage>450</fpage>
          -
          <lpage>467</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>A.</given-names>
            <surname>Bondarenko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Fröbe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kiesel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Syed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Gurcke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Beloucif</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Panchenko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Biemann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Wachsmuth</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hagen</surname>
          </string-name>
          , Overview of Touché 2022:
          <article-title>Argument Retrieval</article-title>
          , in: A.
          <string-name>
            <surname>Barrón-Cedeño</surname>
            ,
            <given-names>G. D. S.</given-names>
          </string-name>
          <string-name>
            <surname>Martino</surname>
            ,
            <given-names>M. D.</given-names>
          </string-name>
          <string-name>
            <surname>Esposti</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Sebastiani</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Macdonald</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>Pasi</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Hanbury</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Potthast</surname>
          </string-name>
          , G. Faggioli, N. Ferro (Eds.),
          <source>Experimental IR Meets Multilinguality, Multimodality, and Interaction. 13th International Conference of the CLEF Association (CLEF</source>
          <year>2022</year>
          ), Lecture Notes in Computer Science, Springer, Berlin Heidelberg New York,
          <year>2022</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>A.</given-names>
            <surname>Bondarenko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Fröbe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kiesel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Schlatt</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Barriere</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Ravenet</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Hemamou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Luck</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. H.</given-names>
            <surname>Reimer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hagen</surname>
          </string-name>
          , Overview of Touché 2023:
          <article-title>Argument and Causal Retrieval</article-title>
          ,
          <source>in: Advances in Information Retrieval. 45th European Conference on IR Research (ECIR</source>
          <year>2023</year>
          ), Lecture Notes in Computer Science, Springer, Berlin Heidelberg New York,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>N.</given-names>
            <surname>Craswell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Hawking</surname>
          </string-name>
          ,
          <article-title>Overview of the TREC-2002 web track</article-title>
          , in: E. M.
          <string-name>
            <surname>Voorhees</surname>
            ,
            <given-names>L. P.</given-names>
          </string-name>
          Buckland (Eds.),
          <source>Proceedings of The Eleventh Text REtrieval Conference</source>
          , TREC 2002, Gaithersburg, Maryland, USA, November
          <volume>19</volume>
          -
          <issue>22</issue>
          ,
          <year>2002</year>
          , volume
          <volume>500</volume>
          -251 of NIST Special Publication,
          <source>National Institute of Standards and Technology (NIST)</source>
          ,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [27]
          <string-name>
            <given-names>N.</given-names>
            <surname>Craswell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Hawking</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Wilkinson</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.</surname>
          </string-name>
          <article-title>Wu, Overview of the TREC 2003 web track</article-title>
          , in: E. M.
          <string-name>
            <surname>Voorhees</surname>
            ,
            <given-names>L. P.</given-names>
          </string-name>
          Buckland (Eds.),
          <source>Proceedings of The Twelfth Text REtrieval Conference</source>
          , TREC 2003, Gaithersburg, Maryland, USA, November
          <volume>18</volume>
          -
          <issue>21</issue>
          ,
          <year>2003</year>
          , volume
          <volume>500</volume>
          -255 of NIST Special Publication,
          <source>National Institute of Standards and Technology (NIST)</source>
          ,
          <year>2003</year>
          , pp.
          <fpage>78</fpage>
          -
          <lpage>92</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [28]
          <string-name>
            <given-names>N.</given-names>
            <surname>Craswell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Hawking</surname>
          </string-name>
          ,
          <article-title>Overview of the TREC 2004 web track</article-title>
          , in: E. M.
          <string-name>
            <surname>Voorhees</surname>
            ,
            <given-names>L. P.</given-names>
          </string-name>
          Buckland (Eds.),
          <source>Proceedings of the Thirteenth Text REtrieval Conference</source>
          , TREC 2004, Gaithersburg, Maryland, USA, November
          <volume>16</volume>
          -
          <issue>19</issue>
          ,
          <year>2004</year>
          , volume
          <volume>500</volume>
          -261 of NIST Special Publication,
          <source>National Institute of Standards and Technology (NIST)</source>
          ,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [29]
          <string-name>
            <given-names>C. L. A.</given-names>
            <surname>Clarke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Craswell</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Soboroff</surname>
          </string-name>
          ,
          <article-title>Overview of the TREC 2004 terabyte track</article-title>
          , in: E. M.
          <string-name>
            <surname>Voorhees</surname>
            ,
            <given-names>L. P.</given-names>
          </string-name>
          Buckland (Eds.),
          <source>Proceedings of the Thirteenth Text REtrieval Conference</source>
          , TREC 2004, Gaithersburg, Maryland, USA, November
          <volume>16</volume>
          -
          <issue>19</issue>
          ,
          <year>2004</year>
          , volume
          <volume>500</volume>
          -261 of NIST Special Publication,
          <source>National Institute of Standards and Technology (NIST)</source>
          ,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [30]
          <string-name>
            <given-names>C. L. A.</given-names>
            <surname>Clarke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Scholer</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Soboroff</surname>
          </string-name>
          ,
          <article-title>The TREC 2005 terabyte track</article-title>
          , in: E. M.
          <string-name>
            <surname>Voorhees</surname>
            ,
            <given-names>L. P.</given-names>
          </string-name>
          Buckland (Eds.),
          <source>Proceedings of the Fourteenth Text REtrieval Conference</source>
          , TREC 2005, Gaithersburg, Maryland, USA, November
          <volume>15</volume>
          -
          <issue>18</issue>
          ,
          <year>2005</year>
          , volume
          <volume>500</volume>
          -266 of NIST Special Publication,
          <source>National Institute of Standards and Technology (NIST)</source>
          ,
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [31]
          <string-name>
            <given-names>S.</given-names>
            <surname>Büttcher</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. L. A.</given-names>
            <surname>Clarke</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Soboroff</surname>
          </string-name>
          ,
          <article-title>The TREC 2006 terabyte track</article-title>
          , in: E. M.
          <string-name>
            <surname>Voorhees</surname>
            ,
            <given-names>L. P.</given-names>
          </string-name>
          Buckland (Eds.),
          <source>Proceedings of the Fifteenth Text REtrieval Conference</source>
          , TREC 2006, Gaithersburg, Maryland, USA, November
          <volume>14</volume>
          -
          <issue>17</issue>
          ,
          <year>2006</year>
          , volume
          <volume>500</volume>
          -272 of NIST Special Publication,
          <source>National Institute of Standards and Technology (NIST)</source>
          ,
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [32]
          <string-name>
            <given-names>E. M.</given-names>
            <surname>Voorhees</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Harman</surname>
          </string-name>
          ,
          <article-title>Overview of the seventh text retrieval conference (trec-7)</article-title>
          , in: TREC,
          <year>1998</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [33]
          <string-name>
            <given-names>E. M.</given-names>
            <surname>Voorhees</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Harman</surname>
          </string-name>
          ,
          <article-title>Overview of the eight text retrieval conference (trec-8)</article-title>
          , in: TREC,
          <year>1999</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [34]
          <string-name>
            <given-names>E. M.</given-names>
            <surname>Voorhees</surname>
          </string-name>
          ,
          <article-title>Nist trec disks 4 and 5: Retrieval test collections document set</article-title>
          ,
          <year>1996</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [35]
          <string-name>
            <given-names>E.</given-names>
            <surname>Voorhees</surname>
          </string-name>
          ,
          <article-title>Overview of the trec 2004 robust retrieval track</article-title>
          ,
          <source>in: TREC</source>
          ,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [36]
          <string-name>
            <given-names>H.</given-names>
            <surname>Hashemi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Aliannejadi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Zamani</surname>
          </string-name>
          , W. B.
          <string-name>
            <surname>Croft</surname>
          </string-name>
          ,
          <article-title>ANTIQUE: A non-factoid question answering benchmark</article-title>
          , in: J. M. Jose, E. Yilmaz,
          <string-name>
            <given-names>J.</given-names>
            <surname>Magalhães</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Castells</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Ferro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. J.</given-names>
            <surname>Silva</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Martins</surname>
          </string-name>
          (Eds.),
          <source>Advances in Information Retrieval - 42nd European Conference on IR Research</source>
          , ECIR
          <year>2020</year>
          , Lisbon, Portugal,
          <source>April 14-17</source>
          ,
          <year>2020</year>
          , Proceedings,
          <string-name>
            <surname>Part</surname>
            <given-names>II</given-names>
          </string-name>
          , volume
          <volume>12036</volume>
          of Lecture Notes in Computer Science, Springer,
          <year>2020</year>
          , pp.
          <fpage>166</fpage>
          -
          <lpage>173</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [37]
          <string-name>
            <given-names>N.</given-names>
            <surname>Craswell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Mitra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Yilmaz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Campos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E. M.</given-names>
            <surname>Voorhees</surname>
          </string-name>
          ,
          <article-title>Overview of the TREC 2019 Deep Learning Track</article-title>
          , in: E.
          <string-name>
            <surname>Voorhees</surname>
            ,
            <given-names>A</given-names>
          </string-name>
          . Ellis (Eds.), 28th International Text Retrieval Conference,
          <string-name>
            <surname>TREC</surname>
          </string-name>
          <year>2019</year>
          , Gaithersburg, Maryland, USA, NIST Special Publication,
          <source>National Institute of Standards and Technology (NIST)</source>
          ,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [38]
          <string-name>
            <given-names>N.</given-names>
            <surname>Craswell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Mitra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Yilmaz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Campos</surname>
          </string-name>
          ,
          <article-title>Overview of the TREC 2020 Deep Learning Track</article-title>
          , in: E. M.
          <string-name>
            <surname>Voorhees</surname>
            ,
            <given-names>A</given-names>
          </string-name>
          . Ellis (Eds.),
          <source>Proceedings of the 29th Text REtrieval Conference</source>
          , TREC 2020,
          <string-name>
            <given-names>Virtual</given-names>
            <surname>Event</surname>
          </string-name>
          , Gaithersburg,
          <string-name>
            <surname>MD</surname>
          </string-name>
          , USA, November
          <volume>16</volume>
          -
          <issue>20</issue>
          ,
          <year>2020</year>
          , volume
          <volume>1266</volume>
          of NIST Special Publication,
          <source>National Institute of Standards and Technology (NIST)</source>
          ,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [39]
          <string-name>
            <given-names>E. M.</given-names>
            <surname>Voorhees</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Alam</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Bedrick</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Demner-Fushman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W. R.</given-names>
            <surname>Hersh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Roberts</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Soboroff</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. L.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <article-title>TREC-COVID: constructing a pandemic information retrieval test collection</article-title>
          ,
          <source>SIGIR Forum 54</source>
          (
          <year>2020</year>
          ) 1:
          <fpage>1</fpage>
          -
          <lpage>1</lpage>
          :
          <fpage>12</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [40]
          <string-name>
            <given-names>L. L.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Chandrasekhar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Reas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Eide</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Funk</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Kinney</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Merrill</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Mooney</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. A.</given-names>
            <surname>Murdick</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Rishi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Sheehan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Shen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stilson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. D.</given-names>
            <surname>Wade</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Wilhelm</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Xie</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Raymond</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. S.</given-names>
            <surname>Weld</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Etzioni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Kohlmeier</surname>
          </string-name>
          , CORD-
          <volume>19</volume>
          : the covid-19 open research dataset, CoRR abs/
          <year>2004</year>
          .10706 (
          <year>2020</year>
          ). arXiv:
          <year>2004</year>
          .10706.
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [41]
          <string-name>
            <given-names>W. R.</given-names>
            <surname>Hersh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. T.</given-names>
            <surname>Bhupatiraju</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Ross</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Cohen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Kraemer</surname>
          </string-name>
          , P. Johnson,
          <article-title>TREC 2004 genomics track overview</article-title>
          , in: E. M.
          <string-name>
            <surname>Voorhees</surname>
            ,
            <given-names>L. P.</given-names>
          </string-name>
          Buckland (Eds.),
          <source>Proceedings of the Thirteenth Text REtrieval Conference</source>
          , TREC 2004, Gaithersburg, Maryland, USA, November
          <volume>16</volume>
          -
          <issue>19</issue>
          ,
          <year>2004</year>
          , volume
          <volume>500</volume>
          -261 of NIST Special Publication,
          <source>National Institute of Standards and Technology (NIST)</source>
          ,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [42]
          <string-name>
            <given-names>W. R.</given-names>
            <surname>Hersh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Cohen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. T.</given-names>
            <surname>Bhupatiraju</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P. M.</given-names>
            <surname>Roberts</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Hearst</surname>
          </string-name>
          ,
          <article-title>TREC 2005 genomics track overview</article-title>
          , in: E. M.
          <string-name>
            <surname>Voorhees</surname>
            ,
            <given-names>L. P.</given-names>
          </string-name>
          Buckland (Eds.),
          <source>Proceedings of the Fourteenth Text REtrieval Conference</source>
          , TREC 2005, Gaithersburg, Maryland, USA, November
          <volume>15</volume>
          -
          <issue>18</issue>
          ,
          <year>2005</year>
          , volume
          <volume>500</volume>
          -266 of NIST Special Publication,
          <source>National Institute of Standards and Technology (NIST)</source>
          ,
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [43]
          <string-name>
            <given-names>K.</given-names>
            <surname>Roberts</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Demner-Fushman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E. M.</given-names>
            <surname>Voorhees</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W. R.</given-names>
            <surname>Hersh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Bedrick</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. J.</given-names>
            <surname>Lazar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Pant</surname>
          </string-name>
          ,
          <article-title>Overview of the TREC 2017 precision medicine track</article-title>
          , in: E. M.
          <string-name>
            <surname>Voorhees</surname>
            ,
            <given-names>A</given-names>
          </string-name>
          . Ellis (Eds.),
          <source>Proceedings of The Twenty-Sixth Text REtrieval Conference</source>
          , TREC 2017, Gaithersburg, Maryland, USA, November
          <volume>15</volume>
          -
          <issue>17</issue>
          ,
          <year>2017</year>
          , volume
          <volume>500</volume>
          -324 of NIST Special Publication,
          <source>National Institute of Standards and Technology (NIST)</source>
          ,
          <year>2017</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [44]
          <string-name>
            <given-names>K.</given-names>
            <surname>Roberts</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Demner-Fushman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E. M.</given-names>
            <surname>Voorhees</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W. R.</given-names>
            <surname>Hersh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Bedrick</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. J.</given-names>
            <surname>Lazar</surname>
          </string-name>
          ,
          <article-title>Overview of the TREC 2018 precision medicine track</article-title>
          , in: E. M.
          <string-name>
            <surname>Voorhees</surname>
            ,
            <given-names>A</given-names>
          </string-name>
          . Ellis (Eds.),
          <source>Proceedings of the Twenty-Seventh Text REtrieval Conference</source>
          , TREC 2018, Gaithersburg, Maryland, USA, November
          <volume>14</volume>
          -
          <issue>16</issue>
          ,
          <year>2018</year>
          , volume
          <volume>500</volume>
          -331 of NIST Special Publication,
          <source>National Institute of Standards and Technology (NIST)</source>
          ,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [45]
          <string-name>
            <given-names>V.</given-names>
            <surname>Boteva</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. G.</given-names>
            <surname>Ghalandari</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Sokolov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Riezler</surname>
          </string-name>
          ,
          <article-title>A full-text learning to rank dataset for</article-title>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>