<!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>Concept-based Medical Document Retrieval: THCIB at CLEF eHealth Lab 2013 Task 3</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Xiaoshi Zhong</string-name>
          <email>xszhong@tsinghua.edu.cn</email>
          <xref ref-type="aff" rid="aff1">1</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yunqing Xia</string-name>
          <email>yqxia@tsinghua.edu.cn</email>
          <xref ref-type="aff" rid="aff1">1</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Zhongda Xie</string-name>
          <email>zdxie@tsinghua.edu.cn</email>
          <xref ref-type="aff" rid="aff1">1</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Sen Na</string-name>
          <email>nasen@canon-ib.com.cn</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Qinan Hu</string-name>
          <email>huqinan@canon-ib.com.cn</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yaohai Huang</string-name>
          <email>huangyaohai@canon-ib.com.cn</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Canon Information Technology (Beijing) Co. Ltd.</institution>
          ,
          <addr-line>Beijing 100080</addr-line>
          ,
          <country country="CN">China</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Dept. of Comp. Sci. &amp; Tech., Tsinghua National Laboratary of Information Science and Technologies, Tsinghua University</institution>
          ,
          <addr-line>Beijing 100084</addr-line>
          ,
          <country country="CN">China</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Relevant Irrelevant Un-judged</institution>
        </aff>
      </contrib-group>
      <abstract>
        <p>We describe our participation in the task 3 of ShARe/CLEF eHealth Lab 2013: information retrieval to address questions patient may have when reading clinical reports. In our experiments, we focus mainly on two levels of analysis, namely query analysis and document analysis, to disclose the relevance between query and documents. In terms of query analysis, we first observe each medical-oriented query to find its identical or related UMLS concepts derived from the query, which may help to induce relevant results that refer to the same thing but are represented in other surface forms. In such manner, we extend the query based on the medical concepts so as to achieve a bigger coverage. In terms of document analysis, we leverage different scores (e.g., relevance score, PageRank score, HITS score and layout score) as feature to re-rank the documents of search results. With those two levels of analysis, we implement a concept-based method and a topic-based method to accomplish the task of medical document retrieval. Experiments indicate that the proposed method is effective.</p>
      </abstract>
      <kwd-group>
        <kwd>medical document retrieval</kwd>
        <kwd>concept</kwd>
        <kwd>query analysis</kwd>
        <kwd>topic</kwd>
        <kwd>document ranking</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>Research on medical document retrieval becomes increasingly hot nowadays. Patients
are always curious of what is exactly written on the discharge summaries and what
the medical text exactly means. A headache issue is that the medical text is very
professional and hard to follow. As an effective manner in answering the questions
from the patients, medical information retrieval becomes highly popular.</p>
      <p>
        The THCIB team, comprised of researchers from Intelligent Search group at
