<!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>Summarizing Entities using Distantly Supervised Information Extractors</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Travis Wolfe</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>Annabelle Carrell</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Mark Dredze</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Benjamin Van Durme</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Google, Mountain View</institution>
          ,
          <addr-line>CA</addr-line>
          ,
          <country country="US">USA</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Johns Hopkins University</institution>
          ,
          <addr-line>Baltimore MD</addr-line>
          ,
          <country country="US">USA</country>
        </aff>
      </contrib-group>
      <fpage>51</fpage>
      <lpage>58</lpage>
      <abstract>
        <p>We describe entity summarization, the task of producing informative text summaries for an entity described across multiple documents in a collection. Existing (multi-)document summarization techniques are applied as baselines to this task, which we generalize to allow for joint information extraction and summarization. Through user evaluations across a variety of approaches, we discover what is most preferred in an entity summary. In particular we find that distantly supervised information extractors lead to significant improvements over lexical approaches, demonstrating the utility of extraction technologies for a task other than knowledge base population.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>Work was completed while at Johns Hopkins University.</p>
      <p>Copyright c by the paper’s authors. Copying permitted for private and academic purposes.</p>
      <p>In: Joint Proceedings of the First International Workshop on Professional Search (ProfS2018); the Second Workshop on Knowledge
Graphs and Semantics for Text Retrieval, Analysis, and Understanding (KG4IR); and the International Workshop on Data Search
(DATA:SEARCHâĂŹ18). Co-located with SIGIR 2018, Ann Arbor, Michigan, USA – 12 July 2018, published at http://ceur-ws.org
entities, but are subject to ambiguities often ignored in document summarization, and (2) modeling facts about
entities produces better summaries than lexical models of information content.</p>
      <p>
        Wikipedia is a popular entity-centric knowledge resource, but it only covers public information and has lower
coverage on less popular entities. Methods which extract facts and summaries from arbitrary natural language
sources (Wikipedia being just one) have a natural advantage in coverage. We use Wikipedia infoboxes as training
data for two aspects of our method with the goal of generalizing over entities mentioned in arbitrary natural
language. First, we use the types of facts1 in infoboxes as a signal as to what facts may people find important
to quickly glean about an entity. Second, we use the tokens of facts in infoboxes as distant supervision [
        <xref ref-type="bibr" rid="ref2 ref21">2, 21</xref>
        ]
for fact extractors which can nominate information rich sentences to include in a summary. We evaluate the
generated summaries via human preference judgments, finding that they are significantly more informative than
lexical methods drawn from other summarization tasks.
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>Entity Summarization Task</title>
      <p>The goal of summarization in general is to take a collection of documents such as news articles, books,
financial reports, scientific papers, or encyclopedia entries and produce a short and informative summary. Entity
summarization is the case where the summary has an entity which serves as its subject.</p>
      <p>
        The first step in entity summarization is finding a suitable set of source texts related to the subject. There
are a variety of methods for finding source texts depending on how the subject is specified, such as providing an
article about the subject [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ], or free text queries [
        <xref ref-type="bibr" rid="ref26">26</xref>
        ]. In this work we address the basic case where a subject
is specified as a disambiguated entity identifier and rely on prior work to identify all articles in a news corpus
which mention the subject, c.f. §6.
      </p>
      <p>
        Given a set of texts which contain the subject has been nominated, the text must be analyzed at the mention
