<!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>Identify Disorders in Health Records using Conditional Random Fields and Metamap</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>G. Zuccon</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>A. Holloway</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>B. Koopman</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>A. Nguyen</string-name>
          <email>anthony.nguyeng@csiro.au</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Queensland University of Technology</institution>
          ,
          <addr-line>Brisbane</addr-line>
          ,
          <country country="AU">Australia</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>The Australian e-Health Research Centre (CSIRO)</institution>
          ,
          <addr-line>Brisbane</addr-line>
          ,
          <country country="AU">Australia</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>The Australian e-Health Research Centre (AEHRC) recently participated in the ShARe/CLEF eHealth Evaluation Lab Task 1. The goal of this task is to individuate mentions of disorders in free-text electronic health records and map disorders to SNOMED CT concepts in the UMLS metathesaurus. This paper details our participation to this ShARe/CLEF task. Our approaches are based on using the clinical natural language processing tool Metamap and Conditional Random Fields (CRF) to individuate mentions of disorders and then to map those to SNOMED CT concepts. Empirical results obtained on the 2013 ShARe/CLEF task highlight that our instance of Metamap (after ltering irrelevant semantic types), although achieving a high level of precision, is only able to identify a small amount of disorders (about 21% to 28%) from free-text health records. On the other hand, the addition of the CRF models allows for a much higher recall (57% to 79%) of disorders from free-text, without sensible detriment in precision. When evaluating the accuracy of the mapping of disorders to SNOMED CT concepts in the UMLS, we observe that the mapping obtained by our ltered instance of Metamap delivers state-of-the-art e ectiveness if only spans individuated by our system are considered (`relaxed' accuracy).</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        The automatic identi cation of clinical conditions, such as disorders,
abnormalities, body sites, medications, procedures, devices, and their normalisation to a
standard terminology of reference, are tasks of key importance for the analysis
of free text electronic health records (e.g. discharge summaries). Solutions that
tackle these tasks are fundamental to unlock clinical information trapped in the
natural language of clinical narratives, which can be used to improve access,
reporting, reasoning and discovery. These capabilities have been, for example,
at the basis of previous research we conducted on cancer reporting [1{3],
radiology reconciliation [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], and medical information retrieval [
        <xref ref-type="bibr" rid="ref5 ref6">5, 6</xref>
        ]. Other application
areas include disease monitoring and pharmacological surveillance [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ].
      </p>
      <p>
        Task 1 of the ShARe/CLEF eHealth Evaluation Lab aims to provide
researchers with a standard benchmark for evaluating clinical information
extraction and normalisation systems [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. The task comprises of two objectives (i.e.,
subtasks):
1. Identify the boundaries of mentions of disorders in discharge summaries;
2. Map each mention of disorder to a UMLS CUI (restricted to CUIs referring
to SNOMED CT concepts).
      </p>
      <p>
        Details of this task can be found in the Lab overview paper [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ].
      </p>
      <p>
        To discover mentions of disorders in the free-text of discharge summaries
we implemented two solutions (runs TeamAEHRC.1 and TeamAEHRC.2) based
on Metamap[
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] and Conditional Random Fields [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]. Our rst approach relies
on Metamap (as integrated in AEHRC's Medtex medical text analysis
platform [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ]) to recognise mentions of disorders. The output of Metamap is ltered
according to the UMLS semantic types associated with disorders as identi ed in
the ground truth labels of the training data. Our second approach complements
the output of Metamap by using Conditional Random Fields models built on
training annotations, as provided by the task organisers [12]. The CRF models
are built from lexical features (e.g. tokens, word shapes, etc), as well as from
CUIs and semantic types as recognised by Metamap. Metamap was used to
produce mappings of disorders to concepts in the UMLS metathesaurus. Disorders
identi ed by the CRF models but not by Metamap were mapped to CUI-less
concepts. Details of our approaches are given in section 2.
      </p>
      <p>Empirical results obtained in the ShARe/CLEF 2013 challenge suggest that
the approach implementing CRF and Metamap is more e ective than using
Metamap alone for identifying disorders from free-text discharge summaries. Our
approach based on the combination of Metamap and CRF achieved considerably
higher recall within the `relaxed' evaluation context than when considering the
`strict' settings. This is because of a bug in the code we used for submitting
our run. The bug produced a miss-alignment between the correct output of the
CRF models and the text of the discharge summaries. Thus, the spans present
in the submission representing this approach contain token misalignments,
resulting in better e ectiveness when the `relaxed' settings are considered. Further
considerations on the results of our approaches in this task are presented in
section 3.2.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Methods</title>
      <p>As part of our participation in this challenge, we rst investigated the e
ectiveness of a system based on Metamap, and then the contribution that a supervised
named entity recognition approach based on Condition Random Fields would
have when added to the approach that relies solely on Metamap.</p>
      <p>
        Metamap is a well-known software tool that uses natural language processing
and knowledge-intensive approaches to identify biomedical keywords and map
them to UMLS Metathesaurus concepts. We used Metamap as integrated within
AEHRC's Medtex medical text analysis platform [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ]. Our instance of Medtex
used the server version of Metamap 2011v2, with CUI mappings restricted to
concepts belonging to the SNOMED CT terminology. Metamap was used to
identify spans of text in the discharge summaries that referred to biomedical
keywords. We rst considered the concepts that Metamap identi ed for (fully
or partially overlapping) mentions of disorders as identi ed by human expert
assessors in the training discharge summaries of the ShARe/CLEF 2013
challenge. We grouped reference mentions of disorders in the training data by their
semantic types as identi ed by Metamap. Table 1 summarises the semantic types
disorders belong to; semantic types were ranked by number of occurrences.
      </p>
      <p>Table 1 identi es which semantic types (as identi ed by Metamap) are most
commonly associated with disorders (as identi ed by the expert assessors). To
produce our rst submission to this year's ShARe/CLEF 2013, we use Metamap
to identify spans of biomedical keywords and their associated UMLS concepts in
the discharge summaries of the test set. To retain only spans that may refer to
disorders, we lter out concepts that do not belong to the top 10 semantics types
identi ed from the training dataset (i.e., we consider only the semantic types
listed in Table 1 except Mental Process, Body Substance and Cell or Molecular
Dysfunction). Normalisation is achieved by considering the CUIs of the
resulting concepts as provided by Metamap. The submission to the ShARe/CLEF
challenge that implements this method is identi ed as TeamAEHRC.1.</p>
      <p>According to Table 1, a large number of disorders identi ed by expert
assessors in the training discharge summaries are not identi ed by Metamap: in
fact, 1,675 disorders have no semantic type. If the training dataset is
representative of the testing dataset, a similar trend is likely to be observed when testing
the previous approach on unseen data. This would then result in poor recall, as
Metamap would miss a large number of mentions of disorders. With the objective
of improving recall of our Metamap-based approach, we complete that solution
with the use of a supervised machine learning model for name entity recognition.
Speci cally, we chose to implement Conditional Random Fields (CRF) models
to automatically identify spans of text that refer to disorders. We have used CRF
models in previous work on de-identi cation of electronic health records, and we
found that, provided enough training data is made available, CRF models are
able to e ectively identify targeted named entities [13].</p>
      <p>A Conditional Random Fields classi er is a discriminative undirected
probabilistic graphical model that, given a observed sequence, de nes a log-linear
distribution over labelled sequences. To build the CRF models we used the
following lexical and semantic features:
{ the word tokens;
{ word shapes features (e.g. the presence of capitalised characters at the
beginning of the word token or across the whole token);
{ letter n-grams (n = 6);
{ disjunctive features, which capture disjunctions of words and word shapes
within windows of tokens;
{ position, which captures the position of a word in the sentence;
{ the UMLS CUIs as provided by Metamap;
{ a disorder ag as provided by our rst approach (i.e. TeamAEHRC.1).</p>
      <p>Features were extracted from discharge summaries in the training and
testing datasets. The CRF model was trained using discharge summaries from the
ShARe/CLEF Task 1 training set only. The submission to the ShARe/CLEF
challenge that implements this method is identi ed as TeamAEHRC.2.
3
3.1</p>
    </sec>
    <sec id="sec-3">
      <title>Evaluation on the ShARe/CLEF Challenge</title>
      <sec id="sec-3-1">
        <title>Evaluation Measures</title>
        <p>To evaluate the e ectiveness of approaches to identify mentions of disorders in
discharge summaries, the organisers of the ShARe/CLEF Task 1 considered:
{ Precision (P): TP / (TP + FP);
{ Recall (R): TP / (TP + FN);
{ F-measure (F): (2 * Recall * Precision) / (Recall + Precision);
where true positive (TP) indicates that a system identi ed a disorder in the
same span as that identi ed by the expert assessors, false positive (FP) refers
to the identi cation of an incorrect span, and false negative (FN) indicates that
a system failed to identify a disorder-span that was instead identi ed by the
expert assessors. The `strict' and `relaxed' evaluation settings refer to the case
where the automatically identi ed span is identical to the reference span, and
that identi ed span overlaps with the reference span, respectively. We refer the
reader to the task overview paper for more details.</p>
        <p>Accuracy was chosen to evaluate the e ectiveness of approaches to map
mentions of disorders in discharge summaries to SNOMED CT concepts in the
UMLS. Accuracy is de ned as the ratio of correctly mapped concepts to the
total number of mentions of disorders. In the `strict' evaluation settings, the
total number of mentions of disorders is computed over the reference standard
identi ed by the expert assessors. In the `relaxed' settings, the total number of
mentions of disorders is computed over the mentions identi ed by the system
that strictly overlap with the reference standard.
3.2</p>
      </sec>
      <sec id="sec-3-2">
        <title>Results</title>
        <p>Results obtained by the two submitted runs are reported in Tables 2 and 3 for
the identi cation of disorders and their mapping to UMLS concepts, respectively.</p>
        <p>Results of TeamAEHRC.1 for task 1a (Table 2) suggest that our Metamap
instance only identi es a limited number of disorders, with recall between 21.2%
and 27.5%. While the relaxed evaluation setting does not sensibly a ect the
recall e ectiveness of TeamAEHRC.1, it is observed that precision increases over
the run evaluated within the strict setting. This suggests that if span overlaps
between system annotation and reference standard are considered, the disorders
identi ed by the system are highly likely to have been identi ed also by expert
assessors. The high `relaxed' accuracy achieved by TeamAEHRC.1 on task1b
(Table 2; indeed, the highest accuracy across the challenge systems) highlights
that when spans of disorders are correctly identi ed, Metamap is highly e ective
in providing a mapping consistent with those of the expert assessors.</p>
        <p>Results of TeamAEHRC.2 submission are a ected by a bug in our code that
prevents the correct alignment between positions of disorder annotations as
identi ed by our system and the token positions in the challenge's reference standard.
This explains why this system achieves signi cantly better e ectiveness across
the `relaxed' evaluation settings than the `strict' one, both for task 1a and task
1b. The `relaxed' settings for task 1a account for partial overlaps between
system annotations and reference standards; this partially corrects the bug in our
system. The analysis of Table 1 suggested that the system based on Metamap
may not identify a large number of disorders: this has proven to be the case (the
recall of TeamAEHRC.1 is low). The intuition for complementing the
Metamapbased approach with CRF models was that these may identify patterns in the
text of discharge summaries that would allow to identify mentions of disorders
Metamap would not recognise. The (relaxed) recall achieved by TeamAEHRC.2
suggests that this has been indeed the case: CRF models enable to identify about
3 times more mentions of disorders than the system based solely on Metamap
(TeamAEHRC.1). The highest recall provided by CRF is traded o for a loss
in precision (Precision of TeamAEHRC.1: 0.903; Precision of TeamAEHRC.2:
0.886): some of the spans identi ed by the system are actually not mentions of
disorders according to expert assessors. However, this loss is minimal (1.88%)
and indeed TeamAEHRC.2 obtains almost double the F-measure than that of
TeamAEHRC.1 (TeamAEHRC.1: 0.422; TeamAEHRC.2: 0.833).
4</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Conclusions</title>
      <p>In this paper we have presented the methods used in our submissions to the
ShARe/CLEF 2013 eHealth Evaluation Lab Task 1. Our methods are based on
an instance of Metamap and on Conditional Random Fields. Empirical results
suggest that if a disorders mention is correctly identi ed by Metamap, then its
mapping to a CUI provided by this system is highy likely to be correct. However,
Metamap does only recognise a handful of mentions of disorders: many of the
disorders identi ed by the ShARe/CLEF expert assessors are not recognised
by our instance of Metamap. To increase recall, we have complemented our
Metamap solution with Conditional Random Fields models. Our implementation
was a ected by a software bug, which prevented correct alignment of identi ng
spans and tokens. The 'relaxed' evaluation settings partially addresses our span
alignment issue. When 'relaxed' e ectiveness is considered, the solution that
mixes Metamap and Conditional Random Fields (TeamAEHRC.2) is able to
identify a large number of disorders, trading o only a small amount of the
precision provided by Metamap. When considering mapping of free-text to a
standard reference terminology (task 1b), the mapping provided by Metamap is
found to be highly accurate for the mentions that have been correctly identi ed
by the system.
12. Noemie Elhadad, W.C., O'Gorman, T., Palmer, M., Savova, G.: The share schema
for the syntactic and semantic annotation of clinical texts (2013 (under review))
13. Zuccon, G., Strachan, M., Nguyen, A., Bergheim, A., Grayson, N.: Automatic
de-identi cation of electronic health records: An australian perspective. In: 4th
International Workshop on Health Document Text Mining and Information Analysis
(LOUHI'13). (2013) 1{5</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Nguyen</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Moore</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zuccon</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lawley</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Colquist</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Classi cation of pathology reports for cancer registry noti cations</article-title>
          .
          <source>In: Health Informatics: Building a Healthcare Future Through Trusted Information-Selected Papers from the 20th Australian National Health Informatics Conference (Hic</source>
          <year>2012</year>
          ). Volume
          <volume>178</volume>
          ., Ios PressInc (
          <year>2012</year>
          )
          <fpage>150</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Zuccon</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nguyen</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bergheim</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wickman</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Grayson</surname>
            ,
            <given-names>N.:</given-names>
          </string-name>
          <article-title>The impact of ocr accuracy on automated cancer classi cation of pathology reports</article-title>
          .
          <source>In: Health Informatics: Building a Healthcare Future Through Trusted Information-Selected Papers from the 20th Australian National Health Informatics Conference (Hic</source>
          <year>2012</year>
          ). Volume
          <volume>178</volume>
          ., Ios PressInc (
          <year>2012</year>
          )
          <fpage>250</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Butt</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zuccon</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nguyen</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bergheim</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Grayson</surname>
          </string-name>
          , N.:
          <article-title>Classi cation of cancer-related death certi cates using machine learning</article-title>
          .
          <source>Australasian Medical Journal</source>
          <volume>6</volume>
          (
          <issue>5</issue>
          ) (
          <year>2013</year>
          )
          <volume>292</volume>
          {
          <fpage>299</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Zuccon</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wagholikar</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nguyen</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chu</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Martin</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lai</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Greenslade</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          :
          <article-title>Automatic classi cation of free-text radiology reports to identify limb fractures using machine learning and the snomed ct ontology</article-title>
          .
          <source>In: AMIA Clinical Research Informatics</source>
          . (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Zuccon</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Koopman</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nguyen</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vickers</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Butt</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>Exploiting medical hierarchies for concept-based information retrieval</article-title>
          .
          <source>In: Proceedings of the Seventeenth Australasian Document Computing Symposium</source>
          , ACM (
          <year>2012</year>
          )
          <volume>111</volume>
          {
          <fpage>114</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Koopman</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zuccon</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bruza</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sitbon</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lawley</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Graph-based concept weighting for medical information retrieval</article-title>
          .
          <source>In: Proceedings of the Seventeenth Australasian Document Computing Symposium</source>
          , ACM (
          <year>2012</year>
          )
          <volume>80</volume>
          {
          <fpage>87</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7. LePendu,
          <string-name>
            <given-names>P.</given-names>
            ,
            <surname>Iyer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.V.</given-names>
            ,
            <surname>Bauer-Mehren</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Harpaz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            ,
            <surname>Mortensen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.M.</given-names>
            ,
            <surname>Podchiyska</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            ,
            <surname>Ferris</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.A.</given-names>
            ,
            <surname>Shah</surname>
          </string-name>
          ,
          <string-name>
            <surname>N.H.</surname>
          </string-name>
          :
          <article-title>Pharmacovigilance using clinical notes</article-title>
          .
          <source>Clinical Pharmacology &amp; Therapeutics</source>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <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="ref9">
        <mixed-citation>
          9.
          <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>JAMIA</source>
          <volume>17</volume>
          (
          <issue>3</issue>
          ) (
          <year>2010</year>
          )
          <volume>229</volume>
          {
          <fpage>236</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>La</surname>
            <given-names>erty</given-names>
          </string-name>
          , J.,
          <string-name>
            <surname>McCallum</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pereira</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          :
          <article-title>Conditional random elds: Probabilistic models for segmenting and labeling sequence data</article-title>
          .
          <source>In: Proc. of ICML'01</source>
          . (
          <year>2001</year>
          )
          <volume>282</volume>
          {
          <fpage>289</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Nguyen</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Moore</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lawley</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hansen</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Colquist</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Automatic extraction of cancer characteristics from free-text pathology reports for cancer noti cations</article-title>
          .
          <source>In: Health Informatics Conference</source>
          . (
          <year>2011</year>
          )
          <volume>117</volume>
          {
          <fpage>124</fpage>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>