Tsinghua University and Canon Information Technology (Beijing) Co. Ltd.
participated in all the three tasks in ShARe/CLEF eHealth Lab 2013 [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. In this
technical report, we describe our solution to task 3, namely retrieving information to
address the questions that patient may come up with when they read the medical
reports. The goal of this task is to produce a ranking list of documents with respect to
the most relevant aspects of a given medical query. We submitted seven runs for this
task. One is baseline, which uses only query and description, conducts no query
expansion, and ranks documents according to relevance and PageRank. The
remaining six runs are different implementations of our system, in which three runs
use discharge summaries and other three ones do not. In our system, we conduct
concept-based query analysis and query expansion. We rank the medical documents
with a unified ranking model considering relevance score, PageRank score, HITS
score and layout score. We also conduct two runs based on a topic-based query
expansion and rank the documents according to relevance.
      </p>
      <p>
        Based on query analysis, we developed two medical document retrieval methods:
concept-based method and topic-based method. In the concept-based method, we first
attempt to extend each query by extracting the UMLS1 concepts it belongs to and the
synonyms of these concepts so as to induce an expanded search query. After
searching documents with the expanded query, we re-rank the search results by a
unified ranking model, which is a linear combination of several feature scores:
relevance score, PageRank [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] score, HITS [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] score and layout score (derived from
HTML structure [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]). In the topic-based method, we conduct query analysis with the
manually defined seven topics, each of which is represented by several topic words.
With these topics, we extend each query to a set of expanded queries, which are used
to search medical documents.
      </p>
      <p>In the remainder of this paper, Section 2 demonstrates our infrastructure for
preprocessing the medical documents. Section 3 describes our method for the task and
Section 4 summarizes our submitted runs. We present the evaluation and discuss the
possible problem in Section 5. Finally, we make conclusions and state the future work
in Section 6.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Text Preprocessing</title>
      <p>Our participation in the CLEF eHealth 2013 task 3 builds upon the document
collection provided by the organizer. We use HTMLParser2 to extract the content and
URLs from the HTML pages. The plain text is used for document indexing with
Lucene3, while URL links are used in the PageRank and HITS algorithms.</p>
      <p>
        In the process of document indexing, we only extract two kinds of HTML text: title
and the plain text of HTML page. This is a straightforward solution as it is difficult to
seek for a unified framework with several HTML fields to describe all the webpages.
We leave it as our future work to find a better way to efficiently model the HTML
pages [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ][
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. In addition, in order to record the information of an HTML page such as
UID and URL, we finally index four fields of the original HTML pages: title, content,
UID, and URL.
1 UMLS: Unified Medical Language System, http://www.nlm.nih.gov/research/umls/
2 http://htmlparser.sourceforge.net/
3 http://lucene.apache.org/
      </p>
    </sec>
    <sec id="sec-3">
      <title>Methodology</title>
      <p>For the specific task of retrieving a ranked list of documents response to a medical
query with description information such as scenario and narrative, as shown in Fig.1,
we implement two different methods for the goal of medical document retrieval, as
mentioned in Section 1: 1) extracting concepts of a query and synonyms of those
concepts to extend a query and 2) manually defining topics to extend a query.
&lt;query&gt;
&lt;id&gt;qtest12&lt;/id&gt;
&lt;discharge_summary&gt;07726-023607</p>
      <p>DISCHARGE_SUMMARY.txt&lt;/discharge_summary&gt;
&lt;desc&gt;is clots in jugular in connection with HIV&lt;/desc&gt;
&lt;narr&gt;clots in jugular and HIV&lt;/narr&gt;
&lt;profile&gt;The 46-year old woman with end stage renal disease and polysubstance
abuse is depressed and wants to find out about her chance of having HIV.</p>
      <p>&lt;/profile&gt;
&lt;/query&gt;</p>
      <p>
        The main idea of the two methods lies in two aspects: query analysis and document
analysis. In terms of analysis, we observe a query according to its description
information (e.g., text of &lt;desc&gt; field in Fig.1) and other resources (e.g., UMLS) to
expand the query so as to obtain more relevant queries. By doing this, we achieve two
goals. The first one is to induce more relevant queries that are either specific ones to
the original query or different ones but expressing the same meaning; the second one
is to leverage extra information to explicitly redefine the query. For the document
analysis, we derive several features from document as scores to evaluate and re-rank
the search results. In what follows, we explain our method in details.
The organizer provides medical-oriented queries extracted from discharge summaries
(e.g., &lt;discharge_summary&gt; field in Fig.1) with some description information, as
shown in Fig.1. We believe it is necessary to make full use of the information to
improve performance. Similar to Wang et al. (2013) [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], our method extracts concepts
of a query and induces synonyms of those concepts from UMLS. After that, we
integrate those concepts and synonyms into an expanded search query. For example,
for the query in Fig.1, we can extract two concepts, i.e., “clots” and “HIV”, from
UMLS. There are three synonyms of the concept “clots”, i.e., “Clotrimazole”,
“1HImidazole” and “Klotrimazole”, and forty-five synonyms of the concept “HIV”,
including “Positivity, HIV Antibody”, “HTLV-III Seropositivities” and so on.
According to the &lt;desc&gt; or &lt;narr&gt; or both, we select some of above concepts and
their synonyms, noted as expansion terms.
      </p>
      <p>After selecting concepts and synonyms, we integrate the expansion terms to the
original query to get a new search query. The integrating strategy is straightforward.
That is only simply split-joint all the expansion terms and original query, shown as
Algorithm 1.</p>
      <sec id="sec-3-1">
        <title>Algorithm 1:</title>
        <p>Set SQ = query
