<!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>MeDetect: Domain Entity Annotation in Biomedical References Using Linked Open Data</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Li Tian</string-name>
          <email>tianli@apex.sjtu.edu.cn</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Weinan Zhang</string-name>
          <email>wnzhang@apex.sjtu.edu.cn</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Haofen Wang</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Chenyang Wu</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yuan Ni</string-name>
          <email>niyuan@cn.ibm.com</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Feng Cao</string-name>
          <email>caofeng@cn.ibm.com</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yong Yu</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>IBM China Research Laboratory</institution>
          ,
          <addr-line>Beijing</addr-line>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Shanghai Jiao Tong University</institution>
          ,
          <addr-line>Shanghai</addr-line>
        </aff>
      </contrib-group>
      <abstract>
        <p>Recently, with the ever-growing use of textual medicine records, annotating domain entities has been regarded as an important task in the biomedical field. On the other hand, the process of interlinking open data sources is being actively pursued within the Linking Open Data (LOD) project. The number of entities and the number of properties describing semantic relationships between entities within the linked data cloud are very large. In this paper, we propose a knowledge-incentive approach based on LOD for entity annotation in the biomedical field. With this approach, we implement MeDetect, a prototype system to solve the problems mentioned above. The experimental results verify the effectiveness and efficiency of our approach.</p>
      </abstract>
      <kwd-group>
        <kwd>Domain Entity Annotation</kwd>
        <kwd>Linked Open Data</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>Entity annotation aims at discovering entities in references automatically. It is quite
useful for many tasks including information extraction, classification, text
summarization, question answering, and literature-based knowledge discovery. On the other
hand, the Web as a global information space is developing from a Web of documents
to a Web of data. Currently, there are billions of triples publicly available in Web data
sources of different domains. These data sources are becoming more tightly
interrelated as the number of links in the form of mappings grows. Based on the two points,
what have we done in this paper can be summarized as follows.
1. We have proposed a novel knowledge-incentive approach based on LOD for entity
annotation in the biomedical field. This approach has data flexibility, language
independence, and semantic relationship enrichment, which makes it more
convenient and informative for further applications.
2. We have proposed to make use of collective annotation leveraged by LOD
information to conduct entity filtering and disambiguation.
3. We have developed MeDetect to implement our proposal. The experimental results
verify the effectiveness and efficiency of our approach.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Methods</title>
      <p>
        The overall design of MeDetect is shown in Figure 1.
Data Preparation. This step is conducted off-line. It generates two data structures for
the on-line process of MeDetect. The first is an entity glossary, and the second is
entity relation data. For Biomedical related ontology like DrugBank, we just use its
entities and relations to build the entity glossary and relation data. For other general
ontology like DBpedia which contains other non-biomedical entities, we propose a
two-stage approach to handle it. In the first stage we use the link owl:sameAs from
LODD to DBpedia to find the seed entities and expand the entity set from the original
seed set using the sharing category information between entities. Secondly, we use a
Support Vector Machine (SVM) [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] as the binary classification algorithm to pick
biomedical entities from the candidate set.
      </p>
      <p>Entity Name Recognition. With the biomedical entity glossary, the on-line entity
name recognition step provides the syntactic match between the entity name in the
glossary and the content of input biomedical references. This is based on syntactic
matching, and the recognized entities with their URIs are passed to next step as
candidate entities to be further filtered.</p>
      <p>
        Entity Filtering and Disambiguation. The last but most important on-line step of
MeDetect is entity filtering and disambiguation. We implement a system based on
recent work on Web page annotation, Collective Annotation [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. This approach not
only detects the importance of each entity for the input text, but also, more
importantly, filters out irrelevant entities based on the inter-entity relationship. There should be
two functions in collective annotation: the single entity importance function and entity
pair coherence function.
      </p>
      <p>The single entity importance function estimates the relevance between an entity and
the input text, based on their syntactic and semantic similarity, using logistic
regression or category-based matching. Here, the entity description information in its
URI can be utilized to match the input text.</p>
      <p>
        The entity pair coherence function judges the topic similarity or consistency of pairs
of entity URIs so as to filter out noise and cope with ambiguities. For example, if a
candidate entity has no relationship or common topic with others, it is quite possible
that this candidate is noise. Also if a candidate entity name has more than one URI,
the entity pair coherence function will calculate the coherence of each of these URI
with the ones of other entities and choose the most coherent one as the final URI of
this entity name. Thus the problem of ambiguity is handled. In MeDetect, we use a
LOD neighborhood overlap calculation [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] to implement the entity pair coherence
function, as is shown in Figure 2.
Finally, we show a case of MeDetect entity annotation for a piece of biomedical
reference in Figure 3. With the URI of each extracted entity, further information (such as
the description of each entity and its links to related entities) can be directly provided
in the annotation service.
      </p>
    </sec>
    <sec id="sec-3">
      <title>Results</title>
      <p>The effectiveness and efficiency of MeDetect is evaluated by an experimental study.
In the experiment, 120 paper abstracts with different biomedical topics are randomly
selected from PubMed and three human judgers with biomedical or computer
background score the output entities for each paper abstract. To have a comparative
evaluation of the quality of MeDetect, we import MetaMap and LingPipe. Here
MeDetect\FD means MeDetect without filtering and disambiguation.</p>
      <p>Compared
systems</p>
      <p>In Table 1 the average accuracy of MeDetect is much higher than MetaMap and
LingPipe. Without entity filtering and disambiguation, MeDetect\FD provides a lower
accuracy, despite its higher efficiency. In sum, MeDetect provides the most
satisfactory performance.
4</p>
    </sec>
    <sec id="sec-4">
      <title>Conclusion</title>
      <p>This paper describes a novel knowledge-incentive approach based on LOD for entity
annotation in the biomedical field. This approach has data flexibility, language
independence, and semantic relationship enrichment, which makes it more adaptive and
informative for further applications. We implement a prototype system MeDetect to
demonstrate our approach for domain entity annotation for biomedical references. Its
three key components are data preparation, entity name recognition, and entity
filtering and disambiguation. Our system demonstrates its high annotation accuracy and
data flexibility for adding more LOD sources. In future work, we will enrich the
entity glossary of MeDetect by adding more LOD sources. More importantly, MeDetect
will be further utilized for triple extraction from biomedical references.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Suykens</surname>
            <given-names>J.A.K.</given-names>
          </string-name>
          and
          <string-name>
            <surname>Vandewalle J. Least</surname>
          </string-name>
          <article-title>Squares Support Vector Machine Classifiers</article-title>
          .
          <source>Neural Processing Letters</source>
          <year>1999</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Kulkarni</surname>
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Singh</surname>
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ramakrishnan</surname>
            <given-names>G.</given-names>
          </string-name>
          and
          <article-title>Chakrabarti S. Collective Annotation of Wikipedia Entities in Web Text</article-title>
          .
          <source>SigKDD Proc</source>
          .
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Zhou</surname>
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wang</surname>
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chao</surname>
            <given-names>J.</given-names>
          </string-name>
          , Zhang W. and
          <string-name>
            <surname>Yu</surname>
            <given-names>Y. LODDO</given-names>
          </string-name>
          :
          <article-title>Using Linked Open Data Description Overlap to Measure Semantic Relatedness Between Named Entities</article-title>
          .
          <source>JIST Proc</source>
          .
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>