<!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>Machine learning to detect ICD10 codes in causes of death</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Pilar Lopez-Ubeda</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Manuel Carlos D az-Galiano</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>M. Teresa Mart n-Valdivia</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>L. Alfonso Uren~a-Lopez</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Computer Science, Advanced Studies Center in ICT (CEATIC) Universidad de Jaen</institution>
          ,
          <addr-line>Campus Las Lagunillas, 23071, Jaen</addr-line>
          ,
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>In this paper we present our rst participation as SINAI research group from the Universidad de Jaen at Task 1 "Multilingual Information Extraction - ICD10 coding". Our main goal is make a system based on Natural Language Processing (NLP) techniques to detect International Classi cation Diseases (ICD10) codes using di erent machine learning algorithms. First, we nd all the possibles ICD10 codes mentioned in the text. Next, we calculate several measures of quality of these codes. With these metrics we trained di erent machine learning algorithms and we choose the best model to use in our system. Most of the techniques used are independent of the language, therefore our system are easily adaptable to other languages.</p>
      </abstract>
      <kwd-group>
        <kwd>Natural Language Processing</kwd>
        <kwd>Named Entity Recognition</kwd>
        <kwd>Text Classi cation</kwd>
        <kwd>ICD10</kwd>
        <kwd>French</kwd>
        <kwd>Biomedical Text</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        The goal of the task Multilingual Information Extraction [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] is to automatically
assign International Classi cation Diseases (ICD10) codes to the text content of
death certi cates. This task can be treated as a named entity recognition and
normalization task, but also as a text classi cation task. This builds upon the
2016 [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] and 2017 [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] tasks which already addressed the analysis of French
biomedical text.
      </p>
      <p>
        This task focuses on the Named Entity Recognition (NER), one of the basic
