<!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>A Method for Building Ontology Property Explanations</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Sungkwon Yang</string-name>
          <email>sungkwon.yang@snu.ac.kr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yongju Lee</string-name>
          <email>yongju_lee@snu.ac.kr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Hyunwhan Joe</string-name>
          <email>hyunwhanjoe@snu.ac.kr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Hong-Gee Kim</string-name>
          <email>hgkim@snu.ac.kr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>A Model for Explaining Ontology Property</institution>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Biomedical Knowledge Engineering Laboratory, Seoul National University</institution>
          ,
          <addr-line>Seoul</addr-line>
          ,
          <country country="KR">Korea</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>The lemon model has been developed to link lexical knowledge to ontology classes and properties. However, it is only possible to describe an ontology property with lexical senses. In our previous work, we found that there are relations between ontology properties and natural language predicates. We suggest a model for explaining ontology properties with not only lexical senses such as verb senses, but also arguments. In this paper, we proposed a method to build ontology property explanations to help linking ontology properties and predicates in natural languages.</p>
      </abstract>
      <kwd-group>
        <kwd>Ontology Property</kwd>
        <kwd>PropBank</kwd>
        <kwd>Knowledge Base</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        In order to utilize knowledge bases written in RDF in real world application, it is
significant to link lexical entries to ontology vocabularies. The lemon model[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] has
been developed to link lexical knowledge to ontology classes and properties.
However, in lemon model, it is only possible to describe an ontology property with
lexical senses.
      </p>
      <p>
        Ontology properties in RDF based ontologies are binary relation that represents
relationships between two entities. On the other hand, predicates in natural languages
can be regarded as n-ary relation that represents relationships among its arguments.
This structural gap often makes the property linking task very difficult. In order to
narrows this gap, we introduced a model for explaining ontology property in our
previous work[
        <xref ref-type="bibr" rid="ref6">6</xref>
        ].
      </p>
      <p>
        In our previous work, we suggest a model for explaining, especially, ontology
properties with not only lexical senses such as verb senses, but also arguments that are
available for the given verb sense. In detail, we use PropBank[
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] predicates and
arguments to attach an explanation to ontology properties. In this paper, we propose a
method to build property explanations for a given knowledge base written in RDF.
In our previous work, we found that there are some relations between ontology
properties and natural language predicates. For example, it is possible to link property
birthPlace and property birthDate to predicate bear.02. Both properties are describing
relationships related to the predicate bear.02. However, while the property birthPlace
is used to represent a relation between object and location of the predicate bear.02, the
property birthDate represents a relation between object and time of the predicate
bear.02. The model for explaining ontology property was proposed to captures these
relations. In addition, PropBank was exploited as a Predicate-Argument model to
explain properties.
      </p>
      <p>In this model, a property can be explained with a verb sense called predicate and
two arguments called source and target. For example, property birthPlace can be
explained as a relation between ARG1 of predicate bear.02 and ARGM-LOC of
predicate bear.02. In this case, ARG1 will be the source argument, and ARGM-LOC
will be the target argument. While, property birthDate can be explained as a relation
between ARG1 as a source argument and ARGM-TMP as a target argument of
predicate bear.02.</p>
    </sec>
    <sec id="sec-2">
      <title>Building Ontology Property Explanations</title>
      <p>
        The model for explaining ontology properties with Predicate-Argument patterns
illustrates the potential of bridging the semantic gap between predicates in natural
language sentences and ontology properties. In this paper, we propose a method that
automatically constructs an explanation for a property based on a given knowledge
base written in RDF. Our approach requires some textual corpora associated with
given knowledge base in advance. Here, the relatedness between the textual corpora
and knowledge base means that some natural language sentences that semantically
corresponds to each statement in the knowledge base are expected. In our research,
we utilize DBpedia[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] as a given knowledge base and Wikipedia article abstract
paragraphs as corresponding textual corpora.
      </p>
      <p>Figure 2 illustrates the process for building explanations of a property in the