For all the expansion terms k ∈ [1, K], do</p>
        <p>SQ = SQ # “ETk”</p>
        <p>In the algorithm, SQ represents search query, K denotes the number of expansion
terms, and ETk represents the kth expansion terms. The symbol “#” here represents
space character (i.e., 0x20), and the double quotation marks indicate that the string in
it must appear consecutively.</p>
        <p>
          As we see that, “HIV” actually is short for “Human immunodeficiency virus” and
among all the queries there are only seven those acronyms, we choose to recognize
and normalize the abbreviations/acronyms based on the tool that we developed for
CLEF 2013 eHealth Task 2 (i.e., normalization of abbreviations / acronyms) [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ]. We
extended this tool by incorporating online resources such as Google4 and Wikipedia5
in abbreviation / acronym normalization. For those recognized abbreviations /
acronyms, if they cannot be normalized by UMLS. We searched them in Google and
Wikipedia. After simple text analysis, we extract the full version of the
abbreviations/acronyms. Table 1 gives the acronym/full term mappings for the official
queries. To be specific, if the original query contains an abbreviation/acronym, we
add its full term to the search query, i.e., SQ = SQ # “full term”.
        </p>
        <p>Acronym</p>
        <p>HIV
SOB
ASA</p>
        <p>MI
COPD
Hypo</p>
        <p>HA</p>
        <p>Let’s take the query in Fig.1 as example. For illustration convenience, we assume
that the expansion terms comprised only five terms: “clots”, “HIV”, “Clotrimazole”,
“Positivity, HIV Antibody”, “HTLV-III Seropositivities”, as well as the full term
“Human immunodeficiency virus” of “HIV”. After applying the integrating strategy to
those expansion terms, we obtain the search query as follows:
clots in jugular and HIV # “clots” # “HIV” # “Clotrimazole” #
“Positivity, HIV Antibody” # “HTLV-III Seropositivities” # “Human
immunodeficiency virus”,
which is denoted by SQhiv.</p>
        <p>According to the analysis of Section 2, we extract two kinds of HTML information
(i.e., title and content) and resort to Lucene, to index the two fields (i.e., title and</p>
        <sec id="sec-3-1-1">
          <title>4 http://www.google.com</title>
          <p>5 http://en.wikipedia.org
content) using the multi-field search function for retrieving. The search query (i.e.,
SQhiv) we obtain is used for searching in the “content” field.</p>
          <p>In general, a search query (e.g., SQhiv) is likely to be more generalized to describe
concept(s) from different perspective, so does the function of content of a document.
It is widely accepted that a term, especially a concept, occurring in the title of a
document contributes much more than the one occurring in the content. Therefore,
besides the generalized searching content field with search query (e.g., SQhiv), we
also search title field in an exact matching manner with concepts derived from the
original query. Taking the example above again, we apply the multi-field search
method to the two fields of title and content by searching the search query (i.e., SQhiv)
and concepts (i.e., “clots” + “HIV”). With this search strategy, we finally obtain a
ranked list of medical documents, denoted as search results.</p>
          <p>Up to now the analysis in this subsection is about the query analysis. In what
follows, we move forward to the level of document analysis, whose goal is to re-rank
the search results.</p>
          <p>
            In case of document analysis, we derive and calculate four kinds of feature scores
to re-rank the search results, namely, Lucene relevance feature , global PageRank
feature, local HITS feature and HTML layout feature. Due to those popular terms
like Lucene, PageRank algorithm [
            <xref ref-type="bibr" rid="ref2">2</xref>
            ], and HITS algorithm [
            <xref ref-type="bibr" rid="ref3">3</xref>
            ], we think it is just
necessary to explain what the “HTML layout feature” means.
          </p>
          <p>
            Layout Feature (HTML). It assumes that the term occurring either in title or
subtitle, or being highlighted or set bold or italic in an HTML page should be more
important and receives a greater weight than other common terms if using term
weight to represent the HTML[
            <xref ref-type="bibr" rid="ref4">4</xref>
            ]. Table 2 shows the signal fields of HTML. We take
them into account in layout feature calculation.
          </p>
          <p>Even within those fields shown in Table 2, a term in different field should be
