<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">Team OpenWebSearch at CLEF 2024: QuantumCLEF</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Maik</forename><surname>Fröbe</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">Friedrich-Schiller-Universität Jena</orgName>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Daria</forename><surname>Alexander</surname></persName>
							<affiliation key="aff1">
								<orgName type="institution">Radboud Universiteit Nijmegen</orgName>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Gijs</forename><surname>Hendriksen</surname></persName>
							<affiliation key="aff1">
								<orgName type="institution">Radboud Universiteit Nijmegen</orgName>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Ferdinand</forename><surname>Schlatt</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">Friedrich-Schiller-Universität Jena</orgName>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Matthias</forename><surname>Hagen</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">Friedrich-Schiller-Universität Jena</orgName>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Martin</forename><surname>Potthast</surname></persName>
							<affiliation key="aff2">
								<orgName type="department">ScaDS.AI</orgName>
								<orgName type="institution">University of Kassel</orgName>
								<address>
									<settlement>hessian.AI</settlement>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Team OpenWebSearch at CLEF 2024: QuantumCLEF</title>
					</analytic>
					<monogr>
						<idno type="ISSN">1613-0073</idno>
					</monogr>
					<idno type="MD5">2679598664F5FC93984000815010CB25</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2025-04-23T17:58+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<textClass>
				<keywords>
					<term>learning-to-rank</term>
					<term>bootstrapping</term>
					<term>feature selection</term>
				</keywords>
			</textClass>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>We describe the OpenWebSearch group's participation in the CLEF 2024 QuantumClef IR Feature Selection track. Our submitted runs focus on the observation that the importance of features in learning-to-rank models can vary and contradict itself when changing the training setup. To address this problem and identify a subset of features that is robust across diverse downstream training procedures, we bootstrap feature importance scores by repeatedly training models on randomly selected subsets of features and measuring their importance in trained models. We indeed observe that feature importance varies widely across different bootstraps and also contradicts itself. We hypothesized that quantum annealers could better explore this complex optimization landscape than simulated annealers. However, we find that quantum annealers do not find substantially more optimal solutions that yield substantially more effective learning-to-rank models.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1.">Introduction</head><p>Learning-to-Rank aims to identify a combination of features that produce an effective ranking <ref type="bibr" target="#b0">[1]</ref>. Even in the era of pre-trained transformers <ref type="bibr" target="#b1">[2]</ref>, feature-based learning-to-rank remains important as it can integrate features not available in transformers, compensating for knowledge to which transformers have no access <ref type="bibr" target="#b2">[3,</ref><ref type="bibr" target="#b3">4]</ref>. Especially commercial search engines might combine many features, e.g., a recent leak claims that Google search incorporates more than 14 000 features into their ranking. 1  Such scenarios highlight the importance of proper feature selection, as different search systems (even if they might be bundled behind a single UI) might target at different tasks (expressed via an evaluation scenario, e.g., evaluation measure with a test dataset) that require different sets of features. In the scenario of the QuantumCLEF task <ref type="bibr" target="#b4">[5,</ref><ref type="bibr" target="#b5">6,</ref><ref type="bibr" target="#b6">7]</ref>, we start from the original quadratic unconstrained binary optimization prepared in the official tutorial <ref type="bibr" target="#b7">[8]</ref> and contrast the components of this optimization problem with bootstrapped alternatives. Bootstrapping is a frequently used approach in statistics if the mean of some population is not meaningful or can not be calculated (e.g., for categorical values) that draws repeated samples of some data <ref type="bibr" target="#b8">[9]</ref>. We use bootstrapping for feature selection by repeatedly sampling LambdaMART models from the training data. Thereby, we follow the intuition that the original optimization problem that uses the mutual information and the conditional mutual information can not capture all potentially interesting dependencies that might impact what features are important. Our code and the bootstrapped feature-importance scores are available online. 2</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.">Related Work</head><p>We will review related work on bootstrapping and feature selection in information retrieval that inspired our work. 𝑋 ← 𝑋 + [model.calculateFeatureImportance()] 6: end while 7: return 𝑋 Bootstrapping in Information Retrieval Bootstrapping, i.e., the process of repeatedly sampling from the same distribution, has been used previously in information retrieval, e.g., to sample from the relevance judgments, from the topics, or from the document corpus <ref type="bibr" target="#b9">[10]</ref>. The leave-out-uniques test is a form of re-sampling of relevance judgments used to estimate the reusability of test collections <ref type="bibr" target="#b10">[11,</ref><ref type="bibr" target="#b11">12,</ref><ref type="bibr" target="#b12">13]</ref>. Bootstrapping topics has been used for significance tests <ref type="bibr" target="#b13">[14,</ref><ref type="bibr" target="#b14">15]</ref> respectively for assessing the discriminatory power of evaluation measures <ref type="bibr" target="#b15">[16,</ref><ref type="bibr" target="#b16">17,</ref><ref type="bibr" target="#b17">18]</ref>. Analogously, bootstrapping the document corpus can help to simulate different corpora <ref type="bibr" target="#b17">[18]</ref>, estimate if results transfer to other corpora <ref type="bibr" target="#b18">[19]</ref>, or, again, for meta evaluations of evaluation measures <ref type="bibr" target="#b17">[18]</ref>. Given the wide applicability of bootstrapping in the field of information retrieval, we now intend to apply it to learning to rank. Contrary to the approaches discussed above, our approach mainly focuses on re-sampling the set of features that subsequent learning-to-rank models can access.</p><p>Feature Selection Feature selection approaches are either filter methods, wrapper methods, or embedded methods <ref type="bibr" target="#b19">[20]</ref>, distinguished on how deep (if at all) they integrate with the learning algorithm <ref type="bibr" target="#b20">[21]</ref>. Filter methods have no integration with the learning algorithm <ref type="bibr" target="#b20">[21]</ref> (i.e., they run before the learning starts), e.g., the original quadratic unconstrained binary optimization prepared in the official QuantumCLEF tutorial <ref type="bibr" target="#b7">[8]</ref> falls into this category. Wrapper methods use a search algorithm to select the features <ref type="bibr" target="#b21">[22]</ref>, whereas embedd methods integrate the selection into the actual learning phase <ref type="bibr" target="#b20">[21]</ref>. Our approach falls into the category of wrapper methods. There is already an high number of existing feature selection approaches for learning to rank <ref type="bibr" target="#b21">[22,</ref><ref type="bibr" target="#b20">21,</ref><ref type="bibr" target="#b22">23,</ref><ref type="bibr" target="#b23">24,</ref><ref type="bibr" target="#b24">25,</ref><ref type="bibr" target="#b25">26]</ref>, comparing respectively integrating them with boostrapping could be interesting directions for future work.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.">Selecting Important Features with Bootstrapping</head><p>This section describes our bootstrapping approach for feature selection. Conceptually, we formulate a quadratic unconstrained binary optimization problem <ref type="bibr" target="#b4">[5]</ref> that can be optimized via simulated annealing and via quantum annealing. The number of features that our feature selection selects is an hyperparameter that one could optimize, but we leave this for future work and always select the top-25 features (our focus was on the MQ2007 dataset that had around 50 features, so we intuitively selected 25 as number of features to target at). We create three optimization formulations for our bootstrapping feature selection that differ in if they incorporate mutual information optimization objectives or not. We submitted our three approaches within the qCLEF platform <ref type="bibr" target="#b26">[27]</ref> for simulated annealers and quantum annealers, yielding 6 runs overall.</p><p>Algorithm 1 shows our bootstrapping algorithm. The algorithm has the features 𝑓 , the target label 𝑦, the number of bootstraps 𝑏, an LightGBM training procedure, and a sampling approach as input. Subsequently, each bootstrapping iteration first samples a subset of features 𝑓 ′ together with their corresponding ground truth labels 𝑦 ′ . With this sampled set of features, a LambdaMART model is trained for which the feature importance is calculated and added to the return vector 𝑋. For the training of the LambdaMART models, we use the LightGBM <ref type="bibr" target="#b27">[28]</ref> implementation in PyTerrier <ref type="bibr" target="#b28">[29]</ref>. We do not tune the hyperparameters of LambdaMART but use the hyperparameters from a different project without adoption <ref type="bibr" target="#b29">[30]</ref>. We sample the featured 𝑓 ′ by randomly sorting the feature records and selecting a random subset of 25 features.</p><p>To incorporate the bootstrapped feature importance scores into the feature selection, we include them into an optimization criterion that can be optimized by quantum annealers and by simulated annealing. Therefore, we use the quadratic unconstrained binary optimization (QUBO) formulation that minimizes the following objective <ref type="bibr" target="#b4">[5]</ref>:</p><formula xml:id="formula_0">𝑥 ⃗ 𝑇 • 𝑄 • 𝑥 ⃗ = 𝑁 ∑︁ 𝑖 𝑞 𝑖 • 𝑥 𝑖 + 𝑁 ∑︁ 𝑖&lt;𝑗 𝑞 𝑖,𝑗 • 𝑥 𝑖 • 𝑥 𝑗</formula><p>Where ∑︀ 𝑁 𝑖 𝑞 𝑖 • 𝑥 𝑖 is the linear part of the QUBO and ∑︀ 𝑁 𝑖&lt;𝑗 𝑞 𝑖,𝑗 • 𝑥 𝑖 • 𝑥 𝑗 is the quadratic part. The official starting point of the shared task fills the linear part of the QUBO with the negative mutual information between a feature and the ground truth label and the quadratic part with the negative conditional mutual information between two features and the ground truth label <ref type="bibr" target="#b7">[8]</ref>. To incorporate our bootstrapped feature importance, we use the following formulation for the linear part:</p><formula xml:id="formula_1">𝑞 𝑖 • 𝑥 𝑖 = 𝑏 ∑︁ 𝑘=1 𝑋 𝑘 𝑖 |𝑋|</formula><p>Where 𝑏 is the number of bootstraps, 𝑋 𝑘 𝑖 is the importance of feature 𝑖 in the 𝑘-th bootstrapped model, and |𝑋| is the overall importance. Analogously, we implement the quadratic part of the bootstrapping QUBO via:</p><formula xml:id="formula_2">𝑞 𝑖,𝑗 • 𝑥 𝑖 • 𝑥 𝑗 = 𝑏 ∑︁ 𝑘=1 𝑋 𝑘 𝑖 + 𝑋 𝑘 𝑗 |𝑋|</formula><p>Where 𝑏 is the number of bootstraps, 𝑋 𝑘 𝑖 is the importance of feature 𝑖 in the 𝑘-th bootstrapped model, 𝑋 𝑘 𝑗 is the importance of feature 𝑗 in the 𝑘-th bootstrapped model, and |𝑋| is the overall importance. In both bootstrapping equations, we skip for a feature 𝑖 or a feature combination 𝑖, 𝑗 bootstraps that do not include the feature because it was not sampled.</p><p>To summarize the points above, we have four parts to build QUBO formulations, two from the original mutual information formulation, and two from our new bootstrapping formulation. We combine them to produce three systems that we run on simulated and quantum annealing: mi-linear-bootstrapped-boost-3 This QUBO uses the linear part of our bootstrapping formulation and the quadratic part from the original conditional mutual information. We multiple the bootstrapping scores with 3 as this factor provided results on a similar scale then the previous mutual information (identified by manual inspection).</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>mi-linear-and-quadratic-bootstrapped-boost-3</head><p>This QUBO uses the linear and quadratic part of our bootstrapping formulation. We multiple the bootstrapping scores with 3 as this factor provided results on a similar scale then the previous mutual information (identified by manual inspection).</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>mi-bootstrap-mixture</head><p>This QUBO uses the average of the mutual information and our bootstrapping variant for the linear and quadratic part.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.">Results</head><p>We provide evaluations of our methods compared to the baseline of using all features on the MQ2007 and Istella <ref type="bibr" target="#b2">[3]</ref> dataset. We report the results in terms of nDCG@10, reporting the 25-th, the 50-th,</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Table 1</head><p>Effectiveness of the LambdaMART models in terms of nDCG@10 on the MQ2007 dataset. We report the results of our three feature selection approaches that selected 25 features and their effectiveness at the 25-th, the 50-th and the 75-th percentile and the mean for simulated annealing and quantum annealing. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Feature Selection</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Table 2</head><p>Effectiveness of the LambdaMART models in terms of nDCG@10 on the Istella dataset. We report the results of our three feature selection approaches that selected 25 features and their effectiveness at the 25-th, the 50-th and the 75-th percentile and the mean for simulated annealing and quantum annealing. ) and the Mean of the nDCG@10 for all our three approaches for simulated annealing and quantum annealing. Table <ref type="table">1</ref> shows the results for the MQ2007 dataset. We observe that all feature selection approaches slightly improve upon the baseline of selecting all features, with the bootstrapping variants outperforming the mixed variant and the QUBO that uses the linear and quadratic bootstrapping part is the most effective one, for simulated and quantum annealing.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Feature Selection</head><p>Table <ref type="table">2</ref> shows the results for the Istella dataset. We observe that all feature selection approaches are substantially less effective then the baseline of using all features. It is interesting future work to investigate how this can be resolved.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5.">Conclusion</head><p>We presented the Open Web Search (OWS) team's submission to the QuantumCLEF shared task at CLEF 2023. The motivation behind our approach was that LambdaMART models trained on shuffled datasets might choose different features as important ones. Therefore, we repeatedly train LambdaMART models on randomized feature sets and measure the importance of the features in the trained model. For the MQ2007 dataset, our approach substantially outperforms the baseline, while for the Istella dataset, simply selecting all features is substantially more effective than our feature selection. For future work, we believe that accurately determining the number of to-be-selected features is an important next step, as this would help to not reduce the effectiveness in the Istella scenario.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head>Algorithm 1 Bootstrapping Feature Importance Scores</head><label></label><figDesc></figDesc><table><row><cell>Require:</cell><cell></cell><cell></cell></row><row><cell>𝑓, 𝑦</cell><cell cols="3">features for learning to rank with target predictions y</cell></row><row><cell>𝑏</cell><cell cols="3">number of desired bootstrapped feature importance scores</cell></row><row><cell cols="4">lightGBM lightGBM training procedure</cell></row><row><cell cols="4">sample a sampling approach</cell></row><row><cell>1: 𝑋 ← []</cell><cell></cell><cell></cell></row><row><cell cols="2">2: while 𝑖 ≤ 𝑏 do 3: 𝑓 ′ , 𝑦 ′ ← sample(𝑓 , 𝑦) 4: model ← lightGBM.train(𝑓</cell><cell>′ , 𝑦</cell><cell>′ )</cell></row><row><cell>5:</cell><cell></cell><cell></cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_1"><head></head><label></label><figDesc>𝜂 .25 𝜂 .50 𝜂 .75 Mean 𝜂 .25 𝜂 .50 𝜂 .75 Mean</figDesc><table><row><cell></cell><cell cols="4">Simulated Annealing</cell><cell cols="4">Quantum Annealing</cell></row><row><cell>mi-bootstrap-mixture</cell><cell cols="8">0.114 0.469 0.727 0.448 0.130 0.474 0.722 0.450</cell></row><row><cell cols="9">mi-linear-and-quadratic-bootstrapped-boost-3 0.126 0.460 0.733 0.452 0.130 0.450 0.726 0.451</cell></row><row><cell>mi-linear-bootstrapped-boost-3</cell><cell cols="8">0.118 0.464 0.718 0.451 0.145 0.444 0.716 0.448</cell></row><row><cell>Baseline All Features</cell><cell>-</cell><cell>-</cell><cell>-</cell><cell>0.447</cell><cell>-</cell><cell>-</cell><cell>-</cell><cell>-</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_2"><head></head><label></label><figDesc>𝜂 .25 𝜂 .50 𝜂 .75 Mean 𝜂 .25 𝜂 .50 𝜂 .75 Mean</figDesc><table><row><cell></cell><cell cols="4">Simulated Annealing</cell><cell cols="4">Quantum Annealing</cell></row><row><cell>mi-bootstrap-mixture</cell><cell cols="8">0.533 0.681 0.813 0.657 0.491 0.645 0.784 0.621</cell></row><row><cell cols="9">mi-linear-and-quadratic-bootstrapped-boost-3 0.529 0.677 0.809 0.654 0.473 0.634 0.768 0.609</cell></row><row><cell>mi-linear-bootstrapped-boost-3</cell><cell cols="8">0.474 0.630 0.772 0.609 0.504 0.655 0.793 0.632</cell></row><row><cell>Baseline All Features</cell><cell>-</cell><cell>-</cell><cell>-</cell><cell>0.715</cell><cell>-</cell><cell>-</cell><cell>-</cell><cell>-</cell></row></table><note>and the 75-th quantile (𝜂 .25 , 𝜂 .50 , respectively 𝜂 .75</note></figure>
		</body>
		<back>

			<div type="acknowledgement">
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Acknowledgments</head><p>This work has received funding from the European Union's Horizon Europe research and innovation program under grant agreement No 101070014 (OpenWebSearch.EU, https://doi.org/10.3030/101070014).</p></div>
			</div>


			<div type="funding">
<div xmlns="http://www.tei-c.org/ns/1.0"><p>1 https://sparktoro.com/blog/an-anonymous-source-shared-thousands-of-leaked-google-search-api-documents-with-meeveryone-in-seo-should-see-them 2 https://bitbucket.org/eval-labs/qc24-ows/</p></div>
			</div>

			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<monogr>
		<title level="m" type="main">Learning to Rank for Information Retrieval</title>
		<author>
			<persName><forename type="first">T</forename><surname>Liu</surname></persName>
		</author>
		<idno type="DOI">10.1007/978-3-642-14267-3</idno>
		<idno>doi:</idno>
		<ptr target="10.1007/978-3-642-14267-3" />
		<imprint>
			<date type="published" when="2011">2011</date>
			<publisher>Springer</publisher>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<monogr>
		<title level="m" type="main">Pretrained Transformers for Text Ranking: BERT and Beyond, Synthesis Lectures on Human Language Technologies</title>
		<author>
			<persName><forename type="first">J</forename><surname>Lin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><forename type="middle">F</forename><surname>Nogueira</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Yates</surname></persName>
		</author>
		<idno type="DOI">10.2200/S01123ED1V01Y202108HLT053</idno>
		<ptr target="https://doi.org/10.2200/S01123ED1V01Y202108HLT053.doi:10.2200/S01123ED1V01Y202108HLT053" />
		<imprint>
			<date type="published" when="2021">2021</date>
			<publisher>Morgan &amp; Claypool Publishers</publisher>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">The istella22 dataset: Bridging traditional and neural learning to rank evaluation</title>
		<author>
			<persName><forename type="first">D</forename><surname>Dato</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Macavaney</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><forename type="middle">M</forename><surname>Nardini</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Perego</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Tonellotto</surname></persName>
		</author>
		<idno type="DOI">10.1145/3477495.3531740</idno>
		<idno>doi:10.1145/3477495.3531740</idno>
		<ptr target="https://doi.org/10.1145/3477495.3531740" />
	</analytic>
	<monogr>
		<title level="m">SIGIR &apos;22: The 45th International ACM SIGIR Conference on Research and Development in Information Retrieval</title>
				<editor>
			<persName><forename type="first">E</forename><surname>Amigó</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">P</forename><surname>Castells</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">J</forename><surname>Gonzalo</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">B</forename><surname>Carterette</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">J</forename><forename type="middle">S</forename><surname>Culpepper</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">G</forename><surname>Kazai</surname></persName>
		</editor>
		<meeting><address><addrLine>Madrid, Spain</addrLine></address></meeting>
		<imprint>
			<publisher>ACM</publisher>
			<date type="published" when="2022">July 11 -15, 2022. 2022</date>
			<biblScope unit="page" from="3099" to="3107" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">The Power of Anchor Text in the Neural Retrieval Era</title>
		<author>
			<persName><forename type="first">M</forename><surname>Fröbe</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Günther</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Probst</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Potthast</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Hagen</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Advances in Information Retrieval. 44th European Conference on IR Research (ECIR 2022)</title>
		<title level="s">Lecture Notes in Computer Science</title>
		<editor>
			<persName><forename type="first">M</forename><surname>Hagen</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">S</forename><surname>Verberne</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">C</forename><surname>Macdonald</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">C</forename><surname>Seifert</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">K</forename><surname>Balog</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">K</forename><surname>Nørvåg</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">V</forename><surname>Setty</surname></persName>
		</editor>
		<meeting><address><addrLine>Berlin Heidelberg New York</addrLine></address></meeting>
		<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2022">2022</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">Quantumclef -quantum computing at CLEF</title>
		<author>
			<persName><forename type="first">A</forename><surname>Pasin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">F</forename><surname>Dacrema</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Cremonesi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Ferro</surname></persName>
		</author>
		<idno type="DOI">10.1007/978-3-031-56069-9_66</idno>
		<idno>doi:</idno>
		<ptr target="10.1007/978-3-031-56069-9\_66" />
	</analytic>
	<monogr>
		<title level="m">Advances in Information Retrieval -46th European Conference on Information Retrieval, ECIR 2024</title>
		<title level="s">Lecture Notes in Computer Science</title>
		<editor>
			<persName><forename type="first">N</forename><surname>Goharian</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">N</forename><surname>Tonellotto</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">Y</forename><surname>He</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">A</forename><surname>Lipani</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">G</forename><surname>Mcdonald</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">C</forename><surname>Macdonald</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">I</forename><surname>Ounis</surname></persName>
		</editor>
		<meeting><address><addrLine>Glasgow, UK</addrLine></address></meeting>
		<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2024">March 24-28, 2024. 2024</date>
			<biblScope unit="volume">14612</biblScope>
			<biblScope unit="page" from="482" to="489" />
		</imprint>
	</monogr>
	<note>Proceedings, Part V</note>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">QuantumCLEF 2024: Overview of the Quantum Computing Challenge for Information Retrieval and Recommender Systems at CLEF</title>
		<author>
			<persName><forename type="first">A</forename><surname>Pasin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Ferrari Dacrema</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Cremonesi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Ferro</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Working Notes of the Conference and Labs of the Evaluation Forum (CLEF 2024)</title>
				<meeting><address><addrLine>Grenoble, France</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2024">September 9th to 12th, 2024. 2024</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">Overview of QuantumCLEF 2024: The Quantum Computing Challenge for Information Retrieval and Recommender Systems at CLEF</title>
		<author>
			<persName><forename type="first">A</forename><surname>Pasin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Ferrari Dacrema</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Cremonesi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Ferro</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Experimental IR Meets Multilinguality, Multimodality, and Interaction -15th International Conference of the CLEF Association, CLEF 2024</title>
				<meeting><address><addrLine>Grenoble, France</addrLine></address></meeting>
		<imprint>
			<publisher>Proceedings</publisher>
			<date type="published" when="2024">September 9-12, 2024. 2024</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">Quantum computing for information retrieval and recommender systems</title>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">F</forename><surname>Dacrema</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Pasin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Cremonesi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Ferro</surname></persName>
		</author>
		<idno type="DOI">10.1007/978-3-031-56069-9_47</idno>
		<ptr target="https://doi.org/10.1007/978-3-031-56069-9_47.doi:10.1007/978-3-031-56069-9\_47" />
	</analytic>
	<monogr>
		<title level="m">Advances in Information Retrieval -46th European Conference on Information Retrieval, ECIR 2024</title>
		<title level="s">Lecture Notes in Computer Science</title>
		<editor>
			<persName><forename type="first">N</forename><surname>Goharian</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">N</forename><surname>Tonellotto</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">Y</forename><surname>He</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">A</forename><surname>Lipani</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">G</forename><surname>Mcdonald</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">C</forename><surname>Macdonald</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">I</forename><surname>Ounis</surname></persName>
		</editor>
		<meeting><address><addrLine>Glasgow, UK</addrLine></address></meeting>
		<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2024">March 24-28, 2024. 2024</date>
			<biblScope unit="volume">14612</biblScope>
			<biblScope unit="page" from="358" to="362" />
		</imprint>
	</monogr>
	<note>Proceedings, Part V</note>
</biblStruct>

<biblStruct xml:id="b8">
	<monogr>
		<title level="m" type="main">An Introduction to the Bootstrap</title>
		<author>
			<persName><forename type="first">B</forename><surname>Efron</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Tibshirani</surname></persName>
		</author>
		<idno type="DOI">10.1007/978-1-4899-4541-9</idno>
		<idno>doi:</idno>
		<ptr target="10.1007/978-1-4899-4541-9" />
		<imprint>
			<date type="published" when="1993">1993</date>
			<publisher>Springer</publisher>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<analytic>
		<title level="a" type="main">Bootstrapped nDCG Estimation in the Presence of Unjudged Documents</title>
		<author>
			<persName><forename type="first">M</forename><surname>Fröbe</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Gienapp</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Potthast</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Hagen</surname></persName>
		</author>
		<idno type="DOI">10.1007/978-3-031-28244-7_20</idno>
	</analytic>
	<monogr>
		<title level="m">Advances in Information Retrieval. 45th European Conference on IR Research (ECIR 2023)</title>
		<title level="s">Lecture Notes in Computer Science</title>
		<meeting><address><addrLine>Berlin Heidelberg New York</addrLine></address></meeting>
		<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2023">2023</date>
			<biblScope unit="volume">13980</biblScope>
			<biblScope unit="page" from="313" to="329" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b10">
	<analytic>
		<title level="a" type="main">Bias and the limits of pooling for large collections</title>
		<author>
			<persName><forename type="first">C</forename><surname>Buckley</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Dimmick</surname></persName>
		</author>
		<author>
			<persName><forename type="first">I</forename><surname>Soboroff</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><forename type="middle">M</forename><surname>Voorhees</surname></persName>
		</author>
		<idno type="DOI">10.1007/S10791-007-9032-X</idno>
		<ptr target="https://doi.org/10.1007/s10791-007-9032-x.doi:10.1007/S10791-007-9032-X" />
	</analytic>
	<monogr>
		<title level="j">Inf. Retr</title>
		<imprint>
			<biblScope unit="volume">10</biblScope>
			<biblScope unit="page" from="491" to="508" />
			<date type="published" when="2007">2007</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b11">
	<analytic>
		<title level="a" type="main">Too many relevants: Whither cranfield test collections?</title>
		<author>
			<persName><forename type="first">E</forename><forename type="middle">M</forename><surname>Voorhees</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Craswell</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Lin</surname></persName>
		</author>
		<idno type="DOI">10.1145/3477495.3531728</idno>
		<idno>doi:10.1145/3477495.3531728</idno>
		<ptr target="https://doi.org/10.1145/3477495.3531728" />
	</analytic>
	<monogr>
		<title level="m">SIGIR &apos;22: The 45th International ACM SIGIR Conference on Research and Development in Information Retrieval</title>
				<editor>
			<persName><forename type="first">E</forename><surname>Amigó</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">P</forename><surname>Castells</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">J</forename><surname>Gonzalo</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">B</forename><surname>Carterette</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">J</forename><forename type="middle">S</forename><surname>Culpepper</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">G</forename><surname>Kazai</surname></persName>
		</editor>
		<meeting><address><addrLine>Madrid, Spain</addrLine></address></meeting>
		<imprint>
			<publisher>ACM</publisher>
			<date type="published" when="2022">July 11 -15, 2022. 2022</date>
			<biblScope unit="page" from="2970" to="2980" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b12">
	<analytic>
		<title level="a" type="main">How reliable are the results of large-scale information retrieval experiments?</title>
		<author>
			<persName><forename type="first">J</forename><surname>Zobel</surname></persName>
		</author>
		<idno type="DOI">10.1145/290941.291014</idno>
		<ptr target="https://doi.org/10.1145/290941.291014.doi:10.1145/290941.291014" />
	</analytic>
	<monogr>
		<title level="m">SIGIR &apos;98: Proceedings of the 21st Annual International ACM SIGIR Conference on Research and Development in Information Retrieval</title>
				<editor>
			<persName><forename type="first">W</forename><forename type="middle">B</forename><surname>Croft</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">A</forename><surname>Moffat</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">C</forename><forename type="middle">J</forename><surname>Van Rijsbergen</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">R</forename><surname>Wilkinson</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">J</forename><surname>Zobel</surname></persName>
		</editor>
		<meeting><address><addrLine>Melbourne, Australia</addrLine></address></meeting>
		<imprint>
			<publisher>ACM</publisher>
			<date type="published" when="1998">August 24-28 1998. 1998</date>
			<biblScope unit="page" from="307" to="314" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b13">
	<analytic>
		<title level="a" type="main">Statistical inference in retrieval effectiveness evaluation</title>
		<author>
			<persName><forename type="first">J</forename><surname>Savoy</surname></persName>
		</author>
		<idno type="DOI">10.1016/S0306-4573(97)00027-7</idno>
		<idno>doi:10.1016/S0306-4573(97) 00027-7</idno>
		<ptr target="https://doi.org/10.1016/S0306-4573(97)00027-7" />
	</analytic>
	<monogr>
		<title level="j">Inf. Process. Manag</title>
		<imprint>
			<biblScope unit="volume">33</biblScope>
			<biblScope unit="page" from="495" to="512" />
			<date type="published" when="1997">1997</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b14">
	<analytic>
		<title level="a" type="main">A comparison of statistical significance tests for information retrieval evaluation</title>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">D</forename><surname>Smucker</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Allan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Carterette</surname></persName>
		</author>
		<idno type="DOI">10.1145/1321440.1321528</idno>
		<idno>doi:10.1145/1321440.1321528</idno>
		<ptr target="https://doi.org/10.1145/1321440.1321528" />
	</analytic>
	<monogr>
		<title level="m">Proceedings of the Sixteenth ACM Conference on Information and Knowledge Management, CIKM 2007</title>
				<editor>
			<persName><forename type="first">M</forename><forename type="middle">J</forename><surname>Silva</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">A</forename><forename type="middle">H F</forename><surname>Laender</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">R</forename><forename type="middle">A</forename><surname>Baeza-Yates</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">D</forename><forename type="middle">L</forename><surname>Mcguinness</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">B</forename><surname>Olstad</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">Ø</forename><forename type="middle">H</forename><surname>Olsen</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">A</forename><forename type="middle">O</forename><surname>Falcão</surname></persName>
		</editor>
		<meeting>the Sixteenth ACM Conference on Information and Knowledge Management, CIKM 2007<address><addrLine>Lisbon, Portugal</addrLine></address></meeting>
		<imprint>
			<publisher>ACM</publisher>
			<date type="published" when="2007">November 6-10, 2007. 2007</date>
			<biblScope unit="page" from="623" to="632" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b15">
	<analytic>
		<title level="a" type="main">Evaluating evaluation metrics based on the bootstrap</title>
		<author>
			<persName><forename type="first">T</forename><surname>Sakai</surname></persName>
		</author>
		<idno type="DOI">10.1145/1148170.1148261</idno>
		<idno>doi:10.1145/1148170.1148261</idno>
		<ptr target="https://doi.org/10.1145/1148170.1148261" />
	</analytic>
	<monogr>
		<title level="m">SIGIR 2006: Proceedings of the 29th Annual International ACM SIGIR Conference on Research and Development in Information Retrieval</title>
				<editor>
			<persName><forename type="first">E</forename><forename type="middle">N</forename><surname>Efthimiadis</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">S</forename><forename type="middle">T</forename><surname>Dumais</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">D</forename><surname>Hawking</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">K</forename><surname>Järvelin</surname></persName>
		</editor>
		<meeting><address><addrLine>Seattle, Washington, USA</addrLine></address></meeting>
		<imprint>
			<publisher>ACM</publisher>
			<date type="published" when="2006">August 6-11, 2006. 2006</date>
			<biblScope unit="page" from="525" to="532" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b16">
	<analytic>
		<title level="a" type="main">On the reliability of information retrieval metrics based on graded relevance</title>
		<author>
			<persName><forename type="first">T</forename><surname>Sakai</surname></persName>
		</author>
		<idno type="DOI">10.1016/J.IPM.2006.07.020</idno>
		<ptr target="https://doi.org/10.1016/j.ipm.2006.07.020.doi:10.1016/J.IPM.2006.07.020" />
	</analytic>
	<monogr>
		<title level="j">Inf. Process. Manag</title>
		<imprint>
			<biblScope unit="volume">43</biblScope>
			<biblScope unit="page" from="531" to="548" />
			<date type="published" when="2007">2007</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b17">
	<analytic>
		<title level="a" type="main">Corpus bootstrapping for assessment of the properties of effectiveness measures</title>
		<author>
			<persName><forename type="first">J</forename><surname>Zobel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Rashidi</surname></persName>
		</author>
		<idno type="DOI">10.1145/3340531.3411998</idno>
		<idno>doi:10.1145/3340531.3411998</idno>
		<ptr target="https://doi.org/10.1145/3340531.3411998" />
	</analytic>
	<monogr>
		<title level="m">CIKM &apos;20: The 29th ACM International Conference on Information and Knowledge Management, Virtual Event</title>
				<editor>
			<persName><forename type="first">M</forename><surname>D'aquin</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">S</forename><surname>Dietze</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">C</forename><surname>Hauff</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">E</forename><surname>Curry</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">P</forename><surname>Cudré-Mauroux</surname></persName>
		</editor>
		<meeting><address><addrLine>, Ireland</addrLine></address></meeting>
		<imprint>
			<publisher>ACM</publisher>
			<date type="published" when="2020">October 19-23, 2020. 2020</date>
			<biblScope unit="page" from="1933" to="1952" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b18">
	<analytic>
		<title level="a" type="main">Statistical precision of information retrieval evaluation</title>
		<author>
			<persName><forename type="first">G</forename><forename type="middle">V</forename><surname>Cormack</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><forename type="middle">R</forename><surname>Lynam</surname></persName>
		</author>
		<idno type="DOI">10.1145/1148170.1148262</idno>
		<idno>doi:10.1145/1148170.1148262</idno>
		<ptr target="https://doi.org/10.1145/1148170.1148262" />
	</analytic>
	<monogr>
		<title level="m">SIGIR 2006: Proceedings of the 29th Annual International ACM SIGIR Conference on Research and Development in Information Retrieval</title>
				<editor>
			<persName><forename type="first">E</forename><forename type="middle">N</forename><surname>Efthimiadis</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">S</forename><forename type="middle">T</forename><surname>Dumais</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">D</forename><surname>Hawking</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">K</forename><surname>Järvelin</surname></persName>
		</editor>
		<meeting><address><addrLine>Seattle, Washington, USA</addrLine></address></meeting>
		<imprint>
			<publisher>ACM</publisher>
			<date type="published" when="2006">August 6-11, 2006. 2006</date>
			<biblScope unit="page" from="533" to="540" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b19">
	<analytic>
		<title level="a" type="main">An introduction to variable and feature selection</title>
		<author>
			<persName><forename type="first">I</forename><surname>Guyon</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Elisseeff</surname></persName>
		</author>
		<ptr target="http://jmlr.org/papers/v3/guyon03a.html" />
	</analytic>
	<monogr>
		<title level="j">J. Mach. Learn. Res</title>
		<imprint>
			<biblScope unit="volume">3</biblScope>
			<biblScope unit="page" from="1157" to="1182" />
			<date type="published" when="2003">2003</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b20">
	<analytic>
		<title level="a" type="main">A systematic study of feature selection methods for learning to rank algorithms</title>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">B</forename><surname>Shirzad</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">R</forename><surname>Keyvanpour</surname></persName>
		</author>
		<idno type="DOI">10.4018/IJIRR.2018070104</idno>
		<ptr target="https://doi.org/10.4018/IJIRR.2018070104.doi:10.4018/IJIRR.2018070104" />
	</analytic>
	<monogr>
		<title level="j">Int. J. Inf. Retr. Res</title>
		<imprint>
			<biblScope unit="volume">8</biblScope>
			<biblScope unit="page" from="46" to="67" />
			<date type="published" when="2018">2018</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b21">
	<analytic>
		<title level="a" type="main">Fast feature selection for learning to rank</title>
		<author>
			<persName><forename type="first">A</forename><surname>Gigli</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Lucchese</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><forename type="middle">M</forename><surname>Nardini</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Perego</surname></persName>
		</author>
		<idno type="DOI">10.1145/2970398.2970433</idno>
		<ptr target="https://doi.org/10.1145/2970398.2970433.doi:10.1145/2970398.2970433" />
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 2016 ACM on International Conference on the Theory of Information Retrieval, ICTIR 2016</title>
				<editor>
			<persName><forename type="first">B</forename><surname>Carterette</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">H</forename><surname>Fang</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">M</forename><surname>Lalmas</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">J</forename><surname>Nie</surname></persName>
		</editor>
		<meeting>the 2016 ACM on International Conference on the Theory of Information Retrieval, ICTIR 2016<address><addrLine>Newark, DE, USA</addrLine></address></meeting>
		<imprint>
			<publisher>ACM</publisher>
			<date type="published" when="2016">September 12-6, 2016. 2016</date>
			<biblScope unit="page" from="167" to="170" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b22">
	<analytic>
		<title level="a" type="main">Towards feature selection for ranking and classification exploiting quantum annealers</title>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">F</forename><surname>Dacrema</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><surname>Moroni</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Nembrini</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Ferro</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Faggioli</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Cremonesi</surname></persName>
		</author>
		<idno type="DOI">10.1145/3477495.3531755</idno>
		<idno>doi:10.1145/ 3477495.3531755</idno>
		<ptr target="https://doi.org/10.1145/3477495.3531755" />
	</analytic>
	<monogr>
		<title level="m">SIGIR &apos;22: The 45th International ACM SIGIR Conference on Research and Development in Information Retrieval</title>
				<editor>
			<persName><forename type="first">E</forename><surname>Amigó</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">P</forename><surname>Castells</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">J</forename><surname>Gonzalo</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">B</forename><surname>Carterette</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">J</forename><forename type="middle">S</forename><surname>Culpepper</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">G</forename><surname>Kazai</surname></persName>
		</editor>
		<meeting><address><addrLine>Madrid, Spain</addrLine></address></meeting>
		<imprint>
			<publisher>ACM</publisher>
			<date type="published" when="2022">July 11 -15, 2022. 2022</date>
			<biblScope unit="page" from="2814" to="2824" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b23">
	<analytic>
		<title level="a" type="main">Feature selection for ranking</title>
		<author>
			<persName><forename type="first">X</forename><surname>Geng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Liu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Qin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Li</surname></persName>
		</author>
		<idno type="DOI">10.1145/1277741.1277811</idno>
		<idno>doi:10.1145/1277741.1277811</idno>
		<ptr target="https://doi.org/10.1145/1277741.1277811" />
	</analytic>
	<monogr>
		<title level="m">SIGIR 2007: Proceedings of the 30th Annual International ACM SIGIR Conference on Research and Development in Information Retrieval</title>
				<editor>
			<persName><forename type="first">W</forename><surname>Kraaij</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">A</forename><forename type="middle">P</forename><surname>De Vries</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">C</forename><forename type="middle">L A</forename><surname>Clarke</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">N</forename><surname>Fuhr</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">N</forename><surname>Kando</surname></persName>
		</editor>
		<meeting><address><addrLine>Amsterdam, The Netherlands</addrLine></address></meeting>
		<imprint>
			<publisher>ACM</publisher>
			<date type="published" when="2007">July 23-27, 2007. 2007</date>
			<biblScope unit="page" from="407" to="414" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b24">
	<analytic>
		<title level="a" type="main">Hierarchical feature selection for ranking</title>
		<author>
			<persName><forename type="first">G</forename><surname>Hua</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Zhang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Liu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Ma</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Ru</surname></persName>
		</author>
		<idno type="DOI">10.1145/1772690.1772830</idno>
		<idno>doi:10.1145/1772690.1772830</idno>
		<ptr target="https://doi.org/10.1145/1772690.1772830" />
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 19th International Conference on World Wide Web, WWW 2010</title>
				<editor>
			<persName><forename type="first">M</forename><surname>Rappa</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">P</forename><surname>Jones</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">J</forename><surname>Freire</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">S</forename><surname>Chakrabarti</surname></persName>
		</editor>
		<meeting>the 19th International Conference on World Wide Web, WWW 2010<address><addrLine>Raleigh, North Carolina, USA</addrLine></address></meeting>
		<imprint>
			<publisher>ACM</publisher>
			<date type="published" when="2010">April 26-30, 2010. 2010</date>
			<biblScope unit="page" from="1113" to="1114" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b25">
	<analytic>
		<title level="a" type="main">Exploiting result diversification methods for feature selection in learning to rank</title>
		<author>
			<persName><forename type="first">K</forename><forename type="middle">D</forename><surname>Naini</surname></persName>
		</author>
		<author>
			<persName><forename type="first">I</forename><forename type="middle">S</forename><surname>Altingövde</surname></persName>
		</author>
		<idno type="DOI">10.1007/978-3-319-06028-6_41</idno>
		<idno>doi:</idno>
		<ptr target="10.1007/978-3-319-06028-6\_41" />
	</analytic>
	<monogr>
		<title level="m">Advances in Information Retrieval -36th European Conference on IR Research, ECIR 2014</title>
		<title level="s">Lecture Notes in Computer Science</title>
		<editor>
			<persName><forename type="first">M</forename><surname>De Rijke</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">T</forename><surname>Kenter</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">A</forename><forename type="middle">P</forename><surname>De Vries</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">C</forename><surname>Zhai</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">F</forename><surname>Jong</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">K</forename><surname>Radinsky</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">K</forename><surname>Hofmann</surname></persName>
		</editor>
		<meeting><address><addrLine>Amsterdam, The Netherlands</addrLine></address></meeting>
		<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2014">April 13-16, 2014. 2014</date>
			<biblScope unit="volume">8416</biblScope>
			<biblScope unit="page" from="455" to="461" />
		</imprint>
	</monogr>
	<note>Proceedings</note>
</biblStruct>

<biblStruct xml:id="b26">
	<analytic>
		<title level="a" type="main">qclef: A proposal to evaluate quantum annealing for information retrieval and recommender systems</title>
		<author>
			<persName><forename type="first">A</forename><surname>Pasin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">F</forename><surname>Dacrema</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Cremonesi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Ferro</surname></persName>
		</author>
		<idno type="DOI">10.1007/978-3-031-42448-9_9</idno>
		<ptr target="https://doi.org/10.1007/978-3-031-42448-9_9.doi:10.1007/978-3-031-42448-9\_9" />
	</analytic>
	<monogr>
		<title level="m">Experimental IR Meets Multilinguality, Multimodality, and Interaction -14th International Conference of the CLEF Association, CLEF 2023</title>
		<title level="s">Lecture Notes in Computer Science</title>
		<editor>
			<persName><forename type="first">A</forename><surname>Arampatzis</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">E</forename><surname>Kanoulas</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">T</forename><surname>Tsikrika</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">S</forename><surname>Vrochidis</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">A</forename><surname>Giachanou</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">D</forename><surname>Li</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">M</forename><surname>Aliannejadi</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">M</forename><surname>Vlachos</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">G</forename><surname>Faggioli</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">N</forename><surname>Ferro</surname></persName>
		</editor>
		<meeting><address><addrLine>Thessaloniki, Greece</addrLine></address></meeting>
		<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2023">September 18-21, 2023. 2023</date>
			<biblScope unit="volume">14163</biblScope>
			<biblScope unit="page" from="97" to="108" />
		</imprint>
	</monogr>
	<note>Proceedings</note>
</biblStruct>

<biblStruct xml:id="b27">
	<analytic>
		<title level="a" type="main">LightGBM: A Highly Efficient Gradient Boosting Decision Tree</title>
		<author>
			<persName><forename type="first">G</forename><surname>Ke</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Q</forename><surname>Meng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Finley</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Wang</surname></persName>
		</author>
		<author>
			<persName><forename type="first">W</forename><surname>Chen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">W</forename><surname>Ma</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Q</forename><surname>Ye</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T.-Y</forename><surname>Liu</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Advances in Neural Information Processing Systems</title>
		<imprint>
			<biblScope unit="volume">30</biblScope>
			<date type="published" when="2017">2017</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b28">
	<analytic>
		<title level="a" type="main">Declarative experimentation in information retrieval using pyterrier</title>
		<author>
			<persName><forename type="first">C</forename><surname>Macdonald</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Tonellotto</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 2020 ACM SIGIR on International Conference on Theory of Information Retrieval</title>
				<meeting>the 2020 ACM SIGIR on International Conference on Theory of Information Retrieval</meeting>
		<imprint>
			<date type="published" when="2020">2020</date>
			<biblScope unit="page" from="161" to="168" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b29">
	<analytic>
		<title level="a" type="main">Team openwebsearch at clef 2024: Longeval</title>
		<author>
			<persName><forename type="first">D</forename><surname>Alexander</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Fröbe</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Hendriksen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><surname>Schlatt</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Hagen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><forename type="middle">H</forename><surname>Ad Martin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><forename type="middle">P</forename><surname>Potthast</surname></persName>
		</author>
		<author>
			<persName><surname>Vries</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Working Notes of CLEF 2024 -Conference and Labs of the Evaluation Forum (CLEF 2024)</title>
		<title level="s">CEUR Workshop Proceedings</title>
		<editor>
			<persName><forename type="first">G</forename><surname>Faggioli</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">N</forename><surname>Ferro</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">P</forename><surname>Galuščáková</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">A</forename><forename type="middle">G S</forename><surname>Herrera</surname></persName>
		</editor>
		<meeting><address><addrLine>Grenoble, France</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2024">September 9th to 12th, 2024. 2024</date>
		</imprint>
	</monogr>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
