<!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>Task 3: Patient-Centered Information Retrieval, IRTask 1: ad-hoc search - TEAM ub-botswana.</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Edwin Thuma</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Nkwebi Peace Motlogelwa</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Tebo Leburu-Dingalo</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Computer Science, University of Botswana</institution>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper describes the methods used for our participation to the CLEF (Conference and Labs of the Evaluation Forum) eHealth 2016 Task 3: Patient-Centered Information Retrieval, IRTask 1: ad-hoc search. For this participation, we evaluate the e ectiveness of three different retrieval strategies. In particular, we deploy PL2 with Boolean Fallback as our baseline system. In another approach, we deploy the collection enrichment approach, where the original query is expanded with additional terms from an external collection (collection not being searched). To deliver an e ective ranking, we combine the rst two rankers using data fusion techniques.</p>
      </abstract>
      <kwd-group>
        <kwd>Collection Enrichment</kwd>
        <kwd>Data Fusion</kwd>
        <kwd>Query Expansion</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        In this paper, we describe the methods used for our participation to the CLEF
eHealth 2016 Task 3: Patient-Centered Information Retrieval, IRTask 1: ad-hoc
search. Detailed task description is available in the overview paper of Task 3 [
        <xref ref-type="bibr" rid="ref5">5,
12</xref>
        ]. This task is a continuation of the previous CLEF eHealth Information