assigned a different weight. Usually, it is experiment oriented and demands to tune
with gold data. But there is no suitable gold data matching the first year of the task 3
in CLEF eHealth 2013.Thus, we simply assign value 1 to a term of the expansion
terms if the term occurs in one of those six fields, and the value is capable of
accumulation. For example, if the term of expansion terms “HIV” occurs in Title,
Subtitle, Bold and Underline fields, then the term “HIV” will get a layout score of 4.
Sum all the layout scores of all the expansion terms to get the layout score of a
document. Note the layout score of document d as Layout(d).</p>
          <p>Searching Feature (Lucene). We obtain the search results with relevance score by
Lucene4.3 from the query analysis phase. We use both the BM25 and VSM similarity
based on tf-idf statistics during searching. Note the BM25 score and VSM score of
document d as BM25(d) and VSM(d), respectively.</p>
          <p>
            Global Feature (PageRank). We apply the PageRank algorithm [
            <xref ref-type="bibr" rid="ref2">2</xref>
            ] to all the
collection of documents to get a global weight of all the documents. Note the
PageRank score of document d as PageRank(d).
          </p>
          <p>
            Local Feature (HITS). We apply the HITS algorithm [
            <xref ref-type="bibr" rid="ref3">3</xref>
            ] to the set of documents
from search results and implemented without any URL expansion on the Internet.
With the HITS algorithm, we produce two scores of a document d, namely Hub and
Authority, denoted by Hub(d) and Authority(d), respectively.
          </p>
          <p>The motivation of combining global features and local features lies in that we
assume that there are quite a large number of Web pages on the Web, and a Web page
could be evaluated by the other Web page on the Web or in a limited scope. The
PageRank algorithm may hold advantage in the global collection while HITS
algorithm is appropriate for the local collection, to some extent.</p>
          <p>As different feature scores hold different ranges, it is necessary to normalize them
into a unified format so as to compare them with each other. Let OS(di) denote an
original score of the ith document di, our normalization algorithm is given as follow:</p>
          <p>OS(di)
uOS(di) = qPN</p>
          <p>i=1OS(di)
maxOS = maxfuOS(di)g
nOS(di) = mOS(di)=maxOS
(1)
(2)
(3)
where uOS(di) denotes the ith element of the unit vector, maxOS represents the
element with maximum value within the unit vector, nOS(di) denotes the value after
our normalization strategy. We first normalize the original score into unit vector
format. Then we divide each element of the unit vector by the element with maximum
value. With this normalization strategy, nOS(di) ∈(0,1], max{nOS(di)} is equal to 1
and score from different format can be computed together. In this way, we can
produce the normalized score of the feature scores, denote them as nLayout(d)
nBM25(d), nVSM(d), nPageRank(d), nHub(d) and nAuthority(d), respectively.</p>
          <p>After normalizing all the feature scores into a unified format, we re-rank the
documents of search results by a method of linear score combination. In our
experiment, the strategy of score combination is as Eq(4),
score(di) = ® ¤ 0:5 ¤ (nBM25(di) + nV SM(di) + ¯ ¤ nP ageRank(di)
+ ° ¤ 0:5 ¤ (nHub(di) + nAuthority(di))
(4)
where α, β, γ are the coefficients, which are required to be tuned with the
assistance of a gold data, while we simply set the value 1 to all of them due to a lack
of a gold data as mentioned above.
3.2</p>
          <p>Topic-based Query Expansion for Document Retrieval
Taking a closer look at the given queries and their corresponding description
information, such as a sample query in Fig.1, as well as the discharge summary file,
we find that such a query can be categorized into one of seven topics according to
description information. The topics as well as the associated topic words are presented
in Table 3, which are compiled manually. Note that the compilation is carried out
independently. We compiled the topics and keywords based on study on medical Web
data.</p>
          <p>
            Following the idea in [
            <xref ref-type="bibr" rid="ref9">9</xref>
            ], we simply classify a query to one of the above topics as
follows.
          </p>
          <p>1) Cumulate the times of the topic words of each topic occurring in the &lt;desc&gt;
field of a query, noted as Ni (i=1,…, 7), where i denotes the topic ID.</p>
          <p>2) Select the maximum value of Ni，noted as max{ Ni }.</p>
          <p>3) If Nk = Nj = max{Ni} (k≠j)，select the most common topic which contains
more topic words.</p>
          <p>4) If max{Ni} = 0, select the topic which contains most topic words.</p>
          <p>ID