level to identify places where the subject is mentioned, which is related to work on entity linking [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ], cross
document coreference resolution [
        <xref ref-type="bibr" rid="ref23 ref27">27, 23</xref>
        ], and entity mention search [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. Sentences which contain mentions of the
subject are the basic inputs needed for an extractive summarization techniques, which we use as a baseline in
§6. Richer use of mentions of the subject, such fact extraction §4 or related entity analysis §5 can be used to
extract deeper features used to quantify sentences’ information utility.
      </p>
      <p>
        Finally, a summarization model must aggregate all of the subject mentions into a summary with length
constraints. This step involves weighing a variety of concerns for what makes a good summary. Sentences in
the summary must be relevant to the subject. This distinguishes entity summarization from (multi-) document
[
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] summarization where all the input sentences are assumed to be relevant to the output. Similar to other
summarization techniques [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ], the summary should not be repetitive, or alternatively it should fit as much
information as the textual limit allows [
        <xref ref-type="bibr" rid="ref4 ref9">4, 9</xref>
        ]. The summary should be coherent and fluent, for example ensuring
that all pronouns have easily interprettable referents. We discuss our summarization model in §3.
3
      </p>
    </sec>
    <sec id="sec-3">
      <title>Summarization Model</title>
      <p>Our approach begins by assuming a baseline notion of a sentence’s relevance to the subject: whether the subject
is explicitly mentioned in the sentence. Given this (potentially large) subset of sentences, our model is an
extractive summarization model which focuses on methods for quantifying the value of information contained
in sentences and the uncertainty associated with extracting it. For now we will discuss the model abstractly in
terms of concepts, or discrete pieces of information mentioned in the source sentences. Later in §4 and §5 we will
describe implementations for these concepts.</p>
      <p>
        The model described in [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] provides an extensible framework for extractive summarization based on the
appearance of concepts, each of which has a utility to the reader and a list of locations it was mentioned. Their
model is declarative: it describes an objective to be maximized rather than an heuristic algorithm for finding
good solutions [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ]. Modern solvers can perform efficient inference, making this model very scalable.
      </p>
      <p>
        We extend the model of [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] in order to allow for uncertainty over the presence of concepts. Lexical models of
information content have the advantage of lacking this uncertainty, but they cannot quantify information content
in terms of facts which which are inferred through natural language understanding. To handle this uncertainty
our model incorporates MAP inference over classifier predictions.
      </p>
      <p>Both models find a summary of maximal utility which respects a length constraint using similar integer linear
program (ILP) formulations presented in Figure 1, where:</p>
      <p>1We invoke the type/token distinction for “facts" where a fact type is a relation like BornIn(x: Person, y: Location), and a
fact token is a particular fact like BornIn(Justin_Trudeau, Ottawa_Canada).
max X wici
s;c i
s:t: X lj sj
j</p>
      <p>L
ci</p>
      <p>ci
sj Occij
X sj Occij</p>
      <p>j
ci 2 f0; 1g 8i
sj 2 f0; 1g 8j
max X wici + eij log pij
s;c;e i
s:t: X lj sj</p>
      <p>j
sj eij
X sj eij
j
ci</p>
      <p>L
ci
ci 2 f0; 1g 8i
sj 2 f0; 1g 8j
eij 2 f0; 1g 8i; j
(7)
(8)
(9)
(10)
(11)
(12)
(13)
wi is a weight, or utility, for including the ith concept in the summary
ci is a binary variable indicating whether the ith concept is included in the summary
Occij is a binary value indicating that sentence j contains concept i
eij is a binary variable indicating that sentence j contains concept i
pij the extraction models probability estimate that sentence j contains concept i
sj is a binary variable indicating that the summary contains sentence j</p>
      <p>
        We use [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] as a baseline with word bigrams as concepts. wi is computed in the same fashion as computing
a tf-idf vector for bigrams. [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] report that they didn’t need to use idf weighting, but in this work it appeared
to help during development. One reason could be that we are summarizing a great deal more material than
in the TAC summarization task. There, systems received 10 articles of source text, whereas here we take all
mentions of an entity in ClueWeb09 (which can be over 1 million tokens for common entities). With so many
choices, optimal solutions often include odd sentences with abnormal amounts of frequent bigrams which do not
contribute to good summaries.
      </p>
      <p>In the next two sections we will describe two new concept definitions. We found that that using more than
one type of concept in the same model made it difficult to balance the influence of each concept type using linear
coefficients per concept type. There is significant variation across summary subjects of what the utility scale
is for one type of concepts versus another. We found that we could make our model attendant to each type of
concept for most queries by normalizing each concept to have unit weight. More precisely, if a concept type is a
set of indices T , we ensure that Pi2T wi = 1 8T .</p>
      <p>Additionally we found that in some cases the costs outweighed the utility of the concepts when using our
default of = 1. In other cases this might be worth knowing (i.e. “we can’t infer much about this entity given
their mentions”), but in our case we would like the best summary which hits the length limit. If our system
produces an empty summary, we halve and re-run optimization.
4</p>
    </sec>
    <sec id="sec-4">
      <title>Infobox Distant Supervision</title>
      <p>A natural way to model the informativeness of an entity summary is to count the number of facts contained
in the summary. Some facts matter more than others, e.g. where a person was born is more important than
whether a university has an even or odd number of students. To determine which facts are informative we use
Wikipedia infoboxes, a curated set of facts about an entity. These facts cover a wide range of types of entities
and express things like which countries were affected by an earthquake, what company manufactures a drug, or
where a person was born. Because they consume two finite resources, the time required by a person to write
them down and the space at the top of a Wikipedia article, it is safe to conclude that these facts have utility.</p>
      <p>The difficulty in using facts as concepts in our summarization model is that our systems can’t observe facts
directly, they must be extracted from text, requiring relation extractors for infobox facts. Therefore, we perform
textual relation extraction to discover concepts that are worth including in our summaries. We build relation
extractors using distant supervision. As relation extraction relates to the utility and costs described in §3, we
assume each mention of a relation (infobox fact) has unit utility and the extraction cost is the extractor’s surprisal
(computed using the MAP estimate of precision).</p>
      <p>We train relation extractors using distant supervision using Wikipedia infoboxes from DBpedia as a source of
true facts (our KB). One goal of this work is to ask whether relation extractions are a useful signal in an entity
summarization system. As such, we implement a simple and efficient distant supervision method which is similar
to but distinct from a few previous works.</p>
      <p>
        When training a relation extractor via distant supervision, instance (sentence) level annotations are not
available. Successful distant supervision methods are ones which do a good job inferring which sentences may
contain a relation mention versus which actually do. Some approaches address this with generative latent variable
models [
        <xref ref-type="bibr" rid="ref28">28</xref>
        ]. Others make plausible but conservative assumptions about the data such as “at least one aligned
sentence commits to a fact” [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ]. Another category of methods use feature pooling (over sentences) to get around
the sentence-level inference task. Feature pooling can take the form of unioning binary features on sentences
into binary features on entity pairs [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ] or neural network approaches like taking the pointwise mean or max of
learned features [
        <xref ref-type="bibr" rid="ref30">30</xref>
        ]. There has been extensive work on distant supervision for relation extraction [
        <xref ref-type="bibr" rid="ref14 ref24 ref28 ref30">14, 28, 24, 30</xref>
        ]
inter alia. In this work we extend the unioned binary features aspect of the model of [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ], but couple it with
a feature induction technique to find more linguistically plausible and expressive extractors based on feature
conjunctions. Due to the conjunctive and rich nature of these features, we distinguish them by calling them
extractors.
      </p>
      <p>
        Extractors are pairs of a relation and a syntactic fragment, similar to the shortest dependency fragments used in
[
        <xref ref-type="bibr" rid="ref24">24</xref>
        ]. Generalizing shortest paths to syntactic fragments (sets of dependency edges) allows extractors to detect the
presence of linguistic phenomenon like negation and quantification which make extractions problematic. Because
there are many possible extractors and enumerating and scoring all of them is computationally prohibitive, we use
a feature induction technique to grow full extractors from shortest dependency paths most frequent in positive
distantly supervised examples. This induction technique approximately finds the best extractors as measured by
pointwise mutual information between extracted entity pairs and facts for an extractor’s relation.
      </p>
      <p>We combine the predictions of extractors using a precision-ranked-rules framework which has been successfully
employed on tasks like coreference resolution named entity recognition, and part of speech tagging. We estimate
each extractor’s confidence/surprisal using a beta-binomial model where the observations are the same as for
computing PMI, co-occurrences of extracted entity pairs and facts in the KB. At prediction time, our model
assigns the highest probability of a relation which was supported by any extractor which fires with that relation.
5</p>
    </sec>
    <sec id="sec-5">
      <title>Related Entities as Concepts</title>
      <p>We introduce a new concept definition: related entities. We started with lexical concepts, which are trivial to
extract and have many ambiguity and sparsity issues, and then moved to factual concepts, which are difficult
to extract but closely track information content. The purpose of related entities is to be a compromise. Entity
disambiguation methods are more reliable than relation extraction methods and offer some of the information
that factual concepts capture.</p>
      <p>Take the example of summarizing a company. Their most related entities will be companies they do business
with, high-level employees, products they make, and relevant regulatory bodies. Even if the summarization
model does not know what the relation between the query and these related entities is, it can still assign them
high utility on account of their association. Related entities are also useful for disambiguation. For example, if
there were two “Michael Jordan" entities, a powerful disambiguation method (for summarization) is to include
mentions of “Scottie Pippen” or “David Blei”.</p>
      <p>This leads to the question of how to infer what entities are related to a query from text. In cases where the
text is a part of communications like emails which have a sender and receivers, a graph of associated entities is
fairly easy to create. We are primarily interested in sources which do not have senders and receivers, but we
have found that the presence of two entities in the same sentences is a good source of evidence of association.
Frequency alone can be misleading though. For example news agencies often report on many entities, and are
thus mentioned frequently but are not associated with the entities they report about. We found that the same
idf (i) correction applied to lexical concepts works well for related entity concepts too.</p>
      <p>Given the utility of related entity concepts, we set the extraction cost for each mention of a related entity
equal to the number of words between the query and related entity mentions divided by 10.
6</p>
    </sec>
    <sec id="sec-6">
      <title>Experiments</title>
      <p>We hypothesize that using infobox relations as concepts will produce the most informative summaries out of
the concept types outlined. Our experiments compare summaries containing infobox relations with summaries
containing other concept combinations, defined as different systems.</p>
      <p>A system is a set of concept definitions. We denote the baseline method of word bigrams as w, the infobox
relation method as s (§4), and the related entities method as e (§5). Systems with two types of concepts are
denoted with concatenation, e.g. s + e = se. In total there are 7 systems: [e, s, w, es, sw, ew, esw].</p>
      <p>
        We constructed a dataset of entities taken from the ClueWeb09 dataset [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] with the entity linking annotations
provided by FACC1 [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. This data has over 340m documents and 5.1b entity mentions which are resolved to
Freebase MIDs. We partition our train, dev, and test sets by entity. We partition all entities in FACC1 into
buckets by log frequency in order to include a balanced set of rare and frequent entities. For each
sufficientlysized bucket we selected 3800 train, 100 dev, and 100 test entities. We generate summaries of length L 2
f20; 40; 80; 160g words for each entity and average our results over all performance at every length.
      </p>
      <p>
        To evaluate our methods we adopt methods from machine translation evaluation [
        <xref ref-type="bibr" rid="ref25">25</xref>
        ] which are based on
human comparisons of system outputs. For each entity in our evaluation set, each summary length, and each
pair of systems which produce a summary, we present Amazon Mechanical Turk annotators with a choice of
which summary is more informative.
      </p>
      <p>
        Given pairwise system preferences, we arrive at statistical inferences in two ways. If there are many systems
competing, we use the TrueSkill algorithm [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] to infer the skill, a parameter which determines the likelihood that
any one system will produce a more informative summary than another system, which we use to rank systems.
If there are only two systems, we prefer the 2 test for better statistical efficiency.
7
      </p>
    </sec>
    <sec id="sec-7">
      <title>Results</title>
      <p>We can decompose the set of concepts which w is trying to preserve into entity concepts and non-entity
concepts. While e is a natural replacement for the entity concepts in w, it is unclear how useful the non-entity
concepts are. To quantify this, we defined a new set of concepts v which are the ngram concepts which do
not overlap with any entity mention. We treat them the same as w concepts and weigh them via tf-idf. This
information should be orthogonal to entities, indicating that perhaps ev might have fewer duplication problems
compared to ew.</p>
      <p>In Table 1 we performed a head-to-head evaluation between systems which use w concepts and the
corresponding system with v instead. We produced a summary for both concept definitions and asked annotators
which they preferred when the summaries were different. We see that in every case the v model performs worse,
most frequently by statistically significant amount. This is further evidence that ngrams are not a sufficient
method for modeling information beyond what named entities already capture. This highlights the effectiveness
of the s concept definitions: s uses only non-entity information and performs significantly better than the strong
entity baseline.
8</p>
    </sec>
    <sec id="sec-8">
      <title>Related Work</title>
      <p>
        There is a related line of work on entity summarization where the output is a set of facts or triples in a knowledge
base [
        <xref ref-type="bibr" rid="ref12 ref29 ref5">5, 12, 29</xref>
        ]. These methods compute the importance of facts connected to a knowledge base entity using
graph-based methods. This work focuses on producing textual summaries rather than triples and uses repetition
in text or presence in an infobox as an orthogonal signal for a concept or fact’s utility. Additionally this work
is concerned with extracting facts from text rather than ranking facts in a KB. The TREC Entity track
(20092011) [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] addressed the task of finding related entities to a query entity, which was treated as its own information
retrieval task. Our work shows that related entities are an effective means of producing summaries. [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] performed
TAC topic-based summarization using links into Wikipedia to determine how popular or salient an entity is,
and thus how much utility should be assigned to including it in a summary. This method of estimating utility is
directly applicable to our summarization model and is similar to our definition of related entities, but we do not
assume that one has access to Wikipedia logs to determine popularity. [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ] created entity-centric summaries for
companies on Twitter, where the goal was highlight positive and negative sentiment, using hashtags as concepts.
Similarly, [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] performs sentiment analysis and summarization jointly to create “micro reviews" on services like
Yelp. [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] construct entity graphs similar to this work, but their goal is to summarize a path of entities in this
graph rather than particular nodes. That work does not explicitly model concepts or produce summaries of a
given length and only included a small scale evaluation of 27 entity chains.
9
      </p>
    </sec>
    <sec id="sec-9">
      <title>Conclusion</title>
      <p>We have investigated how existing extractive summarization methods can be adapted to produce entity
summaries and compared the effectiveness of these methods to novel entity-centric concept definitions. To enable
summarization in the presence of noisy extractors, we described a new ILP model which jointly performs MAP
inference over extractions and summarization choices. When combined with our concept definitions this
significantly outperformed document-centric extractive summarization baselines, as measured through a evaluation
techniques from machine translation which make evaluating summarization techniques cheaper and more
statistically powerful.</p>
      <p>Distant supervision of Wikipedia infobox facts allowed us to train extractors which found useful
information to incorporate into summaries, outperforming all other methods. Our experiments indicate that entity
co-occurrences explain most of the signal that previous methods had exploited. By modeling entities
explicitly through linking, we better weigh the importance of entities and avoid concept duplication and ambiguity
issues introduced when only using words. For non-entity signal, we showed that our distant supervision model
greatly outperforms previous methods. Together these results illustrate that while the community has not
perfected automatic knowledge base construction (converting documents into fully structured repositories), existing
technologies can be used today in helping users isolate text content that they will find worth reading.</p>
    </sec>
    <sec id="sec-10">
      <title>Acknowledgement</title>
      <p>This work was supported in part by the Human Language Technology Center of Excellence (HLTCOE) and the
DARPA LORELEI program.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <surname>Balog</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Serdyukov</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vries</surname>
            ,
            <given-names>A.P.</given-names>
          </string-name>
          d.:
          <article-title>Overview of the trec 2010 entity track</article-title>
          .
          <source>Technical report, DTIC Document</source>
          (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <surname>Bunescu</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mooney</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          :
          <article-title>Learning to extract relations from the web using minimal supervision</article-title>
          .
          <source>In: Proceedings of the 45th Annual Meeting of the Association of Computational Linguistics</source>
          , Prague, Czech Republic, Association for Computational Linguistics (
          <year>June 2007</year>
          )
          <fpage>576</fpage>
          -
          <lpage>583</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <surname>Callan</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hoy</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yoo</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhao</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>Clueweb09 data set (</article-title>
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4] Carbonell, J.,
          <string-name>
            <surname>Goldstein</surname>
            ,
            <given-names>J.:</given-names>
          </string-name>
          <article-title>The use of mmr, diversity-based reranking for reordering documents and producing summaries</article-title>
          .
          <source>In: Proceedings of the 21st annual international ACM SIGIR conference on Research and development in information retrieval</source>
          ,
          <source>ACM</source>
          (
          <year>1998</year>
          )
          <fpage>335</fpage>
          -
          <lpage>336</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5] Cheng, G.,
          <string-name>
            <surname>Tran</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Qu</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          <article-title>In: RELIN: Relatedness and Informativeness-Based Centrality for Entity Summarization</article-title>
          . Springer Berlin Heidelberg, Berlin, Heidelberg (
          <year>2011</year>
          )
          <fpage>114</fpage>
          -
          <lpage>129</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <surname>Chhabra</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Entity-centric summarization: Generating text summaries for graph snippets</article-title>
          .
          <source>In: Proceedings of the 23rd International Conference on World Wide Web. WWW '14 Companion</source>
          , New York, NY, USA, ACM (
          <year>2014</year>
          )
          <fpage>33</fpage>
          -
          <lpage>38</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>De</given-names>
            <surname>Vries</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.P.</given-names>
            ,
            <surname>Vercoustre</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.M.</given-names>
            ,
            <surname>Thom</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.A.</given-names>
            ,
            <surname>Craswell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            ,
            <surname>Lalmas</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.</surname>
          </string-name>
          :
          <article-title>Overview of the inex 2007 entity ranking track</article-title>
          .
          <source>In: International Workshop of the Initiative for the Evaluation of XML Retrieval</source>
          , Springer (
          <year>2007</year>
          )
          <fpage>245</fpage>
          -
          <lpage>251</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <surname>Gabrilovich</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ringgaard</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Subramanya</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Facc1: Freebase annotation of clueweb corpora, version 1 (release date</article-title>
          <year>2013</year>
          -
          <volume>06</volume>
          -26, format version 1,
          <source>correction level 0)</source>
          . Note: http://lemurproject. org/clueweb09/FACC1/Cited by 5 (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <surname>Gillick</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Favre</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>A scalable global model for summarization</article-title>
          .
          <source>In: Proceedings of the Workshop on Integer Linear Programming for Natural Langauge Processing. ILP '09</source>
          ,
          <string-name>
            <surname>Stroudsburg</surname>
          </string-name>
          , PA, USA, Association for Computational Linguistics (
          <year>2009</year>
          )
          <fpage>10</fpage>
          -
          <lpage>18</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <surname>Goldstein</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mittal</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          , Carbonell, J.,
          <string-name>
            <surname>Kantrowitz</surname>
            ,
            <given-names>M.:</given-names>
          </string-name>
          <article-title>Multi-document summarization by sentence extraction</article-title>
          .
          <source>In: Proceedings of the 2000 NAACL-ANLPWorkshop on Automatic Summarization - Volume 4. NAACL-ANLP-AutoSum '00</source>
          ,
          <string-name>
            <surname>Stroudsburg</surname>
          </string-name>
          , PA, USA, Association for Computational Linguistics (
          <year>2000</year>
          )
          <fpage>40</fpage>
          -
          <lpage>48</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <surname>Gong</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Qu</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tian</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Summarization using wikipedia</article-title>
          .
          <source>In: TAC</source>
          . (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <surname>Gunaratna</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Thirunarayan</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sheth</surname>
            ,
            <given-names>A.P.:</given-names>
          </string-name>
          <article-title>FACES: diversity-aware entity summarization using incremental hierarchical conceptual clustering</article-title>
          . In Bonet,
          <string-name>
            <given-names>B.</given-names>
            ,
            <surname>Koenig</surname>
          </string-name>
          , S., eds.
          <source>: Proceedings of the Twenty-Ninth AAAI Conference on Artificial Intelligence, January 25-30</source>
          ,
          <year>2015</year>
          , Austin, Texas, USA., AAAI Press (
          <year>2015</year>
          )
          <fpage>116</fpage>
          -
          <lpage>122</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <surname>Herbrich</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Minka</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Graepel</surname>
          </string-name>
          , T.:
          <article-title>TrueskillTM: A bayesian skill rating system</article-title>
          .
          <source>In: Proceedings of the 19th International Conference on Neural Information Processing Systems. NIPS'06</source>
          , Cambridge, MA, USA, MIT Press (
          <year>2006</year>
          )
          <fpage>569</fpage>
          -
          <lpage>576</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <surname>Hoffmann</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          , Zhang,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Ling</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            ,
            <surname>Zettlemoyer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Weld</surname>
          </string-name>
          ,
          <string-name>
            <surname>D.S.</surname>
          </string-name>
          :
          <article-title>Knowledge-based weak supervision for information extraction of overlapping relations</article-title>
          .
          <source>In: Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies - Volume 1. HLT '11</source>
          ,
          <string-name>
            <surname>Stroudsburg</surname>
          </string-name>
          , PA, USA, Association for Computational Linguistics (
          <year>2011</year>
          )
          <fpage>541</fpage>
          -
          <lpage>550</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <surname>Ji</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Grishman</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dang</surname>
            ,
            <given-names>H.T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Griffitt</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ellis</surname>
          </string-name>
          , J.:
          <article-title>Overview of the tac 2010 knowledge base population track</article-title>
          .
          <source>In: Third Text Analysis Conference (TAC</source>
          <year>2010</year>
          ). Volume
          <volume>3</volume>
          . (
          <year>2010</year>
          )
          <fpage>3</fpage>
          -
          <lpage>13</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>Larocca</given-names>
            <surname>Neto</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Santos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.D.</given-names>
            ,
            <surname>Kaestner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.A.A.</given-names>
            ,
            <surname>Freitas</surname>
          </string-name>
          ,
          <string-name>
            <surname>A.A.</surname>
          </string-name>
          :
          <article-title>Document clustering and text summarization</article-title>
          . In Mackin, N., ed.
          <source>: Proceedings of the 4th International Conference Practical Applications of Knowledge Discovery and Data Mining (PADD-2000)</source>
          , London, The Practical Application Company (
          <year>January 2000</year>
          )
          <fpage>41</fpage>
          -
          <lpage>55</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <surname>Mason</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gaska</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Durme</surname>
            ,
            <given-names>B.V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Choudhury</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hart</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dolan</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Toutanova</surname>
          </string-name>
          , K., Mitchell, M.:
          <article-title>Microsummarization of online reviews: An experimental study</article-title>
          .
          <source>In: Proceedings of the Thirtieth AAAI Conference on Artificial Intelligence, February 12-17</source>
          ,
          <year>2016</year>
          , Phoenix, Arizona, USA. (
          <year>2016</year>
          )
          <fpage>3015</fpage>
          -
          <lpage>3021</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <surname>McDonald</surname>
            ,
            <given-names>R.:</given-names>
          </string-name>
          <article-title>A study of global inference algorithms in multi-document summarization</article-title>
          .
          <source>In: European Conference on Information Retrieval</source>
          , Springer (
          <year>2007</year>
          )
          <fpage>557</fpage>
          -
          <lpage>564</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <surname>McNamee</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dang</surname>
          </string-name>
          , H.T.:
          <article-title>Overview of the tac 2009 knowledge base population track</article-title>
          .
          <source>In: Text Analysis Conference (TAC)</source>
          . Volume
          <volume>17</volume>
          . (
          <year>2009</year>
          )
          <fpage>111</fpage>
          -
          <lpage>113</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <surname>Meng</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wei</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhou</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          :
          <article-title>Entity-centric topic-oriented opinion summarization in twitter</article-title>
          .
          <source>In: Proceedings of the 18th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining. KDD '12</source>
          , New York, NY, USA, ACM (
          <year>2012</year>
          )
          <fpage>379</fpage>
          -
          <lpage>387</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <surname>Mintz</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bills</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Snow</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jurafsky</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Distant supervision for relation extraction without labeled data</article-title>
          .
          <source>In: Proceedings of the Joint Conference of the 47th Annual Meeting of the ACL and the 4th International Joint Conference on Natural Language Processing of the AFNLP: Volume 2 -</source>
          Volume 2. ACL '
          <volume>09</volume>
          ,
          <string-name>
            <surname>Stroudsburg</surname>
          </string-name>
          , PA, USA, Association for Computational Linguistics (
          <year>2009</year>
          )
          <fpage>1003</fpage>
          -
          <lpage>1011</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <surname>Nenkova</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Passonneau</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>McKeown</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          :
          <article-title>The pyramid method: Incorporating human content selection variation in summarization evaluation</article-title>
          .
          <source>ACM Trans. Speech Lang. Process</source>
          .
          <volume>4</volume>
          (
          <issue>2</issue>
          ) (May
          <year>2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <surname>Pradhan</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ramshaw</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Marcus</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Palmer</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Weischedel</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xue</surname>
          </string-name>
          , N.:
          <article-title>Conll-2011 shared task: Modeling unrestricted coreference in ontonotes</article-title>
          .
          <source>In: Proceedings of the Fifteenth Conference on Computational Natural Language Learning: Shared Task, Association for Computational Linguistics</source>
          (
          <year>2011</year>
          )
          <fpage>1</fpage>
          -
          <lpage>27</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <surname>Riedel</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yao</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>McCallum</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Marlin</surname>
            ,
            <given-names>B.M.:</given-names>
          </string-name>
          <article-title>Relation extraction with matrix factorization and universal schemas</article-title>
          . In Vanderwende, L.,
          <string-name>
            <surname>III</surname>
          </string-name>
          , H.D.,
          <string-name>
            <surname>Kirchhoff</surname>
          </string-name>
          , K., eds.:
          <article-title>HLT-NAACL, The Association for Computational Linguistics (</article-title>
          <year>2013</year>
          )
          <fpage>74</fpage>
          -
          <lpage>84</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <surname>Sakaguchi</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Post</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Durme</surname>
            ,
            <given-names>B.V.</given-names>
          </string-name>
          :
          <article-title>Efficient elicitation of annotations for human evaluation of machine translation</article-title>
          .
          <source>In: Proceedings of the Ninth Workshop on Statistical Machine Translation, WMT@ACL</source>
          <year>2014</year>
          , June 26-27,
          <year>2014</year>
          , Baltimore, Maryland, USA, The Association for Computer Linguistics (
          <year>2014</year>
          )
          <fpage>1</fpage>
          -
          <lpage>11</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <surname>Salton</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Allan</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Buckley</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Approaches to passage retrieval in full text information systems</article-title>
          .
          <source>In: Proceedings of the 16th Annual International ACM SIGIR Conference on Research and Development in Information Retrieval. SIGIR '93</source>
          , New York, NY, USA, ACM (
          <year>1993</year>
          )
          <fpage>49</fpage>
          -
          <lpage>58</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <surname>Sundheim</surname>
            ,
            <given-names>B.M.:</given-names>
          </string-name>
          <article-title>Overview of results of the muc-6 evaluation</article-title>
          . In
          <source>: Proceedings of a workshop on held at Vienna</source>
          , Virginia: May 6-
          <issue>8</issue>
          ,
          <year>1996</year>
          , Association for Computational Linguistics (
          <year>1996</year>
          )
          <fpage>423</fpage>
          -
          <lpage>442</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [28]
          <string-name>
            <surname>Surdeanu</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tibshirani</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nallapati</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Manning</surname>
          </string-name>
          , C.D.
          <article-title>: Multi-instance multi-label learning for relation extraction</article-title>
          .
          <source>In: Proceedings of the 2012 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning. EMNLP-CoNLL '12</source>
          ,
          <string-name>
            <surname>Stroudsburg</surname>
          </string-name>
          , PA, USA, Association for Computational Linguistics (
          <year>2012</year>
          )
          <fpage>455</fpage>
          -
          <lpage>465</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          [29]
          <string-name>
            <surname>Thalhammer</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Knuth</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sack</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          <article-title>In: Evaluating Entity Summarization Using a Game-Based Ground Truth</article-title>
          . Springer Berlin Heidelberg, Berlin, Heidelberg (
          <year>2012</year>
          )
          <fpage>350</fpage>
          -
          <lpage>361</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          [30]
          <string-name>
            <surname>Verga</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Neelakantan</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>McCallum</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Generalizing to unseen entities and entity pairs with row-less universal schema</article-title>
          .
          <source>In: Proceedings of the 15th Conference of the European Chapter of the Association for Computational Linguistics: Volume</source>
          <volume>1</volume>
          ,
          <string-name>
            <surname>Long</surname>
            <given-names>Papers</given-names>
          </string-name>
          , Valencia, Spain, Association for Computational Linguistics (
          <year>April 2017</year>
          )
          <fpage>613</fpage>
          -
          <lpage>622</lpage>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>