problems of text mining [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. Therefore, information extraction and Natural
Language Processing (NLP) techniques will be developed to manage the information
contained in a medical record [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. There are many investigations related to the
detection of medical entities [
        <xref ref-type="bibr" rid="ref10 ref16 ref7">7,10,16</xref>
        ]. Tools such as Uni ed Modeling Language
MetaMap Transfer (UMLS MMTx) [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] is a con gurable tool commonly used by
system developers in biomedicine and Text Analysis and Knowledge Extraction
System (cTAKES)1 [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ]. However, both tools are implemented to be used in
English language collection. There are few automatic tools for identifying concepts
in languages such as French, Hungarian or Italian.
      </p>
    </sec>
    <sec id="sec-2">
      <title>1 ctakes.apache.org</title>
      <p>
        This group has a large experience participating in several tasks of other
editions of CLEF task related to the medical domain [
        <xref ref-type="bibr" rid="ref3 ref4 ref5 ref6">3,6,4,5</xref>
        ] and by participating
in this task we try to expand our horizons.
      </p>
      <p>We have focused on a part of the task in French and have worked with the
aligned data and dictionaries provided by the organization.</p>
      <p>This paper is organized as follows: In the next section, we introduce the
material provided by the organizers. Our method is described in section 3. In
the section 4 showing the experiments performed and we are done with the
conclusions and future work.
2</p>
      <sec id="sec-2-1">
        <title>French aligned dataset</title>
        <p>
          The CLEF e-Health 2018 Task 1 CepiDC Gold Standard Training data [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ]
composed of the following death certi cates:
{ Aligned causes 2006-2012: 65.843 death certi cates and associated gold
standard ICD10 codes
{ Aligned causes 2013: 27.850 death certi cates
{ Aligned causes 2014: 31.690 death certi cates
        </p>
        <p>The les provided are in CSV format and contain one line for each death
certi cate. Each line of the le is structured as shown in the table 1 below.</p>
      </sec>
      <sec id="sec-2-2">
        <title>Methodology</title>
        <p>In this section, we present the di erent strategies that we have followed in our
participation in CLEF eHealth 2018 Task 1: Multilingual Information Extraction
ICD10 coding.</p>
        <p>We have created a tool to recognize ICD10 codes stored in dictionaries. This
tool performs a Natural Language Processing (NLP) on the input text and tries
to match with the dictionary terms.
3.1</p>
        <sec id="sec-2-2-1">
          <title>System description</title>
          <p>
            For both the input text and the dictionary, the system performs the following
steps:
1. Normalize: to unify the form of terms we used unicode canonical
decomposition (NFD)[
            <xref ref-type="bibr" rid="ref1">1</xref>
            ].
2. Tokenize: the tokenizer used for this task is WhitespaceTokenizer from the
Python Natural Language Toolkit (NLTK)2 Library. The whitespace
tokenizer breaks text into terms whenever it encounters a whitespace character.
3. Stemmer: the algorithm used to make the stemmer in French is Snowball.
          </p>
          <p>Snowball3 is a small string processing language designed for creating
stemming algorithms for use in Information Retrieval.</p>
          <p>The system returns a list of relevant ICD10 codes with a value between 0
and 1 corresponding with the percentage of success between the term detected
within the text entered, the gure 1 shows an example of a system output.
100000;Demence type Alzheimer a un stade severe;F03; demence severe;1
100000;Demence type Alzheimer a un stade severe;G309;Alzheimer;1
100000;Demence type Alzheimer a un stade severe;G309;demence type Alzheimer;1
100000;Demence type Alzheimer a un stade severe;G309;demence type maladie Alzheimer severe;0.8
100000;Demence type Alzheimer a un stade severe;G309;demence type Alzheimer debutante;0.75
...</p>
          <p>For the rst three recognized concepts, the system returns 1 because the
percentage of success of that term appears in the input text, for the case of
"demence type maladie Alzheimer severe " the system returns 0.8 because of the
fact that of the 5 words that the recognized term matches, 4 appear in the text.</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>2 https://www.nltk.org/ (last visited: May 30, 2018) 3 https://snowballstem.org/</title>
      <p>3.2</p>
      <sec id="sec-3-1">
        <title>Measures for recognized terms</title>
        <p>After developing the system proposed above, we created several measures to
treat the words of the recognized terms:
{ Exact words. This measurement is set to 1 if the term appears exactly the
same in the cause of death text and assigns 0 otherwise.
{ Number of words between the rst and last word detected. This
measure takes into account the total word number of the recognized term
divided by the number of words between the rst word of the term and the
last word. With this measure, we are able to give a higher score to those
terms with a higher number of words.
{ Weight according to position in the detected term. Assigns a weight
to each position of the recognized term:</p>
        <p>X 1=i
where:</p>
        <p>i = word text position.
{ Weight by category ICD10. The last measure used is related to the
categories of ICD10 (the rst letter in the code: A,B, ..., Z). We think that
if the same category is detected many times, it will be more important and
we should give it more weight. For this reason, we divide the number of
occurrences of the detected category by a number of codes chosen , in our
case, = 10 (that is, the system is con gured to return the top 10 relevant
codes).
4
4.1</p>
        <sec id="sec-3-1-1">
          <title>Experiments</title>
        </sec>
      </sec>
      <sec id="sec-3-2">
        <title>Linear regression for classi cation codes ICD10</title>
        <p>Our goal was to use predictive analysis to improve the accuracy of the results.
We use linear regression because is one of the most well known algorithms in
machine learning.</p>
        <p>In order to choose the best classi er we tested several machine learning
techniques. The table 2 shows the results obtained. We trained with the 2013 and
2014 documents and tested with 2006-2012.</p>
        <p>We used all the measures described above to build a training model on the
data provided, for every cause of death and code detected in the collections:
2006-2012, 2013 and 2014. Then we predicted the results of the new ICD10
codes for the causes of death in 2015.
4.2</p>
      </sec>
      <sec id="sec-3-3">
        <title>Adding measurements</title>
        <p>We found that the sum of all measures calculated for each recognized term also
worked well. To perform the sum, the value of the measures were normalized.</p>
        <p>The results obtained with the 2013 and 2014 training collections are shown
in the table 3.</p>
        <sec id="sec-3-3-1">
          <title>Conclusion and future works</title>
          <p>In this work, the SINAI group has participated for the rst time in the task
of recognition of medical entities and classi cation in ICD10 codes in French.
We have developed an automatic system that identi es medical terms using the
dictionaries provided and almost independent of the language. We have created
some measures for the treatment of the recognized concepts, with these
measures, we have tested our system using di erent machine learning techniques to
predict the nal results. The technique with the best result obtained was Linear
Regression.</p>
          <p>For the next tasks of the CLEF, among others, we will want to improve
our results train our systems by providing new information, will explore word
embeddings models and we will incorporate new sources of knowledge such as
ontologies specialized in the medical domain in French. In addition, other types
of measurements that use bigrams and trigrams could be used. It will also be
studied how much each measure used contributes to the nal result.</p>
        </sec>
        <sec id="sec-3-3-2">
          <title>Acknowledgments</title>
          <p>This work has been partially supported by a grant from Fondo Europeo de
Desarrollo Regional (FEDER) and REDES project (TIN2015-65136-C2-1-R) from
the Spanish Government.</p>
        </sec>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Atkin</surname>
            ,
            <given-names>S.E.</given-names>
          </string-name>
          :
          <article-title>Meta normalization for text (Apr 19</article-title>
          <year>2005</year>
          ),
          <source>uS Patent 6</source>
          ,
          <issue>883</issue>
          ,
          <fpage>007</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Cohen</surname>
            ,
            <given-names>A.M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hersh</surname>
            ,
            <given-names>W.R.:</given-names>
          </string-name>
          <article-title>A survey of current work in biomedical text mining</article-title>
          .
          <source>Brie ngs in bioinformatics 6(1)</source>
          ,
          <volume>57</volume>
          {
          <fpage>71</fpage>
          (
          <year>2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <given-names>D</given-names>
            <surname>az-Galiano</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.C.</given-names>
            ,
            <surname>Garc</surname>
          </string-name>
          a-Cumbreras,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Mart</surname>
          </string-name>
          n-Valdivia,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Urena-Lopez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Montejo-Raez</surname>
          </string-name>
          ,
          <string-name>
            <surname>A.</surname>
          </string-name>
          :
          <article-title>SINAI at ImageCLEFmed 2008</article-title>
          . In: Peters,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Ferro</surname>
          </string-name>
          , N. (eds.)
          <source>CLEF (Working Notes)</source>
          .
          <source>CEUR Workshop Proceedings</source>
          , vol.
          <volume>1174</volume>
          .
          <string-name>
            <surname>CEUR-WS.org</surname>
          </string-name>
          (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <given-names>D</given-names>
            <surname>az-Galiano</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.C.</given-names>
            ,
            <surname>Garc</surname>
          </string-name>
          a-Cumbreras,
          <string-name>
            <given-names>M.A.</given-names>
            ,
            <surname>Mart</surname>
          </string-name>
          n-Valdivia,
          <string-name>
            <given-names>M.T.</given-names>
            ,
            <surname>MontejoRaez</surname>
          </string-name>
          , A.:
          <article-title>Knowledge integration using textual information for improving imageclef collections</article-title>
          .
          <source>In: ImageCLEF</source>
          , pp.
          <volume>295</volume>
          {
          <fpage>313</fpage>
          . Springer (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <given-names>D</given-names>
            <surname>az-Galiano</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.C.</given-names>
            ,
            <surname>Mart</surname>
          </string-name>
          n-Valdivia,
          <string-name>
            <surname>M.T.</surname>
          </string-name>
          ,
          <article-title>Mar a</article-title>
          , S.,
          <string-name>
            <surname>Jimenez-Zafra</surname>
            ,
            <given-names>A.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lopez</surname>
            ,
            <given-names>L.A.U.</given-names>
          </string-name>
          :
          <article-title>Sinai at clef ehealth 2017 task 3</article-title>
          .
          <source>In: CLEF 2017 Working Notes. CEUR Workshop Proceedings</source>
          , vol.
          <year>1866</year>
          .
          <article-title>CEUR-WS.org (</article-title>
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <given-names>D</given-names>
            <surname>az-Galiano</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.C.</given-names>
            ,
            <surname>Mart</surname>
          </string-name>
          n-Valdivia,
          <string-name>
            <surname>M.T.</surname>
          </string-name>
          ,
          <article-title>Uren~a-</article-title>
          <string-name>
            <surname>Lopez</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>Query expansion with a medical ontology to improve a multimodal information retrieval system</article-title>
          .
          <source>Computers in biology and medicine 39(4)</source>
          ,
          <volume>396</volume>
          {
          <fpage>403</fpage>
          (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Finkel</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dingare</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nguyen</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nissim</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Manning</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sinclair</surname>
          </string-name>
          , G.:
          <article-title>Exploiting context for biomedical entity recognition: From syntax to the web</article-title>
          .
          <source>In: Proceedings of the International Joint Workshop on Natural Language Processing in Biomedicine and its Applications</source>
          . pp.
          <volume>88</volume>
          {
          <fpage>91</fpage>
          .
          <article-title>Association for Computational Linguistics (</article-title>
          <year>2004</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Hahn</surname>
            ,
            <given-names>U.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Romacker</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schulz</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>How knowledge drives understanding|matching medical ontologies with the needs of medical language processing</article-title>
          .
          <source>Arti cial Intelligence in Medicine</source>
          <volume>15</volume>
          (
          <issue>1</issue>
          ),
          <volume>25</volume>
          {
          <fpage>51</fpage>
          (
          <year>1999</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Lavergne</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Neveol</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Robert</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Grouin</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rey</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zweigenbaum</surname>
            ,
            <given-names>P.:</given-names>
          </string-name>
          <article-title>A dataset for icd-10 coding of death certi cates: Creation and usage</article-title>
          .
          <source>In: Proceedings of the Fifth Workshop on Building and Evaluating Resources for Biomedical Text Mining (BioTxtM2016)</source>
          . pp.
          <volume>60</volume>
          {
          <issue>69</issue>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Leser</surname>
            ,
            <given-names>U.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hakenberg</surname>
          </string-name>
          , J.:
          <article-title>What makes a gene name? named entity recognition in the biomedical literature</article-title>
          .
          <source>Brie ngs in bioinformatics 6(4)</source>
          ,
          <volume>357</volume>
          {
          <fpage>369</fpage>
          (
          <year>2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Neveol</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Robert</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Grippo</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Morgand</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Orsi</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pelikan</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ramadier</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rey</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zweigenbaum</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Clef ehealth 2018 multilingual information extraction task overview: Icd10 coding of death certi cates in french, hungarian and italian</article-title>
          . In:
          <article-title>CLEF 2018 Evaluation Labs</article-title>
          and Workshop: Online Working Notes, CEUR-WS (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Neveol</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Anderson</surname>
            ,
            <given-names>R.N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cohen</surname>
            ,
            <given-names>K.B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Grouin</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lavergne</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rey</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Robert</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rondet</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zweigenbaum</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Clef ehealth 2017 multilingual information extraction task overview: Icd10 coding of death certi cates in english and french</article-title>
          . In:
          <article-title>CLEF 2017 Evaluation Labs</article-title>
          and Workshop: Online Working Notes, CEUR-WS. p.
          <volume>17</volume>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Neveol</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cohen</surname>
            ,
            <given-names>K.B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Grouin</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hamon</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lavergne</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kelly</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Goeuriot</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rey</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Robert</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tannier</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          , et al.:
          <article-title>Clinical information extraction at the clef ehealth evaluation lab 2016</article-title>
          .
          <source>In: CEUR workshop proceedings</source>
          . vol.
          <volume>1609</volume>
          , p.
          <fpage>28</fpage>
          .
          <string-name>
            <given-names>NIH</given-names>
            <surname>Public Access</surname>
          </string-name>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Osborne</surname>
            ,
            <given-names>J.D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lin</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhu</surname>
            ,
            <given-names>L.J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kibbe</surname>
            ,
            <given-names>W.A.</given-names>
          </string-name>
          :
          <article-title>Mining biomedical data using metamap transfer (mmtx) and the uni ed medical language system (umls)</article-title>
          .
          <source>Gene Function</source>
          Analysis pp.
          <volume>153</volume>
          {
          <issue>169</issue>
          (
          <year>2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Savova</surname>
            ,
            <given-names>G.K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Masanz</surname>
            ,
            <given-names>J.J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ogren</surname>
            ,
            <given-names>P.V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zheng</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sohn</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kipper-Schuler</surname>
            ,
            <given-names>K.C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chute</surname>
            ,
            <given-names>C.G.</given-names>
          </string-name>
          :
          <article-title>Mayo clinical text analysis and knowledge extraction system (ctakes): architecture, component evaluation and applications</article-title>
          .
          <source>Journal of the American Medical Informatics Association</source>
          <volume>17</volume>
          (
          <issue>5</issue>
          ),
          <volume>507</volume>
          {
          <fpage>513</fpage>
          (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Zhou</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          , Zhang, J.,
          <string-name>
            <surname>Su</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shen</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tan</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Recognizing names in biomedical texts: a machine learning approach</article-title>
          .
          <source>Bioinformatics</source>
          <volume>20</volume>
          (
          <issue>7</issue>
          ),
          <volume>1178</volume>
          {
          <fpage>1190</fpage>
          (
          <year>2004</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>