1
2</p>
          <p>For instance, only topic word “connection” of topic “connect” occurs in the text of
&lt;desc&gt; shown in Fig.1, the max{Ni} is 1 where i = 4, therefore the corresponding
query “clots in jugular and HIV” belongs to the topic “connect”.</p>
          <p>After assigning a topic to the query, we leverage concepts of the query and those
topic words of the assigned topic to extend the query. The query expansion strategy is
also simple, integrating each topic word a time and all the concepts to get a search
query, for all the topic words, we get a set of search queries as shown in Algorithm 2.</p>
        </sec>
      </sec>
      <sec id="sec-3-2">
        <title>Algorithm 2:</title>
        <p>for all topic words k ∈ [1, K] do</p>
        <p>Set SQ = TWk
for all concepts n ∈ [1, N] do</p>
        <p>SQ = “SQ” + “CCn”
where K means the number of topic words of the assigned topic, SQ means search
query, TWk represents the kth topic word, N means the number of concepts derived
from the original query, and CCn represents the nth concept. For example, in the case
of query “clots in jugular and HIV”, which has two concepts “clots” and “HIV”,
based on the integrating strategy, we can produce a search query like “connection” +
“clots” + “HIV” by combining the first topic word of the assigned topic and the
concepts of the query. For this example, we finally induce three search queries due to
three topic words of the topic “connect”. The double quotation marks indicate that the
string must appear consecutively. And the plus sign (+) suggests that the strings must
be co-occurring.</p>
        <p>Obtaining a list of documents with relevance scores (BM25 of Lucene4.2) with
respect to a search query, we get three such document lists of query “clots in jugular
and HIV” in total. As some documents may appear in different lists, we simply sum
all the relevance scores of a same document in different lists together to merge those
documents into a list and re-rank the documents. Take the above query as example
again, assuming that relevance score of document di in the list j is Sjj, the final score
of document di is calculated as Eq(5):
score(di) =</p>
        <p>PN
j=1 Sij
(5)</p>
        <p>In the example of above query, the value of N is 3. With finally scoring the
documents, we can obtain a final list of document result response to a given query.
4</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Submitted Runs</title>
      <p>In total, we submitted seven runs to the task 3 of CLEF eHealth 2013:
1) Run 1: Baseline method. We only use the query to implement ad hoc
retrieving and combine the scores (i.e., relevance score, PageRank score and
HITS score) with a linear method in document ranking.
2) Run 2: Concept-based method. We use the description (&lt;desc&gt;, see in Fig.1)
as well as discharge summaries (&lt;discharge_summary&gt;) to analyze each query
into expanded queries and re-rank the search results by combining the scores
(i.e., relevance score, layout Score, PageRank score and HITS score) with a
linear method. UMLS concepts play a vital role in query analysis and
expansion.
3) Run 3: Concept-based method. We further use narrative (&lt;narr&gt;) to analyze
each query into expanded queries. The re-ranking method is same to Run 2.
4) Run 4: Topic-based method. Use description (&lt;desc&gt;) and narrative (&lt;narr&gt;)
as well as discharge summaries (&lt;discharge_summary&gt;) to determine which
topic the query belongs to. Documents are ranked only with relevance.
5) Run 5: Concept-based method. We exclude discharge summaries
(&lt;discharge_summary&gt;) from Run 2.
6) Run 6: Concept-based method. We exclude discharge summaries
(&lt;discharge_summary&gt;) from Run 3.
7)</p>
      <p>Run 7: Topic-based method.
(&lt;discharge_summary&gt;) to Run 4.
exclude
discharge
summary
5</p>
    </sec>
    <sec id="sec-5">
      <title>Evaluation</title>
      <p>5.1</p>
      <p>Dataset
The dataset for task 3 consists of a set of medical-related Web documents, provided
by the Khresmoi project6. This collection covers a broad set of medical topics, but
contains no patient information. The documents in the collection are downloaded
from several online sources, including Health on the Net organization certified
websites, the well-known medical sites and databases (e.g. Genetics Home Reference,
Clinical.gov, Diagnosia)7.
5.2</p>
      <p>Metric