knowledge base. In our approach, it is required to pick a specific property in the
knowledge base to build its explanations. We choose the birthPlace property as an
example in this paper.</p>
      <p>In the first step of our method, relevant triples with the target property will be
extracted. Relevant triples are the triples that uses the target property as a predicate.
For example, a relevant triple for property birthPlace is &lt;Frances Stevenson,
birthPlace, London&gt;.</p>
      <p>Secondly, we extract related sentences from given textual corpora which contains
both of subject and object of the relevant triples. For instance, a related sentence for
triple &lt;Frances Stevenson, birthPlace, London&gt; is “Frances Stevenson was born in
London”.</p>
      <p>
        After that we perform Semantic Role Labeling[
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] over the related sentences to
analyze Predicate-Argument structure of the sentences. Table 1. shows an example
result of sentence “Frances Stevenson was born in London”.
      </p>
      <p>Finally, we collect the Predicate-Argument patterns that are relevant to the triples
that are extracted from the first step. Sometimes related sentences not only contain
information related to the relevant triple, but also some other information. For
example, sentence “Frances Stevenson was born in London and born on 1988”
contains not only birth place information, but also birth year information. Therefore,
in this step, we extract Predicate-Argument patterns related to the relevant triple. The
relatedness between relevant triple and Predicate-Argument pattern means that both
of the subject and object of the triple should be matched to the one of argument of the
pattern individually.</p>
      <p>The collected set of Predicate-Argument patterns are the final result of our
approach. Each pattern can be regarded as an explanation of the given target. Table 2
illustrates a part of the collected set for property birthPlace. It is easy to catch that the
property birthPlace can be explained with predicate bear.02, agument ARG1 and
ARGM-LOC.</p>
    </sec>
    <sec id="sec-3">
      <title>Conclusion</title>
      <p>The model for explaining ontology properties with Predicate-Argument patterns
illustrates the possibility of bridging the semantic gap between predicates in natural
language sentences and ontology properties. In this paper, we proposed a method to
build explanations of ontology properties in an automatic way. We believe that
property explanations built from our approach could help to link properties in RDF
and predicates in natural languages to extract triples from unstructured text data or
answering natural language questions.</p>
      <p>Acknowledgments. This work was supported by Institute for Information &amp;
communications Technology Promotion(IITP) grant funded by the Korea
government(MSIP) (No. 2013-0-00109, WiseKB: Big data based self-evolving
knowledge base and reasoning platform).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>McCrae</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Spohr</surname>
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cimiano</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Linking lexical resources and ontologies on the semantic web with lemon</article-title>
          .
          <source>In: the 8th Extended Semantic Web Conference</source>
          , (
          <year>2011</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Kingsbury</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Snyder</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xue</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Palmer</surname>
            ,
            <given-names>M.:</given-names>
          </string-name>
          <article-title>PropBank as a Bootstrap for Richer Annotation Schemes</article-title>
          .
          <source>In: the 6th Workshop on Interlinguas</source>
          , (
          <year>2003</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Kingsbury</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Palmer</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          : From Treebank to Propbank.
          <source>In: the third International Conference on Language Resources and Evaluation</source>
          , (
          <year>2002</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Auer</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bizer</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kobilarov</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lehmann</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cyganiak</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ives</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          :
          <article-title>DBpedia: a nucleus for a web of open data</article-title>
          .
          <source>In: the 6th international The semantic web and 2nd Asian conference on Asian semantic web conference</source>
          , (
          <year>2007</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Björkelund</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hafdell</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nugues</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Multilingual semantic role labeling</article-title>
          .
          <source>In: The Thirteenth Conference on Computational Natural Language Learning</source>
          , (
          <year>2009</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Yang</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Joe</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kim</surname>
          </string-name>
          , H.:
          <article-title>A Model for Explaining Ontology Properties based on PropBank</article-title>
          .
          <source>In: The 5th Joint International Semantic Technology</source>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>