<!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>WHUIRGroup at the CLEF 2016 eHealth Lab Task 3</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Ruixue Wang</string-name>
          <email>ruixue_wang@whu.edu.cn</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Wei Lu</string-name>
          <email>weilu@whu.edu.cn</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Ke Ren</string-name>
          <email>renke19910123@163.com</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>School of Information Management Wuhan University</institution>
          ,
          <addr-line>No. 299 Bayi Road, 430072 Wuhan, Hubei</addr-line>
          ,
          <country country="CN">China</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper presents our work on the 2016 CLEF eHealth Task 3.We used Indri to conduct our experiments. We used CHV to expand query and proposed a learning-to-rank algorithm to re-rank the result.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>More and more people through search engine find medical information to diagnose their
symptoms and understand the health information. Such searchers we call laypeople or
health consumer have little medical knowledge and often fail to find the necessary
information. Because they are unfamiliar with medical terminology and the reliability the
web sources, when laypeople try to use the results for self-treatment it may lead to
dangersous consequences.</p>
      <p>
        To help laypeople, Conference and Labs of the Evaluation Forum (CLEF) launched
the eHealth Evaluation Lab in 2013[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].The 2016 CLEF eHealth Task 3 Patient-Centred
Information Retrieval[
        <xref ref-type="bibr" rid="ref2">2</xref>
        ][
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] is a continuation of previous CLEF eHealth IR tasks. In
this year’s task ,the dataset used is ClueWeb12 B13 instead of previous data collection
which is one million documents provided by the Khresmoi project1.The queries are
generated by query generators who read the real health consumer posts from health web
forums “askDocs2” .
      </p>
      <p>In this paper we present our participation to the 2016 CLEF eHealth Task 3. The rest of
this paper is organized as follows. Section 2 presents the method we used to solve the
task. The experimental results are described in Section 3.We conclude in Section 4.
1 Medical Information Analysis and Retrieval, http://www.khresmoi.eu
2 https://www.reddit.com/r/AskDocs/</p>
    </sec>
    <sec id="sec-2">
      <title>Method</title>
      <sec id="sec-2-1">
        <title>Framework of our system</title>
        <p>This year, the organizer extracted posts from the 'askDocs' forum of Reddit, and
presented them to query generators who had to create queries based on what they read in
the initial user post. So the queries are close to laypeople’s queries in search engine.
But different people may use different terms to express their symptoms, so we adopt
Consumer Health Vocabularies (CHV)3 to expand queries.</p>
        <p>
          Consumer Health Vocabularies are developed by Qing T. Zeng [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ] .It contains different
ways laypeople express and think about health topics and bridges this vocabularies to
UMLs expressions. We used each term in queries and search them in online CHV
systems and the term expressions which is different from the initial term are used for query
expansion.
2.3
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>Readability of the search result</title>
        <p>In CLEF 2015 eHealth IR task, readability was an important factor to judge the retrieval
results and used Urbp to evaluate the result. Readability assessments were collected by
asking the assessors whether they believed a patient would understand the retrieved
document. Assessments were provided on a four point scale, the point meaning showed
in Table1.</p>
        <sec id="sec-2-2-1">
          <title>Point Meaning</title>
          <p>
            1 It is very technical and difficult to read and understand
2 It is somewhat technical and difficult to read and understand
3 It is somewhat easy to read and understand
4 It is very easy to read and understand
Tiffany M Walsh[
            <xref ref-type="bibr" rid="ref5">5</xref>
            ] used SMOG, Gunning FOG and Flesch-Kincaid to compare the
readability of Internet-based consumer health information articles from the associations
that represent the 5 leading casue of health-related death in America. So we take the
scores of SMOG, Gunning FOG, Flesch-Kincaid and the number of words, complex
words, sentences, characters and syllable, as the features to train the model of
readability. We remove the html tag of the document and use the same way to remove tags of
the results of CLEF2016 task 3 runs. We used libsvm4 tools to train the model.
2.4
          </p>
        </sec>
      </sec>
      <sec id="sec-2-3">
        <title>Learning-to-rank Algorithm</title>
        <p>We used the 2015 best run as training data and RankLib 5 to train the learning-to-rank