The official evaluate metric used in task 3 is p@N, which is a traditional metric in
information retrieval. p@N indicates the percentage of relevant documents within the
top N results. In our experiments, N is assigned 5, 10, 15, 20 and 30, respectively.
5.3</p>
      <p>Official Results and Discussions
System performance
Fig.2 presents the official evaluation results of our system in seven runs for the task.</p>
      <p>Three observations are conducted as follows. First of all, we find in Fig.2 that
performance of all runs uniformly drops when N bcomes bigger. This indicates that in</p>
      <sec id="sec-5-1">
        <title>6 http://www.khresmoi.eu/</title>
        <p>7 https://sites.google.com/site/shareclefehealth/data
medical document retrieval, bigger N does not bring more gain. It thus makes
common sense to our knowledge that when the top number of searching documents is
increasingly larger, the impact of features we used will be weaker and the random
factor will be added.</p>
        <p>Secondly, we observe on performance of our system with the concept-based
method (i.e., Run 2, 3, 5 and 6). Seen from Fig.2 that the concept-based method
outperforms the baseline (i.e., Run 1) slightly. Run 5 improves baseline most with
0.024. This confirms with us that concept indeed makes some contribution to
information retrieval. We can also find in Fig.2 that Runs using query description and
discharge summaries (i.e., Run 5 and 6) outperform ones not using (i.e., Run 2 and 3).
This indicates that query description and discharge summaries bring noise in query
expansion, which causes performan loss.</p>
        <p>Thirdly, we observe on performance of our system with the topic-based method
(i.e., Run 4 and 7). Fig.2 indicates that the topic-based method causes a significant
drop (i.e., 0.086) compared to the basline. This is because the gold answers are
generated with the the pool of results in Run 1, 2 and 5 of all systems. This is
obviously unfair to Run 4 and Run 7. When we look into the evaluation results in Run
4 and 7, we surprisingly find that amongst those pooled, 154 results are judged
relevant and 154 irrelvant in Run 4. In Run 7, irrelevant results are even fewer.
Details are given in Table 4.</p>
        <p>RUN1
198
302
0
0.396</p>
        <p>RUN2</p>
        <p>It is interesting if we take into account of the situation in which all search results
are pooled and judged by human. For results returned by Run 4 and 7, they are
unfortunately not considered as answer candidates and not judged by human. If this
could happen, we would expect a performance value being close to or higher than the
best value in Run 5 though the judgment depends on human assessments.
Per-topic analysis</p>
        <p>We conduct the analysis with Run 5. Per-topic comparison between Run 5 and
other systems is given in Fig.3, in which the height of a bar in Fig. 2 given by:</p>
      </sec>
      <sec id="sec-5-2">
        <title>Grey bars:</title>
        <p>White bars:</p>
        <p>We can see in Fig.3 that Run 5 has 24 queries perform better than the median,
especially achieves the best performance on 5 queries (i.e., query 6, 21, 26, 39 and 44),
while 14 queries perform worse than the median, and other 12 queries perform in the
median line. It means that in the specific task, medical document retrieval, our
concept-based method can do something but heavily needs improvement.</p>
        <p>In terms of the best performance of each query, it is quite difference among
different queries. For example, some queries can achieve a very high result like query
1, 12, 24 and 32 (more than 70%), while some queries perform only normal or just
soso, like query 4, 6, 8, 20 and 45 (only about 10%), but in case of query 48, we guess,
all the submitted documents are not relevant to the query. It may indicate that there is
much work to do about medical intelligence.</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>Conclusion and future work</title>
      <p>In this paper, we describe our medical document retrieval system for task 3 in CLEF
eHealth 2013. Based upon query analysis and document analysis, we have developed
two methods to implement our experiments, namely, concept-based method and
topic-based method. Experimental results confirm our motivation. However, there is
still some work that we can do in the future to improve the performance of medical
document retrieval. For instantce, we will use BM25F to index the document
considering the structure of HTML.</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgement</title>
      <p>This research is supported by Canon Inc. (No. QIM2013). The Shared Annotated
