<!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>CD at ENSEC 2016: Generating Characteristic and Diverse Entity Summaries</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Danyun Xu</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Liang Zheng</string-name>
          <email>zhengliang@smail.nju.edu.cn</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yuzhong Qu</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>National Key Laboratory for Novel Software Technology, Nanjing University</institution>
          ,
          <country country="CN">China</country>
        </aff>
      </contrib-group>
      <fpage>2</fpage>
      <lpage>4</lpage>
      <abstract>
        <p>We introduce our entity summarization approach called CD, which aims to select characteristic and diverse features into an entity summary. The characterizing ability of a feature is measured according to information theory. The information overlap between features considers ontological semantics of classes and properties, as well as string and numerical similarity. Finally, selecting characteristic and diverse features is formulated as a binary quadratic knapsack problem to solve.</p>
      </abstract>
      <kwd-group>
        <kwd>Entity summarization</kwd>
        <kwd>self-information</kwd>
        <kwd>reasoning</kwd>
        <kwd>string similarity</kwd>
        <kwd>numerical similarity</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        Our entity summarization approach, called CD, is adapted from [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. The basic
idea is to, given an entity description composed of a set of property-value pairs
called features, select a size-limited subset of characteristic and diverse features
as an entity summary. We formulate it as a binary quadratic knapsack problem
(QKP) to solve. Speci cally, the characterizing ability of a feature is measured
according to information theory, and the information overlap between features
considers ontological semantics of classes and properties, as well as string and
numerical similarity.
Let E, C, P , and L be the sets of all entities, classes, properties, and literals in
a dataset, respectively. The description of an entity e is a set of property-value
pairs called features, denoted by d(e) P (E [ C [ L). In RDF data, d(e) is
obtained from RDF triples in which e is the subject or the object. When e is the
subject of a triple t, the predicate (which is a property) and the object (which is
an entity, a class, or a literal) of t comprise a feature. When e is the object of a
triple t, the inverse of the predicate and the subject of t comprise a feature. The
inverse of a property p is a property automatically created by our approach and
is distinguished from p, though they share a common name; if a property pi is a
subproperty of a property pj , we also de ne the inverse of pi as a subproperty
of the inverse of pj . Given an integer k, an entity summary S of e is a subset
of d(e) subject to jSj k.
      </p>
    </sec>
    <sec id="sec-2">
      <title>Approach</title>
      <p>3.1</p>
      <sec id="sec-2-1">
        <title>Characterizing Ability of a Feature</title>
        <p>The characterizing ability of a feature f , denoted by ch(f ), is measured
according to information theory. Speci cally, we compute the normalized amount of
self-information contained in the probabilistic event of observing f in an
entity description in a dataset. A feature will have high characterizing ability if it
belongs to a small number of entity descriptions:
ch(f ) =
log jfe2E:f2d(e)gj</p>
        <p>jEj
log jEj
;
(1)
which is in the range of [0; 1].
3.2</p>
      </sec>
      <sec id="sec-2-2">
        <title>Information Overlap between Features</title>
        <p>The information overlap between two features fi and fj , denoted by ovlp(fi; fj ),
considers ontological semantics of classes and properties, as well as string and
numerical similarity.</p>
        <p>For a feature f , let prop(f ) and val(f ) return the property and the value
of f , respectively.</p>
        <p>Firstly, we exploit ontological semantics of classes and properties. If both
prop(fi) and prop(fj ) are rdf:type and val(fi) is a subclass of val(fj ) (or vice
versa), we will de ne ovlp(fi; fj ) = 1 because one of them can be inferred from
the other and thus they share maximized overlapping information. Similarly, we
will also de ne ovlp(fi; fj ) = 1 if val(fi) = val(fj ) and prop(fi) is a subproperty
of prop(fj ) (or vice versa).</p>
        <p>
          In other cases, we calculate the string similarity between property names
(isub) and the similarity between property values (sim):
ovlp(fi; fj ) = maxfisub(prop(fi); prop(fj )); sim(val(fi); val(fj )); 0g ;
(2)
which is in the range of [0; 1]. Here, isub 2 [ 1; 1] returns the ISub string
similarity [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ] between two property names; sim 2 [ 1; 1] returns the similarity
between two property values. To measure sim(val(fi); val(fj )), if both val(fi)
and val(fj ) are numerical data values, we calculate their similarity as follows.
1. If val(fi) = val(fj ), sim(val(fi); val(fj )) = 1;
2. otherwise, if val(fi) val(fj ) 0, sim(val(fi); val(fj )) =
3. otherwise, sim(val(fi); val(fj )) = mmainxffjjvvaall((ffii))jj;;jjvvaall((ffjj))jjgg .
1;
In other cases, we treat val(fi) and val(fj ) as strings; that is, for entities and
classes, we take their names, and for literals, we take their string forms. Then
we calculate their ISub string similarity as sim.
        </p>
        <p>Selecting Characteristic and Diverse Features
We aim to select up to k features from d(e) that maximize their total
characterizing ability and minimize the total information overlap between them. To this
end, we de ne the quality of an entity summary S as
q(S) =</p>
        <p>X ch(f ) +
f2d(e)</p>
        <p>X
fi;fj2S
ovlp(fi; fj ) ;
(3)
in which ; &gt; 0 are the weights of the two objectives to tune, to achieve di erent
trade-o s.</p>
        <p>
          Maximizing q can be reformulated as an instance of QKP [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ] as follows. We
number the features in d(e) from f1 to fjd(e)j. By introducing a series of binary
variables xi for i = 1 jd(e)j to indicate whether fi is selected into the optimal
summary, the problem is formulated as
in which pij is the \pro t" achieved if both fi and fj are selected:
        </p>
        <p>pij xixj
jd(e)j
subject to X</p>
        <p>k
(4)
(5)</p>
        <p>
          We solve QKP using a state-of-the-art heuristic algorithm [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ].
        </p>
        <p>Acknowledgments. This work was supported in part by the NSFC under
Grant 61572247 and in part by the Fundamental Research Funds for the Central
Universities.</p>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Pisinger</surname>
            ,
            <given-names>D.: The</given-names>
          </string-name>
          <string-name>
            <surname>Quadratic Knapsack Problem - A Survey</surname>
          </string-name>
          .
          <source>Discrete Appl</source>
          . Math.
          <volume>155</volume>
          (
          <issue>5</issue>
          ),
          <volume>623</volume>
          {
          <fpage>648</fpage>
          (
          <year>2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Stoilos</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stamou</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kollias</surname>
            ,
            <given-names>S.:</given-names>
          </string-name>
          <article-title>A String Metric for Ontology Alignment</article-title>
          . In: Gil,
          <string-name>
            <given-names>Y.</given-names>
            ,
            <surname>Motta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            ,
            <surname>Benjamins</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.R.</given-names>
            ,
            <surname>Musen</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.A. (eds.) ISWC</surname>
          </string-name>
          <year>2005</year>
          .
          <article-title>LNCS</article-title>
          , vol.
          <volume>3729</volume>
          , pp.
          <volume>624</volume>
          {
          <fpage>637</fpage>
          . Springer, Berlin Heidelberg (
          <year>2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Xu</surname>
          </string-name>
          , D., Cheng, G.,
          <string-name>
            <surname>Qu</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Facilitating Human Intervention in Coreference Resolution with Comparative Entity Summaries</article-title>
          . In: Presutti, V.,
          <string-name>
            <surname>d'Amato</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gandon</surname>
          </string-name>
          , F.,
          <string-name>
            <surname>d'Aquin</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Staab</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tordai</surname>
            ,
            <given-names>A</given-names>
          </string-name>
          . (eds.)
          <article-title>ESWC 2014</article-title>
          .
          <article-title>LNCS</article-title>
          , vol.
          <volume>8465</volume>
          , pp.
          <volume>535</volume>
          {
          <fpage>549</fpage>
          . Springer International Publishing,
          <string-name>
            <surname>Switzerland</surname>
          </string-name>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Yang</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chu</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          :
          <article-title>An E ective GRASP and Tabu Search for the 0-1 Quadratic Knapsack Problem</article-title>
          .
          <source>Comput. Oper. Res</source>
          .
          <volume>40</volume>
          (
          <issue>5</issue>
          ),
          <volume>1176</volume>
          {
          <fpage>1185</fpage>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>