model. We adopted LambdaMART[6] method and use readability features and LM
result ranking features to train the model. Then apply the model to classify the result of
CHV-based query expansion result. Finally, the results are re-ranked by their new
scores.</p>
        <sec id="sec-2-3-1">
          <title>3 http://consumerhealthvocab.chpc.utah.edu/CHVwiki/</title>
          <p>4 https://www.csie.ntu.edu.tw/~cjlin/libsvm/index.html
5 https://sourceforge.net/p/lemur/wiki/RankLib/</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Experiments and results</title>
      <p>The dataset of 2016 eHealth Task 3 is ClueWeb12 B13. The organizer provide
access to an Azure instance where participants can access the dataset of ClueWeb12 B13,
standard indexes built with the Terrier tool and the Indri tool and additional resources
such as a spam list, anchor texts, urls. We adopt Indri Index in the Azure to conduct our
experiments. We submit three runs where the description for each run is in Table2.</p>
      <p>In CLEF 2016 eHealth Lab, our group focus on the task 3 which is patient-centred
information retrieval. We used language model as the baseline.Because of the gap
between laypeople and professions, we propose a CHV-based query expansion model.
When we train the re-rank model, we consider readability as one of the features to make
laypeople easily read and understand the result. In the future, we will continue the
CHV-based query expansion for better retrieval results.
6. Q. Wu, C.J.C. Burges, K. Svore and J. Gao. Adapting Boosting for Information Retrieval
Measures. Journal of Information Retrieval, 2007.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Goeuriot</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jones</surname>
            ,
            <given-names>G.J.F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kelly</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Leveling</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hanbury</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , M¨uller, H.,
          <string-name>
            <surname>Salantera</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Suominen</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zuccon</surname>
          </string-name>
          , G.:
          <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>
          . (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Kelly</surname>
          </string-name>
          ,
          <article-title>Liadh and Goeuriot, Lorraine and Suominen, Hanna and Névéol, Aurélie and Palotti, Joao and Zuccon, Guido. Overview of the CLEF eHealth Evaluation Lab 2016</article-title>
          .
          <source>CLEF 2016 - 7th Conference and Labs of the Evaluation Forum, Lecture Notes in Computer Science (LNCS)</source>
          , Springer, September,
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Zuccon</surname>
          </string-name>
          , Guido and Palotti, Joao and Goeuriot, Lorraine and Kelly, Liadh and Lupu, Mihai and Pecina, Pavel and Mueller, Henning and Budaher, Julie and Deacon, Anthony.
          <source>The IR Task at the CLEF eHealth Evaluation Lab</source>
          <year>2016</year>
          :
          <article-title>User-centred Health Information Retrieval</article-title>
          .
          <article-title>CLEF 2016 Evaluation Labs</article-title>
          and Workshop: Online Working Notes, CEUR-WS,
          <year>September</year>
          ,
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Zeng</surname>
            <given-names>Q T</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tse</surname>
            <given-names>T.</given-names>
          </string-name>
          <article-title>Exploring and developing consumer health vocabularies[J]</article-title>
          .
          <source>Journal of the American Medical Informatics Association</source>
          ,
          <year>2006</year>
          ,
          <volume>13</volume>
          (
          <issue>1</issue>
          ):
          <fpage>24</fpage>
          -
          <lpage>29</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Walsh</surname>
            <given-names>T M</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Volsko</surname>
            <given-names>T A</given-names>
          </string-name>
          .
          <article-title>Readability assessment of internet-based consumer health information</article-title>
          [J].
          <source>Respiratory care</source>
          ,
          <year>2008</year>
          ,
          <volume>53</volume>
          (
          <issue>10</issue>
          ):
          <fpage>1310</fpage>
          -
          <lpage>1315</lpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>