Resources (ShARe) project is funded by the United States National Institutes of
Health with grant number R01GM090187. We also appreciate the valuable comments
from the task organizer.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Suominen</surname>
            , Hanna, Sanna Salanter, Sumithra Velupillai, Wendy W. Chapman, Guergana Savova, Noemie Elhadad, Danielle Mowery, Johannes Leveling, Lorraine Goeuriot, Liadh Kelly, David Martinez and
            <given-names>Guido</given-names>
          </string-name>
          <string-name>
            <surname>Zuccon</surname>
          </string-name>
          .
          <article-title>Overview of the ShARe/CLEF eHealth Evaluation Lab 2013</article-title>
          .
          <source>Proceedings of CLEF 2013. Lecture Notes in Computer Science (LNCS)</source>
          , Springer.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Brin</surname>
            , Sergey, and
            <given-names>Lawrence</given-names>
          </string-name>
          <string-name>
            <surname>Page</surname>
          </string-name>
          .
          <article-title>The anatomy of a large-scale hypertextual Web search engine</article-title>
          .
          <source>Computer networks and ISDN systems 30.1</source>
          (
          <year>1998</year>
          ):
          <fpage>107</fpage>
          -
          <lpage>117</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Kleinberg</surname>
          </string-name>
          , Jon M.
          <article-title>Authoritative sources in a hyperlinked environment</article-title>
          .
          <source>Journal of the ACM (JACM) 46.5</source>
          (
          <year>1999</year>
          ):
          <fpage>604</fpage>
          -
          <lpage>632</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Cutler</surname>
            , Michal,
            <given-names>Yungming</given-names>
          </string-name>
          <string-name>
            <surname>Shih</surname>
            , and
            <given-names>Weiyi</given-names>
          </string-name>
          <string-name>
            <surname>Meng</surname>
          </string-name>
          .
          <article-title>Using the structure of HTML documents to improve retrieval</article-title>
          .
          <source>In Proceedings of the USENIX symposium on internet technologies and systems</source>
          . Vol.
          <volume>12</volume>
          .
          <year>1997</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Robertson</surname>
            , Stephen,
            <given-names>Hugo</given-names>
          </string-name>
          <string-name>
            <surname>Zaragoza</surname>
            , and
            <given-names>Michael</given-names>
          </string-name>
          <string-name>
            <surname>Taylor</surname>
          </string-name>
          .
          <article-title>Simple BM25 extension to multiple weighted fields</article-title>
          .
          <source>In Proceedings of the thirteenth ACM international conference on Information and knowledge management. ACM</source>
          ,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Lu</surname>
            , Wei,
            <given-names>Stephen</given-names>
          </string-name>
          <string-name>
            <surname>Robertson</surname>
          </string-name>
          , and Andrew MacFarlane.
          <article-title>Field-weighted XML retrieval based on BM25</article-title>
          .
          <source>Advances in XML Information Retrieval and Evaluation</source>
          . Springer Berlin Heidelberg,
          <year>2006</year>
          .
          <fpage>161</fpage>
          -
          <lpage>171</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Junjun</surname>
            <given-names>Wang</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Guoyu</given-names>
            <surname>Tang</surname>
          </string-name>
          , Yunqing Xia, Qiang Zhou, Thomas Fang Zheng, Qinan Hu, Sen Na,
          <string-name>
            <given-names>Yaohai</given-names>
            <surname>Huang</surname>
          </string-name>
          .
          <article-title>Understanding the Query: THCIB and THUIS at NTCIR-10 Intent Task</article-title>
          .
          <source>In Proceedings of NTCIR-10</source>
          (
          <year>2013</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Xia</surname>
          </string-name>
          , Yunqing, Xiaoshi Zhong, Peng Liu, Cheng Tan, Sen Na,
          <string-name>
            <surname>Qinan Hu</surname>
            , and
            <given-names>Yaohai</given-names>
          </string-name>
          <string-name>
            <surname>Huang</surname>
          </string-name>
          .
          <article-title>Normalization of Abbreviations/Acronyms: THCIB at CLEF eHealth 2013 Task 2</article-title>
          . CLEF 2013 eHealth Lab working note.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Song</surname>
            , Wei, Yu Zhang, Handong Gao, Ting Liu,
            <given-names>Sheng</given-names>
          </string-name>
          <string-name>
            <surname>Li</surname>
          </string-name>
          .
          <article-title>HITSCIR System in NTCIR-9 Subtopic Mining Task</article-title>
          .
          <source>In Proceedings of NTCIR-9</source>
          (
          <year>2011</year>
          ).
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>