<!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>Lucene, MetaMap, and Language Modeling: OHSU at CLEF eHealth 2013</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Steven Bedrick</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Golnar Sheikshabbafghi</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Center for Spoken Language Understanding, Oregon Health &amp; Science University</institution>
          ,
          <addr-line>Portland, OR</addr-line>
          ,
          <country country="US">USA</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>The Oregon Health &amp; Science University team's participation in task #3 (\addressing patients' medical questions") of this year's eHealth CLEF campaign included submissions from two di erent retrieval systems. The rst was a traditional, Lucene-based system modied from one used in previous years' TREC-med campaigns; the second was a novel system that used statistical language modeling techniques to perform text retrieval. Since 2013 was the rst year of our participation in this campaign, our focus was on familiarizing ourselves with working on a corpus of web text, as well as putting together a proof-of-concept implementation of a language-model retrieval system. We submitted three runs in total; one from the novel system, and two from our Lucene-based system, one of which made use of the National Library of Medicine's MetaMap tool to perform query expansion. In general, our runs did not perform particularly well, although there were several topics for which our language model-based retrieval system produced the best P@10. Future work will focus on pre-indexing text normalization as well as a more sophisticated approach to query parsing.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>Most research into medical information retrieval can be categorized into one of
two broad and fuzzy groupings. The rst (\type A") concerns itself with the
information needs of clinicians, and focuses on searching specialized databases
in response to speci c and well-informed topics. The second category (\type
B") deals with so-called \consumer" information needs: searches conducted by
non-medical users (often patients or family members) over the Internet. Earlier
medical IR evaluation campaigns have tended to focus on the rst of these two
groupings.</p>
      <p>
        For example, for several years TREC included a medical track in which
participants built and tested search systems designed to index and query electronic
health records in order to identify patients matching particular textual
descriptions (e.g., \Patients admitted to the hospital with end-stage chronic disease
who are o ered hospice care")[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. Without in any way diminishing the
substantial di culties inherent in performing high-quality open-class IR over a clinical
database, we believe that it is safe to say that this family of medical IR system
enjoys several signi cant advantages over the aforementioned second family of
medical IR system (systems designed for the lay population, and intended to
work on a general web corpus).
      </p>
      <p>A system designed for indexing and querying a clinical data repository of
some kind has the advantage of a (relatively speaking) predictable data schema,
as well as (again, relatively) a nite amount of content- both in terms of amount
(i.e., how many unique records) as well as kind. After all, while there may be a
very large number of types of pathology report, that number is generally both
knowable and tractable. A search system designed for consumers and the open
Web, however, must be able to handle an essentially in nite variety of input
documents and user queries, and must do so with far less context (about both
its corpus as well as its users1) than do its more constrained cousins.</p>
      <p>
        The third task of this year's ShARe/CLEF eHealth track features just such
a search scenario. The task is described in full elsewhere[
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]; as such, we will keep
our description brief. The task was an open-query document search over a corpus
consisting of 1.6 million web pages ostensibly containing health-related
information. The topics consisted of quasi-natural-language phrases (e.g. \is there a
connection between multiple sclerosis and dysplasia in oesophagus") that
represented the sorts of queries that actual patients might enter into a search engine
such as Google.
      </p>
      <p>Our group submitted runs derived from two di erent retrieval systems
(described in section 2). While our results were| with one or two exceptions| not
particularly impressive (see Section 3), we feel that we have laid a solid
technical foundation for next year's CLEF campaign. Furthermore, our experience
highlight several important di erences between \type A" and \type B" medical
retrieval systems in terms of how best to use external resources.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Methods</title>
      <p>
        We submitted runs from two separate systems. The rst system was s very
traditional IR system based on the Apache Lucene2 open-source toolkit. It was
essentially a spiritual successor to the system used by the OHSU team for the
2011 and 2012 TREC medical tracks[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. The second system was a novel system
that uses techniques from statistical language modeling to perform retrieval.3
The two systems were quite di erent in terms of their operation, and we will
describe each in turn.
1 While the information literacy of clinicians certainly varies[
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], it is safe to say that
this variability is smaller than that found among the users of a general-purpose
medical search engine.
2 http://lucene.apache.org
3 See Chapter 12 of Manning, et al.'s \Introduction to Information Retrieval" for an
overview of the general approach[
        <xref ref-type="bibr" rid="ref5">5</xref>
        ].
2.1
The rst of our two systems followed a very traditional architecture for a text
retrieval system, in that it featured a standard inverted index paired with
vectorspace retrieval model. As mentioned above, we used the Lucene open-source IR
toolkit (version 4.2.1) to build the system, with no major modi cations from
its out-of-the-box con guration. Our intent was to develop a system to use as a
reasonable baseline, and Lucene let us accomplish this with minimal di culty.
Lucene also provided us with robust index creation tools as well as a rich query
language.
      </p>
      <p>
        This baseline Lucene system used the default Lucene StandardAnalyzer
query processor. Our system had an alternative query processing mode, which
we used for one of our additional runs. This mode makes use of our existing
MetaMap-based query parser used in previous years' TREC campaigns (see [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]),
described in greater detail below.
      </p>
      <p>
        Indexing Due to the large size of the corpus, building the Lucene index of the
documents proved to be a non-trivial task. We chose to use a 500-node Hadoop4
cluster to facilitate the process. Hadoop is an open-source implementation of the
Map/Reduce pattern, which was rst popularized by Google as a way of easily
parallelizing certain computing tasks. A complete description of Map/Reduce
is beyond the scope of this document (see Dean &amp; Ghemawat[
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] for a more
thorough description); in short, a Map/Reduce program splits a task into two
steps, \map" and \reduce." In the map step, each input document is processed
in parallel and is transformed into a set of key/value pairs f&lt; ki; vi &gt;; &lt; kj; vj &gt;
; :::g . In the reduce step, the key/value pairs are aggregated by their key into
sets of the form f&lt; ki; fvi1 ; vi2 ; :::g &gt;; &lt; kj; fvj1 ; vj2 ; :::g &gt;g, and each key's
associated values are processed together. The ultimate point of this approach is
that each execution of the map step can be run completely independently from
any others, and a similar amount of parallelization can often be achieved in the
reduce phase.
      </p>
      <p>The canonical example is a distributed word-counting operation. In this case,
the mapper would take as input a document, and emit for each token in the
document a key/value pair in which the key is the token and the value is the
number of times that that token appeared in that document. The reducer, then,
would take as its input a single token along with a set of counts (one from each
input document that contained that token); its job would be to sum the counts
and emit the total number of occurrences of that token in the corpus. Because
each document can be counted independently of the others, and each token's
occurrence counts can be summed independently of any other tokens' counts, a
word-counting program using this approach can bene t greatly from a parallel
computing environment.</p>
      <p>
        The Map/Reduce model lends itself extremely well to the creation of inverted
indices. Consider the most trivial case, in which the map step emits terms and
4 http://hadoop.apache.org
postings as keys and values, and the reduce step produces posting lists. For
our purposes, we used Map/Reduce to produce a Lucene index. Each mapper
processed a subset of the entire corpus, and produced a single index shard; the
shards were then run through the Lucene API's index-merging tools to produce
a single, large index. The nal index size was approximately 7.5 gigabytes, which
proved to be well within Lucene's capabilities. We indexed both the document
titles as well as their bodies, after stripping the bodies of their HTML tags.
MetaMap As mentioned above, our baseline system uses Lucene's default
StandardAnalyzer to process free-text queries. During previous years' TREC
campaigns, we developed a query parser that uses the National Library of
Medicine's (NLM) MetaMap tool[
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] tool to attempt to identify query terms
that are \medically-relevant." MetaMap uses a variety of NLP techniques to
map unstructured text to concepts from the Uni ed Medical Language System
(UMLS) Metathesaurus[
        <xref ref-type="bibr" rid="ref8">8</xref>
        ].
      </p>
      <p>
        Our query parser has a variety of operational modes, including several that
perform query expansion by including sibling entry terms for any concepts
matched from the NLM's Medical Subject Headings (MeSH) indexing system.
For a complete description of the operation of this part of our system, consult our
2012 TREC Medical Track working notes paper[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. In short, our query parser
takes unstructured text as input, and in an unsupervised manner produces a
(sometimes complex, and often suboptimal) query in Lucene's syntax, making
use of various Boolean operators as appropriate.
      </p>
      <p>In the simplest operation mode, our query parser uses MetaMap to analyze
the free-text queries and identify any biomedical concepts. From there, we use the
UMLS to identify possible synonyms for these concepts, and link those together
using Boolean \OR." Each term group is then linked using Boolean \AND."
The parser contains several \stop-word" lists| sets of CUIs or UMLS Semantic
Types that it ignore, and not include in its nal queries. Typically, CUIs or
Semantic Types end up on this list due to being overly common in either queries
or in documents (e.g., \Patients").</p>
      <p>this approach worked reasonably well when used in previous years'
campaigns, which involved querying electronic medical records for speci c patient
pro les. We were unsure as to how well it would work when querying the less
formally-written and similarly less-focused content found in the present task,
but decided that it was worth trying.
2.2</p>
      <sec id="sec-2-1">
        <title>Language Model System</title>
        <p>In addition to our traditional baseline system, we submitted a run from an
entirely novel retrieval system. This system used techniques borrowed from
statistical language modeling to attempt to identify documents that were statistically
similar to the queries. Conceptually, we are using the language model to tell us,
for each document, the probability of that document generating the query. More
\relevant" documents should, in principle, have a higher probability than less
\relevant" documents.</p>
        <p>
          Slightly more formally, and using notation from [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ], our approach computes
a language model Md for each document in the corpus d. Then, for any given
query q, we use the language models to compute P (qjMd) for each document d,
and can rank the documents in descending order of this probability.
        </p>
        <p>This approach presents us with some interesting experimental possibilities.
There are a wide variety of di erent text normalization approaches, model
smoothing techniques, scoring functions, etc. that we wish to experiment with (see
Section 4).</p>
        <p>Text Normalization In any language modeling task, the decision of how to
normalize one's input is critical. We were somewhat aggressive in our
normalization approach. We rst dropped all non-ASCII letters, since the task a priori
only involved English-language queries over English-language documents. After
alphabetical pruning, we compiled a list of more than 3 million tokens, most of
which were not actual words but were instead fragments, numbers, etc. etc.</p>
        <p>We then computed document frequencies for each token in order to compile
a list of \stop tokens." We were primarily concerned with removing overly
common tokens. By manually examining the relative frequencies of tokens, we set
a document frequency threshold of 700,000| that is, we considered tokens
appearing in more than that many documents to be \too common," and excluded
them from both the documents as well as the queries.</p>
        <p>Language Model The language modeling approach we used was very
similar to a standard bigram language model with an absolute discounting backo
scheme.5 However, instead of using strict bigrams, we instead counted tokens
that co-occurred within an 11-word window (i.e., word pairs that had a
maximum distance of ten words). In other words, if two tokens occurred relatively
near to each other, they were counted as a bigram. Furthermore, the distance
calculation took place after pruning stop words, so the two tokens could
potentially have been more than ten tokens apart in the original document.</p>
        <p>In the language modeling world, these are referred to as skip-grams, and are
often used to allow a language model to capture additional information about the
contents of a text.6 In our case, we chose to use skip-grams in part to compensate
for the large di erence in length between the documents and the queries, which
can cause problems relating to model sparsity. By allowing this \slop" we are
e ectively increasing the number of possible bigrams from each query, thereby
increasing the number of chances for that query's bigrams to occur in the
perdocument language models.</p>
        <p>
          Scoring &amp; Ranking Documents Given a normalized query and a
normalized set of documents, we compute the log-probability for all pseudo-bigram pairs
5 We used an absolute discount parameter value of 0:5.
6 For more details, two good places to start would be the work of Siu &amp; Ostendorf[
          <xref ref-type="bibr" rid="ref10">10</xref>
          ]
and that of Guthrie, et al.[
          <xref ref-type="bibr" rid="ref11">11</xref>
          ].
present in the query occurring in each document, just as one would using a
standard bigram language model when estimating the log-probability of a sentence.
However, in our case, we are not strictly calculating the log-probability of the
query vs. each document. Because of our adjusted bigram scheme, each bigram
may potentially be counted multiple times depending on how the documents'
tokens are arranged; as such, the actual probabilities we calculate are somewhat
smaller than they would be in a traditional bigram scheme. However, as we are
calculating it in the same way across documents and queries, the probabilities
themselves are directly comparable with one another.
        </p>
        <p>As such, in order to rank the documents in order of \relevance," we need
simply to rank the documents in descending order of probability (i.e., the
documents with the highest probabilities for a given query are ranked highest in
the result list). There are any number of di erent ways to choose a threshold at
which to cut o results; we chose a fairly robust method in which we used the
histogram of calculated probabilities for a given query to choose a reasonable
threshold.
3</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Results</title>
      <p>Unfortunately, our runs did not perform particularly well this year. Generally
speaking, all three of our runs performed below the median in terms of P@10, and
none achieved an overall mean average precision score higher than 0.1. However,
there were several topics for which we achieved adequate performance, and there
were even several topics for which one or the other of our runs appeared to have
the best P@10. Our o cial results can be seen in Table 1.</p>
      <p>As is often the case in these kinds of evaluation campaigns, we observed a
large amount of variation in system performance across topics (see Figure 1).
We also noted a similarly large amount of variation in the number of documents
judged relevant for each topic, with one run having zero relevant documents,
seven more having fewer than ten, and one topic apparently having 610 relevant
documents.7
7 This would be topic qtest19, \is abdominal pain due to helicobacter pylori a
symptom of cancer."
3.1
Our baseline system| essentially plain-vanilla Lucene, without external
annotations of any sort| did not perform particularly well. In terms of bpref, there
were only three topics for which it achieved a score higher than 0:5, and there
was a great deal of variability among the remaining topics (see Figure 1). In
terms of P@10, its performance was similarly dismal. There were 14 topics for
which its P@10 was 0:0; one topic (qtest29, \what is prognosis and the
treatment for aortic stenosis") came in at 0:8, with a small handful coming in above
0:5. Most of the topics had P@10 scores of between 0:1 and 0:4.</p>
      <p>In addition to our baseline system, we also submitted a run from a system
that used MetaMap to perform query expansion (see Section 2.1). In
previous evaluation campaigns, this approach had often resulted in improved
performance. In this task, the picture was somewhat more complex. Often, rather
than retrieving more potentially-useful results, the query expansion (which made
rather aggressive use of Boolean query operators) would result in fewer results
being retrieved (often many fewer, down to and including zero).</p>
      <p>Sometimes, as in the case of qtest27, this would result in improved precision
(in this case, from a P@10 of 0:0 in the baseline run to 0:6 in the MetaMap run).
More often, however, this would result in a decrease in precision, simply due
to the query's Boolean criteria preventing more than a handful of articles from
being retrieved.</p>
      <p>Overall, there were 17 topics for which the MetaMap query expansion hurt
the system's performance in terms of bpref, and 18 for which it had no e ect.
That leaves 15 for which the query expansion improved bpref (see Table 2).
In three of these cases (qtest7, qtest27, and qtest46), the MetaMap run's
non-zero bpref represented an improvement over a baseline bpref of 0:0. The
remaining cases of improvement fell into two categories. The rst consisted of
several runs that featured relatively modest improvements (Metamap:Baseline
bpref ratios ranging from 1:06{ 1:70). The second consisted of a small
number of runs that experienced a much more dramatic improvement, with
bpref ratios ranging from 4:40 to 5:15.</p>
      <p>Looking at the nal processed form of the queries that experienced the most
performance improvement, the thing that stands out is that they are simpler and
more parsimonious than they were before being processed by MetaMap. This
was not a universal result of being run through our MetaMap processor; quite
often, the nal queries would be quite large and complex, with multiple Boolean
clauses. In these cases of notable improvement, it seems as though MetaMap
acted as something of a lter, stripping out un-necessary and noisy terms and
replacing them with a small number of salient terms. In our future work, we plan
to investigate this phenomenon further.
3.2</p>
      <sec id="sec-3-1">
        <title>Language Model System</title>
        <p>Strictly speaking, our language model system (LMS) did not perform particularly
well. There were several topics for which we did not retrieve very many results,
bpref by topic, Traditional System
0.6
0.5
0.4
0.3
0.2
0.1
period| much less many relevant results. Overall, our LMS performed even less
consistently than did the baseline system (see Figure 2). That said, there were
several runs for which the LMS outperformed the baseline system by a wide
margin.</p>
        <p>For example, for qtest49, the LMS:Baseline bpref ratio was 3.69,
representing a very notable increase in performance. All in all, there were 19 topics for
which the LMS outperformed our baseline system in terms of bpref, and 7 for
which there was no di erence in performance. Five of the topics with improved
performance saw at least a doubling of bpref as compared to the baseline, and
one more came very close to double (bpref ratio of 1:97).8 In terms of P@10,
there were six topics for which our LMS run appears to have achieved the best
score. In one of these topics (qtest12), we appear to have outperformed the
median by a fairly signi cant margin; the other ve topics (qtest20 qtest31,
qtest42, qtest43, and qtest47) appear to have been more challenging, as the
degree to which we outperformed the median was smaller.</p>
        <p>One unexpected attribute of the LMS was that diagnosing performance
issues was quite di cult. With our baseline system, we can easily examine our
generated queries, and can also directly inspect our index. With the LMS,
however, things are much more opaque. As such, it is not easy for us to say why it
did particularly well or badly on any given topic. Future work will explore ways
to improve this state of a airs.
8 On the other hand, there were 25 topics for which the LMS exhibited decreased
bpref performance as compared to the baseline.
Our results in this year's evaluation campaign were somewhat disappointing.
However, we have now established two di erent solid baseline systems, and have
also demonstrated that our existing query expansion system is not completely
useless in a more general medically-themed retrieval task. Clearly, however, there
is much for us to do in preparation for next year's evaluation campaign. Our
future work will consist of work on several fronts.</p>
        <p>The rst and most important next step will be to improve our indexing
strategy. One issue that our baseline system ran into during development was that
many documents in the corpus contained extraneous text9 that led to
numerous false positives. We will be working on ways to detect content zones within
the page such that we only index the truly relevant text from each document.
We also plan on experimenting with various other approaches, such as
indexing anchor or heading text separately from the rest of the document body, and
boosting their value in the search index.</p>
        <p>A second area of work will be in improving our MetaMap-based query parser
and expansion system. Right now, it is only using a subset of the vocabularies
in the UMLS, which we believe limited its ability to successfully map concepts
from the queries into UMLS CUIs. Furthermore, in its present form, the parser is
relatively in exible and makes overly-aggressive use of Boolean operators. This
led to over-constrained queries as well as queries containing duplicate terms. We
hope to improve this state of a airs.</p>
        <p>A third area will be to explore ways to make use of syntactic data derived
from the queries themselves to better understand what the queries are actually
asking about. This could include constituent or dependency parsing,
part-of9 Sometimes in the form of page navigation elements, other times from intentional
keyword frequency manipulation on the part of the page's authors| e.g., a hidden
div lled with a smorgasbord of medical terms unrelated to the ostensible topic of
the page.</p>
        <p>bpref by topic, Language Model
0.6
0.5
0.4
0.3
0.2
0.1
speech tagging, and so on. We will also experiment with performing this sort of
analysis on the documents as well.</p>
        <p>Our language model retrieval system has many possible avenues for
improvement. Besides making use of the aforementioned syntactic data, we plan to
experiment with di erent skip-ngram window widths as well as some of the
algorithm's other tuning parameters. This sort of optimization work was di cult
to do during the development phase of this campaign due to our lack of
supervised training data; our hope is that, with access to the qrels from this year's
campaign, we will be able to improve our approach.</p>
        <p>We are excited to have participated in this year's evaluation campaign, and
eagerly await next year's. Although we were disappointed by our systems'
performance, we see a lot of potential in our fundamental approach, and look forward
to the opportunity to develop our ideas further.</p>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Voorhees</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hersh</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          :
          <article-title>Overview of the trec 2012 medical records track</article-title>
          .
          <source>In: The Twenty-First Text REtrieval Conference Proceedings (TREC</source>
          <year>2012</year>
          ).
          <article-title>(</article-title>
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Hersh</surname>
            ,
            <given-names>W.R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Crabtree</surname>
            ,
            <given-names>M.K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hickam</surname>
            ,
            <given-names>D.H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sacherek</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Friedman</surname>
            ,
            <given-names>C.P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tidmarsh</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mosbaek</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kraemer</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Factors associated with success in searching MEDLINE and applying evidence to answer clinical questions</article-title>
          .
          <source>J Am Med Inform Assoc</source>
          <volume>9</volume>
          (
          <issue>3</issue>
          ) (
          <year>2002</year>
          )
          <volume>283</volume>
          {
          <fpage>93</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Suominen</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          , Salantera,
          <string-name>
            <given-names>S.</given-names>
            ,
            <surname>Velupillai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            ,
            <surname>Chapman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.W.</given-names>
            ,
            <surname>Savova</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            ,
            <surname>Elhadad</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            ,
            <surname>Mowery</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            ,
            <surname>Leveling</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Goeuriot</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Kelly</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Martinez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            ,
            <surname>Zuccon</surname>
          </string-name>
          ,
          <string-name>
            <surname>G.</surname>
          </string-name>
          :
          <article-title>Overview of the ShARe/CLEF eHealth Evaluation Lab 2013</article-title>
          .
          <source>In: CLEF 2013. Lecture Notes in Computer Science (LNCS)</source>
          , Springer (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Bedrick</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Edinger</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cohen</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hersh</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          :
          <article-title>Identifying patients for clinical studies from electronic health records: TREC 2012 medical records track at OHSU</article-title>
          .
          <source>In: The Twenty-First Text REtrieval Conference Proceedings (TREC</source>
          <year>2012</year>
          ).
          <article-title>(</article-title>
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Manning</surname>
            ,
            <given-names>C.D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Raghavan</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          , Schutze, H.: Introduction to Information Retrieval. Cambridge University Press, New York, NY, USA (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Dean</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ghemawat</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Mapreduce: simpli ed data processing on large clusters</article-title>
          .
          <source>In: OSDI'04: Sixth Symposium on Operating System Design and Implementation</source>
          , USENIX Association (
          <year>2004</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Aronson</surname>
            ,
            <given-names>A.R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lang</surname>
            ,
            <given-names>F.M.:</given-names>
          </string-name>
          <article-title>An overview of metamap: historical perspective and recent advances</article-title>
          .
          <source>J Am Med Inform Assoc</source>
          <volume>17</volume>
          (
          <issue>3</issue>
          ) (
          <year>2010</year>
          )
          <volume>229</volume>
          {
          <fpage>36</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Bodenreider</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          :
          <article-title>The uni ed medical language system (umls): integrating biomedical terminology</article-title>
          .
          <source>Nucleic Acids Res</source>
          <volume>32</volume>
          (
          <string-name>
            <surname>Database</surname>
            <given-names>issue)</given-names>
          </string-name>
          (
          <year>Jan 2004</year>
          )
          <volume>D267</volume>
          {
          <fpage>70</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Manning</surname>
            ,
            <given-names>C.D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Raghavan</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          , Schutze, H.:
          <article-title>Introduction to information retrieval. [5] chapter Language Models for Information Retrieval</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Siu</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ostendorf</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Variable n-grams and extensions for conversational speech language modeling</article-title>
          .
          <source>Speech and Audio Processing, IEEE Transactions on 8(1)</source>
          (
          <year>2000</year>
          )
          <volume>63</volume>
          {
          <fpage>75</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Guthrie</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Allison</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Guthrie</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wilks</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>A closer look at skipgram modelling</article-title>
          .
          <source>In: Proceedings of the 5th international Conference on Language Resources</source>
          and
          <article-title>Evaluation (LREC-</article-title>
          <year>2006</year>
          ).
          <article-title>(</article-title>
          <year>2006</year>
          ) 1{
          <fpage>4</fpage>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>