Retrieval (IR) task that ran in 2013 [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], 2014 [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] and 2015 [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. The CLEF eHealth
task aims to evaluate the e ectiveness of information retrieval systems when
searching for health related content on the web, with the objective to foster
research and development of search engines tailored to health information
seeking [2{4]. The CLEF eHealth Information Retrieval task was motivated by the
problem of users of information retrieval systems formulating circumlocutory
queries, using colloquial language instead of medical terms as studied by Zuccon
et al. [11] and Stanton et al. [10]. In their study, they found that modern search
engines are ill-equipped to handle such queries; only 3 out of the to 10 results
were highly useful for self diagnosis. In this paper, we attempt to tackle this
problem by using query expansion to try to add medical terms to the original
query in order to improve the retrieval e ectiveness of such systems. In addition,
we deploy data fusion techniques to combine multiple rankers in order to further
improve the retrieval e ectiveness.
      </p>
      <p>This paper is structured as follows. Section 2 contains a background on
algorithms used. Section 3 describes the 3 runs submitted by team ub-botswana.
In Section 4, we describe the experimental environment. Section 5 reports our
results.</p>
    </sec>
    <sec id="sec-2">
      <title>Background</title>
      <p>In this section, we begin by presenting a brief but essential background on the
di erent algorithms used in our experimental investigation and evaluation. We
start by describing the PL2 term weighting model in Section 2.1. In Section 2.2,
we describe the Bose-Einstein 1 (Bo1) model for query expansion, followed by a
description of the CombSUM for data fusion in Section 2.3. A description of the
runs is provided in Section 3.
2.1</p>
      <sec id="sec-2-1">
        <title>PL2 Term Weighting Model</title>
        <p>For our baseline system and all our experimental investigation and evaluation, we
used the PL2 term weighting model to score and rank medical documents. For a
given query Q, the relevance score of a document d based on the PL2 Divergence
from Randomness (DFR) term weighting model is expressed as follows [8]:
scoreP L2(d; Q) = Pt2Q tfqtnf+n1 tf n log2 tfn + (
tf n) log2 e + 0:5 log2(2 tf n)
(1)
where score(d; Q) is the relevance score of a document d for a given query Q.</p>
        <p>= tNfc is the mean and variance of a Poisson distribution, tf c is the frequency
of the term t in the collection C while N is the number of documents in the
collection. The normalised query term frequency is given by qtf n = qtqftmfax ,
where qtfmax is the maximum query term frequency among the query terms
and qtf is the query term frequency. tf n is the Normalisation 2 of the term
frequency tf of the term t in a document d and is expressed as:
(2)
(3)
tf n = tf log2
1 + b</p>
        <p>; (b &gt; 0)
avg l
l
In the above expression, l is the length of the document d, avg l is the average
document length in the collection and b is a hyper-parameter.
2.2</p>
        <p>
          Bose-Einstein 1 (Bo1) Model for Query Expansion
In our experimental investiagtion and evaluation, we used the Terrier-4.0
Divergence from Randomness (DFR) Bose-Einstein 1 (Bo1) model to select the most
informative terms from the topmost documents after a rst pass document
ranking on an external collection. The DFR Bo1 model calculates the information
content of a term t in the top-ranked documents as follows [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ]:
1 + Pn(t)
        </p>
        <p>Pn(t)
w(t) = tf x log2</p>
        <p>+ log2(1 + Pn(t))
tf c
Pn(t) = (4)</p>
        <p>N
where Pn(t) is the probability of t in the whole collection, tf x is the frequency
of the query term in the top x ranked documents, tf c is the frequency of the
term t in the collection, and N is the number of documents in the collection.
2.3</p>
      </sec>
      <sec id="sec-2-2">
        <title>CombSUM</title>
        <p>In another approach, we used data fusion to combine document rankings of
two di erent rankers. In particular, we used CombSUM, which is a data fusion
technique that sums the scores of each document in the constituent ranking
based on the following equation:
score(d; Q) = X scorer(d; Q)
r2R
(5)
where r is a ranking in R, R being the set of ranking being considered.
scorer(d; Q) is the score of document d for query Q in ranking r. If a document
d is not in ranking r, the scorer(d; Q) = 0. Hence, a document scored highly in
many rankings is likely to be scored highly in the nal ranking. In contrast, a
document with low scores, or that is present in less rankings is less likely to end
up highly in the nal ranking.
3</p>
        <p>
          Description of the Di erent Runs
ub-botswana EN Run1: This is the baseline system. We used PL2 Divergence
from Randomness term weighting model in Terrier-4.0 IR platform to score and
rank the documents in the ClueWeb 12 B13 document collection. In order to
improve the retrieval e ectiveness of our system, we deployed a boolean fallback
score modi er. With this score modi er, if any of the retrieved documents
contain all undecorated query terms (ie query terms without any operators), then
we remove from the result set documents that do not contain all undecorated
query terms. Otherwise, we do nothing. The intuition is that when we combine
this ranker with another ranker using any data fusion technique, documents
retrieved and ranked by this score modi er are likely to be ranked higher when
they appear in both rankings.
ub-botswana EN Run2: We used the baseline system without boolean fallback.
As improvement, we used the collection enrichment approach [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ], where we
selected the expansion terms from an external collection, which was made up of
the CLEF 2015 eHealth dataset. We used the Terrier-4.0 Divergence from
Randomness (DRF) Bose - Einstein 1 (Bo1) model for query expansion to select the
10 most informative terms from the top 3 ranked documents after the rst pass
retrieval (on the external collection). We then performed a second pass retrieval
on the local collection (ClueWeb 12 B13) with the new expanded query.
ub-botswana EN Run3: As improvement to ub-botswana EN fRun1 and Run2g,
we diployed a simple CombSUM data fusion technique to combine the rankings
for aforementioned rankers.
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Experimental Setting</title>
      <p>FAQ Retrieval Platform: For all our experimental evaluation, we used
Terrier4.01[7], an open source Information Retrieval (IR) platform. All the documents
(ClueWeb 12 B13) used in this study were rst pre-processed before indexing
and this involved tokenising the text and stemming each token using the full
Porter stemming algorithm [9]. Stopword removal was enabled and we used
Terrier stopword list. The hyper-parameter for PL2 was set to its default value of
b = 1.0.
5</p>
    </sec>
    <sec id="sec-4">
      <title>Results References</title>
      <p>These working notes were compiled and submitted before the relevance
judgments were released. However, results for our di erent runs and how our
approaches performed as compared to other participating teams are presented in
the Task 3: Patient-Centered Informational Retrieval overview paper entitled
\The IR Task at the CLEF eHealth Evaluation Lab 2016: User-centered Health
Information Retrieval" [12].
1 http://terrier.org/
7. I. Ounis, G. Amati, Plachouras V., B. He, C. Macdonald, and Johnson. Terrier
Information Retrieval Platform. In Proceedings of the 27th European Conference
on IR Research, volume 3408 of Lecture Notes in Computer Science, pages 517{519,
Berlin, Heidelberg, 2005. Springer-Verlag.
8. Vassilis Plachouras and Iadh Ounis. Multinomial Randomness Models for Retrieval
with Document Fields. In Proceedings of the 29th European Conference on IR
Research, pages 28{39, Berlin, Heidelberg, 2007. Springer-Verlag.
9. M.F. Porter. An Algorithm for Su x Stripping. Readings in Information Retrieval,
14(3):313{316, 1997.
10. I. Stanton, S. Ieong, and N. Mishra. Circumlocution in Diagnostic Medical Queries.</p>
      <p>In Proceedings of the 37th international ACM SIGIR conference on Research &amp;
development in information retrieval, pages 133{142. ACM, 2014.
11. G. Zuccon, B. Koopman, and J. Palotti. Diagnose This If You Can: On the
Effectiveness of Search Engines in Finding Medical Self-Diagnosis Information. In
Advances in Information Retrieval (ECIR 2015), pages 562{567. Springer, 2015.
12. G. Zuccon, J. Palotti, L. Goeuriot, L. Kelly, M. Lupu, P. Pecina, H. Mueller,
J. Budaher, and A. Deacon. The IR Task at the CLEF eHealth Evaluation Lab
2016: User-centred Health Information Retrieval. In CLEF 2016 Evaluation Labs
and Workshop: Online Working Notes. CEUR-WS, September 2016.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <given-names>G.</given-names>
            <surname>Amati</surname>
          </string-name>
          .
          <article-title>Probabilistic Models for Information Retrieval based on Divergence from Randomness</article-title>
          . University of Glasgow,UK,
          <source>PhD Thesis</source>
          , pages
          <volume>1</volume>
          {
          <fpage>198</fpage>
          ,
          <year>June 2003</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <given-names>L.</given-names>
            <surname>Goeuriot</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.J.F</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Kelly</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Leveling</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Hanbury</surname>
          </string-name>
          , H. Muller, S. Salantera,
          <string-name>
            <given-names>H.</given-names>
            <surname>Suominen</surname>
          </string-name>
          , and G. Zuccon.
          <source>ShARe/CLEF eHealth Evaluation Lab</source>
          <year>2013</year>
          ,
          <article-title>Task 3: Information Retrieval to Address Patients' Questions when Reading Clinical Reports</article-title>
          .
          <source>In CLEF 2013 Online Working Notes</source>
          , volume
          <volume>8138</volume>
          .
          <string-name>
            <surname>CEUR-WS</surname>
          </string-name>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <given-names>L.</given-names>
            <surname>Goeuriot</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Kelly</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Palotti</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Pecina</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Zuccon</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Hanbury</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.J.F</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <given-names>H.</given-names>
            <surname>Mueller</surname>
          </string-name>
          . Share/clef ehealth Evaluation
          <source>Lab</source>
          <year>2014</year>
          ,
          <article-title>Task 3: UserCentred Health Information Retrieval</article-title>
          .
          <source>In CLEF 2014 Online Working Notes. CEUR-WS</source>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <given-names>L.</given-names>
            <surname>Goeuriot</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Kelly</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Suominen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Hanlen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Neveol</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Grouin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Palotti</surname>
          </string-name>
          , and
          <string-name>
            <given-names>G.</given-names>
            <surname>Zuccon</surname>
          </string-name>
          .
          <article-title>Overview of the CLEF eHealth Evaluation Lab 2015</article-title>
          .
          <source>In CLEF 2015 - 6th Conference and Labs of the Evaluation Forum. Lecture Notes in Computer Science (LNCS)</source>
          , Springer,
          <year>September 2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <given-names>L.</given-names>
            <surname>Kelly</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Goeuriot</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Suominen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Neveol</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Palotti</surname>
          </string-name>
          , and
          <string-name>
            <given-names>G.</given-names>
            <surname>Zuccon</surname>
          </string-name>
          .
          <article-title>Overview of the CLEF eHealth Evaluation Lab 2016</article-title>
          .
          <source>In CLEF 2016 - 7th Conference and Labs of the Evaluation Forum. Lecture Notes in Computer Science (LNCS)</source>
          , Springer,
          <year>September 2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <given-names>K.L.</given-names>
            <surname>Kwok</surname>
          </string-name>
          and
          <string-name>
            <given-names>M.</given-names>
            <surname>Chan</surname>
          </string-name>
          .
          <article-title>Improving two-stage ad-hoc retrieval for short queries</article-title>
          .
          <source>In Proceedings of the 21st Annual International ACM SIGIR Conference on Research and Development in Information Retrieval</source>
          , pages
          <volume>250</volume>
          {
          <fpage>256</fpage>
          , New York, NY, USA,
          <year>1998</year>
          . ACM.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>