<!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>LaSTUS/TALN @ CLSciSumm-17: Cross-document Sentence Matching and Scienti c Text Summarization Systems</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Ahmed Abura'ed</string-name>
          <email>ahmed.aburaed@upf.edu</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Luis Chiruzzo</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Horacio Saggion</string-name>
          <email>horacio.saggion@upf.edu</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Pablo Accuosto</string-name>
          <email>pablo.accuosto@upf.edu</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Alex Bravo</string-name>
          <email>alex.bravo@upf.edu</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Universidad de la Republica Facultad de Ingenier a, Instituto de Computacion Montevideo</institution>
          ,
          <country country="UY">Uruguay</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Universitat Pompeu Fabra Large-Scale Text Understanding Systems Lab, TALN / DTIC Barcelona</institution>
          ,
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>In recent years there has been an increasing interest in approaches to scienti c summarization that take advantage of the citations a research paper has received in order to extract its main contributions. In this context, the CL-SciSumm 2017 Shared Task has been proposed to address citation-based information extraction and summarization. In this paper we present several systems to address three of the CL-SciSumm tasks. Notably, unsupervised systems to match citing and cited sentences (Task 1A), a supervised approach to identify the type of information being cited (Task 1B), and a supervised citation-based summarizer (Task 2).</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Although scienti c summarization has always been an important research topic
in the area of natural language processing (NLP) [
        <xref ref-type="bibr" rid="ref11">11, 17, 23, 24</xref>
        ] in recent years
new summarization approaches have emerged which take advantage of the
citations that a scienti c article has received in order to extract and summarize
its main contributions [
        <xref ref-type="bibr" rid="ref1">18, 19, 1</xref>
        ]. It is in this context that a series of challenges
have emerged to boost research in the area of citation-based scienti c text
summarization. Notably, in 2014, the BioSumm 2014 evaluation challenge, and in
2014 and 2016 the CL-SciSumm 2016 challenges [
        <xref ref-type="bibr" rid="ref5 ref7">5, 7</xref>
        ]. The 2017 edition of the
CL-SciSumm challenge [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] proposes to address the following shared tasks: given
a cluster of n documents where one is a reference paper and the n 1 remaining
documents are papers containing citations to it:
{ Task 1B: For each cited text span, identify which discourse facet it belongs
to, among: Aim, Hypothesis, Implication, Results, or Method.
{ Task 2: Finally, an optional task consists on generating a structured
summary of the reference paper with up to 250 words from the cited text spans.
      </p>
      <p>
        In this paper we report the systems developed at LaSTUS/TALN to
participate in CL-SciSumm 2017. They include four unsupervised systems based on
sentence similarity for Task 1A, one supervised approach for Task 1B, and one
supervised approach for Task 2. The systems for Tasks 1A and 1B follow the
approach reported in [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], where state-of-the-art performance was achieved for
Task 1A and almost state-of-the-art performance for Task 1B. The approach for
Task 2 follows the method described in [22] which, according to o cial results
[
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], was one of the top approaches in CL-SciSumm 2016.
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>Transforming the Source Documents into GATE</title>
    </sec>
    <sec id="sec-3">
      <title>Language Resources</title>
      <p>The organizers of the CL-SciSumm 2017 challenge provided training data
structured in clusters of reference and citing papers together with manual annotations
indicating, for each citance, the text span(s) in the reference paper that best
represent the citance, as well as their corresponding facets. The training corpus
contains 30 clusters with an average of 17 papers per cluster. For each cluster
there are three manually created summaries of the reference paper: the author
abstract, a community-based abstract created using citation sentences, and a
human abstract created based on information from reference paper and citation
sentences. The test set has 10 clusters with 11 documents each, on average.</p>
      <p>
        In order to automatically process the clusters, we created, from the
documents in the training and test sets, GATE [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] les that include the information
provided in the manual annotations. The les corresponding to reference
papers were enriched with annotations covering the text spans being cited (with
the information corresponding to citances) and, conversely, in each citing paper
annotations were added for the provided citances (with the information
corresponding to the cited text spans). The annotations in the citing and reference
papers are linked by means of a unique identi er (formed by the concatenation
of citance number, reference paper id, citing paper id, and annotator).
      </p>
      <p>Based on these annotations we could easily build pairs of matching sentences
(Citing Paper Sentence, Reference Paper Sentence) and associate, to each pair,
the facet that the annotator considered the citation referred to (see Task 1B).
2.1</p>
      <sec id="sec-3-1">
        <title>Text Processing</title>
        <p>The tokenizer, sentence splitter, part-of-speech tagger, and lemmatizer available
in GATE's ANNIE3 component were used to initially process the documents,</p>
        <sec id="sec-3-1-1">
          <title>3 https://gate.ac.uk/ie/annie.html</title>
          <p>which were then further enriched with annotations obtained by means of the
Dr. Inventor (DRI) Text Mining Framework [20]. In particular, we obtained a
probability score for each sentence of having a particular rhetorical function in
the paper's discourse, among: Approach, Background, Challenge, Outcome and
FutureWork. The SUMMA library [21] was used to obtain normalized tf*idf
term vectors for the sentences. For each sentence in the reference paper we
computed and annotated its similarity to the sentences in the corresponding
citances by means of their cosine distance. For this, we used various vectorial
representations of the sentences, including SUMMA's tf*idf vectors and
pretrained word embeddings.
3</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Matching Citations to Reference Papers</title>
      <p>In this section we present the experiments aimed at detecting which sentence(s)
in the reference papers most accurately re ect each given citance.
3.1</p>
      <sec id="sec-4-1">
        <title>Word Embeddings Distance</title>
        <p>
          For the rst set of experiments we used the Google News embeddings4 (three
million words in 300 dimensional vectors trained using word2vec [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ] over a news
text corpus of 100 billion words) and the ACL Anthology Reference Corpus
embeddings [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ] (100 and 300 dimensional vectors trained over a corpus of ACL
papers [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ]). Words with similar meanings generate vectors that are close in the
embeddings space. From these vectors it is possible to create embeddings for
larger units such as phrases, sentences or paragraphs. A simple technique for
creating text embeddings that has achieved good results in tasks like
extractive summarization [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] and semantic classi cation [26] is to use the average{or
centroid{of the words contained in the texts as their vectorial representations.
The embeddings thus created tend to keep the proximity relation if the texts
they represent have related{close{words.
        </p>
        <p>We built embeddings for each citance in the citing papers by taking the
centroid of the embeddings of all the word contained in it. The same procedure
was used to build embeddings for each of the sentences of the reference paper.
We calculated the cosine distance for each pair of embeddings: one obtained from
each sentence in a reference paper and one corresponding to a citance that refers
to it. We experimented with di erent combinations of embeddings: using only
Google News vectors, using only ACL vectors (100 or 300 dimensions) and using
the concatenation of Google News and ACL vectors (400 or 600 dimensions).
We run several test considering as candidates the top two, ve, eight and ten
sentences from the reference papers most similar to the given citances. Since the
evaluation used for Task 1B uses the F score, we aimed at optimizing this metric.
We did this by saving 10 clusters from the training data for validation and using
20 clusters for training. The best performance for the validation set was achieved</p>
        <sec id="sec-4-1-1">
          <title>4 https://code.google.com/archive/p/word2vec/</title>
          <p>using the concatenation of Google and ACL-300 vectors and considering the two
top candidate sentences from the reference papers.
3.2</p>
        </sec>
      </sec>
      <sec id="sec-4-2">
        <title>Modi ed Jaccard</title>
        <p>We used a modi ed version of the Jaccard similarity index that takes into
consideration the inverted frequency of the word in a corpus instead of just the word
occurrences. For this experiment we calculated idf values of word stems using
both the training set and an ACL reference corpus of around 4,000 documents.
The modi ed Jaccard similarity between two text spans s1 and s2 is de ned
in equation 1. Our modi cation assigns greater weight to matching word stems
that are infrequent in the corpus, based on the idea that two text spans that
share infrequent words are more likely to be semantically related.</p>
        <p>M J (s1; s2) =</p>
        <p>Pt2s1\s2 2idf(t)
js1 [ s2j
(1)
3.3</p>
      </sec>
      <sec id="sec-4-3">
        <title>BabelNet Embeddings Distance</title>
        <p>
          BabelNet [
          <xref ref-type="bibr" rid="ref16">16</xref>
          ] is an ontology of concepts (synsets) that integrates many resources,
including Wikipedia and WordNet. We used a set of BabelNet embeddings [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ]
containing 2.5 million vectors trained over a corpus of 300 million words tagged
with BabelNet synsets.
        </p>
        <p>Using the Babelfy API,5 we obtained the list of BabelNet synsets associated
to each sentence of the corpus and used them to build sentence embeddings
analogously as we did with the word embeddings. The BabelNet embeddings
include many vectors for each synset (one for each lexicalization). We therefore
calculated the centroid of all the vectors associated to each synset to generate its
embedding. For this experiment we proceeded analogously to the word
embeddings experiment described above: we calculated embeddings for the citances and
for the sentences in the reference papers and then selected as candidates the top
N sentences according to their cosine distance to the citances. Based on the tests
against the validation corpus, the best results were again achieved considering
the two sentences from the reference papers most similar to the citances.
3.4</p>
      </sec>
      <sec id="sec-4-4">
        <title>Voting System</title>
        <p>We propose a system that leverages the best results obtained by the word
embeddings, Modi ed Jaccard and BabelNet embeddings systems: the top ve
candidates obtained for each of the systems are rst considered and then a voting
process chooses as candidates all the sentences that were selected by at least two
systems. If no sentence was chosen by at least two, only the top sentence selected
by the Modi ed Jaccard system6 is returned. Unlike the other systems described</p>
        <sec id="sec-4-4-1">
          <title>5 http://babelfy.org/guide</title>
          <p>6 Modi ed Jaccard was chosen as default as it was the system for which the best</p>
          <p>F-measures were obtained when run independently.
for this task{where a xed number of candidate sentences are returned{in this
case the number of sentences obtained is variable.</p>
          <p>Table 1 shows the performance of the results over the validation data. The
experiments are word embeddings (WE), Modi ed Jaccard (MJ), BabelNet
embeddings (BN) and the voting scheme (Voting). The best results over the
validation corpus are achieved by the voting system.
In this section we present experiments aimed at identifying the facets the cited
text spans belong to. We modeled pairs of reference and citance sentences as
feature vectors, which we then used to train classi cation algorithms that
determine whether a cited text span belongs to one of the prede ned facets. In
the next section we describe the set of features generated. For the classi cation
algorithms we relied on implementations included in the Weka machine learning
framework [27].
Sentence Position Features: The sentence position in a paper can inform
about the facet the sentence belongs to. For instance, sentences at the end of
the document would probably belong to the Result facet. We use three features
based on the location of the sentence in the reference document:
{ Sentence position: the position of the sentence in the reference paper;
{ Section sentence position: the position of the sentence in the section;
{ Facet position: ve binary features indicating whether the sentence is in a
section whose title is associated to one of the target facets (e.g., the word
\method" would indicate a section dealing with the facet Method).
Text Similarity Features: The more similar a text is to another the more
likely it is that they will be part of the same facet. We used two di erent tf*idf
vector representations of the sentences produced by the SUMMA library{one
based on word lemmas and one on BabelNet synsets{and computed their cosine
similarity. We also calculated the Jaccard and Modi ed Jaccard coe cients for
the lemmas, generating a total of four text similarity features.</p>
        </sec>
      </sec>
      <sec id="sec-4-5">
        <title>Rhetorical Category Probability Features: We mentioned in Section 2.1</title>
        <p>that the DRI Framework predicts the probability of a sentence being in one of
ve possible rhetorical categories. Even if they are di erent from our targeted
discourse facets, we believe that these probabilities could be informative for our
classi cation tasks and therefore also included them as features.
Dr Inventor Sentence Related Features: Other features obtained by means
of the DRI Framework that we believed could be of use in predicting a sentence
belonging to a particular facet include:
{ Citation marker: three features to represent the number of citation markers
in the reference sentence, citing sentence and the pair of sentences together;
{ Cause and e ect: two features to represent if the reference or citing sentence
participates in one or more causal relations;
{ Co-reference chains: three features to represent the number of nominals and
pro-nominals chained in the reference sentence, citing sentence and the pair
of sentences together.</p>
        <p>Scienti c Gazetteer Features: We generated a set of features based on Teufel's
action and concept lexicon. The lexicon contains 58 lists. Each one is used to
produce a feature which is the ratio of words in the sentence matching the list to
the number of words in the sentence. The features are computed for the reference
sentence, the citing sentence, and their combination, giving rise to 174 features.
Bag-of-word Features: four string features are produced to represent the
bigram lemmas, POS-tags bi-gram, lemmas and POS-tags for the combination of
the reference and the citing sentences.</p>
        <p>Based on these features we trained classi ers with 1,386 instances distributed
as follows: Aim (134), Implication (150), Result (262), Hypothesis (32), Method
(808). Considering the skewed distribution of the Method facet, we decided to
train two models: one binary classi er to predict whether the instance is a Method
or not and a multi-class classi er to identify one of the other facets in case it
was previously classi ed as not-Method. We evaluated the performance of several
classi cation algorithms including: SMO algorithm for support vector machines
(SMO), naive Bayes (NB), K-nearest neighbors (IBk), random committee (RC),
logistic regression (LR) and random forest (RF). We performed 10-fold cross
validation experiments with the training data in order to decide which algorithm to
use. The best results were obtained with the RF algorithm for the binary Method
classi er and the SMO for the multi-class classi er representing the non-Method
facet (Table 2).</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>Summarizing Scienti c Articles</title>
      <p>
        The proposed summarizer is a modi ed version of our 2016 summarization
system [22] with additional features. The approach is based on a patent
summarization method [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] which achieved state-of-the-art performance. It is a trainable
sentence scoring, sentence ranking and sentence extraction algorithm which
optimally combines the contribution of several numerical features to produce
sentence scores. The combination of feature-values is linear and the contribution of
each feature is learned using Weka's linear regression algorithm. The summarizer
relies on information computed by several tools.
      </p>
      <p>{ Each token (i.e., lemma) is weighted by its tf*idf, where idf values are
computed from training data;
{ For each sentence a vector of terms and normalized weights is created using
the previously computed weights (SUMMA vectors);
{ Using the ACL word embeddings, a vector is created for each sentence in
the document{average of the word embeddings of the words in the sentence
(ACL vectors);
{ Using the Google news word embeddings, a vector is created for each sentence
in the document{average of the word embeddings of the words in the sentence
(Google vectors);
{ Using the sentence vectors (SUMMA, ACL, Google), three centroids are
created for the document{each an average of the sentence vectors in the
whole document;
{ Using the sentence vectors (SUMMA, ACL, Google), three centroids are
created for the abstract of the document{each an average of the sentence
vectors in the abstract;
{ In the citing papers, token frequency and SUMMA, ACL, Google vectors are
also computed.</p>
      <p>
        The features to train the linear regression algorithm are described below. Text
similarity features are the result of comparing two vectors of the same type (e.g.,
SUMMA, ACL, or Google) using the cosine similarity function implemented in
SUMMA. Therefore three di erent feature values are always generated. The
reference paper features are as follows:
{ Sentence Abstract Similarity Scores: the similarity of a sentence vector to
the author abstract vectors (for SUMMA, ACL, Google vectors);
{ Sentence Centroid Similarity Scores: the similarity (SUMMA, ACL, Google)
of a sentence to the document centroid;
{ First Sentence Similarity Scores: the similarity (SUMMA, ACL, Google) of
a sentence to the vector of the rst sentence (e.g., the title of the reference
paper);
{ Position Score: the SUMMA implementation of the position method where
sentences at the beginning of the document have high scores and sentence
at the end of the document have low scores;
{ Position in Section Score: a score representing the position of the sentence
in the section of the document. Sentences in rst section get higher scores,
sentences in last section get low scores;
{ Sentence Position in Section Score: a position method applied to sentences
in each section of the document (sentence at the beginning of the section get
higher scores and sentences at the end of the section get lower scores);
{ Normalised Cue-phrase Score: the total number of cue-words in the sentence
divided by the total number of cue-words in the document. We have relied
on [25] formulaic expressions to implement our cue-phrase gazetteer lookup
procedure;
{ TextRank Normalized Scores: the SUMMA implementation of the TextRank
algorithm [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] but with a normalization procedure which yields values for
sentences between 0 and 1. Each score is computed using a di erent sentence
vector (SUMMA, ACL, and Google).
{ Term Frequency Score: we sum up the tf*idf values of all content words in
the sentence and the obtained value is normalized to yield a value between
0 and 1 which is computed using the set of scores from the whole document.
{ Citation Marker Score: the ratio of the number of citation markers in the
sentence to the total number of citation markers in the paper.
{ Rhetorical Class Probability Scores: the probability that the sentence belongs
to each DRI rhetorical class.
      </p>
      <p>The citing paper features are as follows:
{ Citing Paper Maximum Similarity Scores: each reference paper sentence
vector is compared to each citance vector in each citing paper to get the
maximum possible cosine similarity (for SUMMA, ACL, and Google vectors);
{ Citing Paper Minimum Similarity Scores: each reference paper sentence
vector is compared to each citance vector in each citing paper to get the
minimum possible cosine similarity (for SUMMA, ACL, and Google vectors);
{ Citing Paper Average Similarity Scores: each reference paper sentence vector
is compared to each citance vector and the average cosine value obtained (for
SUMMA, ACL, and Google vectors);
The approach taken to rank sentences is to produce a cumulative value as the
weighted sum of features f1; :::fn using the following formula:
score(S) =
n
X wi fi
i=0
(2)
with S the sentence to score, fi the value of feature i and wi the weight
assigned to feature i. The SUMMA system is used to score the sentences once
the model has been created.</p>
      <p>
        As we stated before, the weights for each feature are learned from training
data and although the ideal score to be learn is in principle unknown, we
approximated it with training data. By relying on the gold standard summaries{(a)
the author abstract, (b) a human-written abstract, and (c) a community-based
abstract{we created di erent target scores. We compared, using cosine
similarity, each sentence vector in the reference paper with each vector in the summary
and used the maximum similarity values as the target score for the reference
paper (e.g., score(S)) for learning. This method produced nine di erent functions
to learn: SUMMA, ACL, and Google vectors times abstract, community, human
summaries. Note that other target functions are possible but we restricted the
number of systems to nine given time constraints. The number of instances used
to train the linear regression models was 6,372.
Before submission, we carried out a preliminary evaluation of the nine models
using 20 document clusters for training and eight document clusters for testing
(we could not use two clusters due to errors generated when processing some
of the documents in them). The evaluation framework adopted was to compare
each of the summaries generated by the model (9 models times 8 clusters = 72
abstracts) against each of the summary types given by the organizers: abstract,
community, and human. The comparison was carried out using ROUGE-2 and
ROUGE-SU4 [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] (following the con guration suggested by the task organizers).
Average results are presented in Table 3 where we highlight the best scores.
6
      </p>
    </sec>
    <sec id="sec-6">
      <title>Submissions to the Challenge and Results</title>
      <p>We submitted four runs for tasks 1A, each one applying one of the methods
described in Section 3, with the results obtained by the Method /No-Method
Facet Classi er described in Section 4 for Task 1B.</p>
      <p>The organizers of the challenge evaluated Task 1A considering the overlap
of the selected sentences and also calculating the resulting ROUGE-2 score. For
Task 1B they considered the facet classi cation based on the sentences previously
obtained for Task 1A. The results they obtained with the test set are shown in
Table 4, where we include our best result{obtained with the voting system{ as
well as the maximum, mean and minimum scores for all the systems submitted
(macro averages).
For Task 2 we submitted nine trainable systems corresponding to nine ways
of interpreting the gold standard summaries: three vector representations times
three gold standard summaries (system names in rst column of Table 3). The
organizers of CL-SciSumm used ROUGE-2 and ROUGE-SU4 for the evaluation
of the results for Task2. In Table 5 we show our results compared to the mean,
minimum and maximum results obtained in the challenge.
In this paper we have presented unsupervised and supervised methods to address
the tasks proposed by the CL-SciSumm 2017 challenge. Our sentence-matching
approach takes advantage of both discrete vector representations using terms
weighted with tf*idf and continuous word representations. It optimizes several
sentence similarity metrics also combining them in a voting system. The facet
classi er is a SVM trained on the annotated dataset provided. It uses a set
of manually engineered features informed by our previous work. Our
citationbased summarization system is a linear regression based algorithm which learns
to score sentences based on reference paper and citing paper(s) features, several
of them based on continuous word vectors. Our long term goal is to contribute
to the areas of extraction and summarization of scienti c information. Further
work we are considering in this direction include the creation of linguistically
enriched scienti c datasets and their exploitation to improve access to scienti c
information. We are also interested in exploring other sentence matching and
classi cation approaches, including some based on deep learning techniques.</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgments</title>
      <p>This work is supported by the Spanish Ministry of Economy and Competitiveness
under the Maria de Maeztu Units of Excellence Programme (MDM-2015-0502)
and by the TUNER project (TIN2015-65308-C5-5-R, MINECO/FEDER, UE).
17. Paice, C.D., Jones, P.A.: The identi cation of important concepts in highly
structured technical papers. In: Proceedings of the 16th Annual International ACM
SIGIR Conference on Research and Development in Information Retrieval. pp.
69{78. SIGIR '93, ACM, New York, NY, USA (1993)
18. Qazvinian, V., Radev, D.R.: Scienti c paper summarization using citation
summary networks. In: Proceedings of the 22Nd International Conference on
Computational Linguistics - Volume 1. pp. 689{696. COLING '08, Association for
Computational Linguistics, Stroudsburg, PA, USA (2008)
19. Qazvinian, V., Radev, D.R.: Identifying non-explicit citing sentences for
citationbased summarization. In: ACL 2010, Proceedings of the 48th Annual Meeting of
the Association for Computational Linguistics, July 11-16, 2010, Uppsala, Sweden.
pp. 555{564 (2010)
20. Ronzano, F., Saggion, H.: Dr. Inventor Framework: Extracting structured
information from scienti c publications. In: International Conference on Discovery Science.
pp. 209{220. Springer (2015)
21. Saggion, H.: SUMMA: A robust and adaptable summarization tool. Traitement</p>
      <p>Automatique des Langues 49(2) (2008)
22. Saggion, H., AbuRa'ed, A., Ronzano, F.: Trainable citation-enhanced
summarization of scienti c articles. In: Proceedings of the Joint Workshop on
Bibliometricenhanced Information Retrieval and Natural Language Processing for Digital
Libraries (BIRNDL) co-located with the Joint Conference on Digital Libraries 2016
(JCDL 2016), Newark, NJ, USA, June 23, 2016. pp. 175{186 (2016)
23. Saggion, H., Lapalme, G.: Concept identi cation and presentation in the context of
technical text summarization. In: Proceedings of the 2000 NAACL-ANLP
Workshop on Automatic Summarization. pp. 1{10. Association for Computational
Linguistics, Stroudsburg, PA, USA (2000)
24. Saggion, H., Lapalme, G.: Generating indicative-informative summaries with
SumUM. Computational Linguistics 28(4), 497{526 (2002)
25. Teufel, S., Moens, M.: Summarizing scienti c articles: Experiments with relevance
and rhetorical status. Comput. Linguist. 28(4), 409{445 (Dec 2002)
26. White, L., Togneri, R., Liu, W., Bennamoun, M.: How well sentence embeddings
capture meaning. In: Proceedings of the 20th Australasian Document Computing
Symposium. p. 9. ACM (2015)
27. Witten, I.H., Frank, E., Hall, M.A., Pal, C.J.: Data Mining: Practical machine
learning tools and techniques. Morgan Kaufmann (2016)</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Abu-Jbara</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ezra</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Radev</surname>
            ,
            <given-names>D.R.</given-names>
          </string-name>
          :
          <article-title>Purpose and polarity of citation: Towards nlp-based bibliometrics</article-title>
          .
          <source>In: HLT-NAACL</source>
          . pp.
          <volume>596</volume>
          {
          <issue>606</issue>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2. AbuRa'ed,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Chiruzzo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Saggion</surname>
          </string-name>
          , H.:
          <article-title>What sentence are you referring to and why? identifying cited sentences in scienti c literature</article-title>
          .
          <source>In: Proceedings of Recent Advances in Natural Language Processing - RANLP 2017. Varna, Bulgaria (2-8 September</source>
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Bird</surname>
            ,
            <given-names>S.:</given-names>
          </string-name>
          <article-title>The ACL anthology reference corpus: A reference dataset for bibliographic research in computational linguistics (</article-title>
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Codina-Filba</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bouayad-Agha</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Burga</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Casamayor</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mille</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , Muller,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Saggion</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            ,
            <surname>Wanner</surname>
          </string-name>
          ,
          <string-name>
            <surname>L.</surname>
          </string-name>
          :
          <article-title>Using genre-speci c features for patent summaries</article-title>
          .
          <source>Inf. Process. Manage</source>
          .
          <volume>53</volume>
          (
          <issue>1</issue>
          ),
          <volume>151</volume>
          {
          <fpage>174</fpage>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Jaidka</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chandrasekaran</surname>
            ,
            <given-names>M.K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Elizalde</surname>
            ,
            <given-names>B.F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jha</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jones</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kan</surname>
            ,
            <given-names>M.Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Khanna</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Molla-Aliod</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Radev</surname>
            ,
            <given-names>D.R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ronzano</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Saggion</surname>
          </string-name>
          , H.:
          <article-title>The computational linguistics summarization pilot task</article-title>
          .
          <source>In: Proceedings of TAC</source>
          <year>2014</year>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Jaidka</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chandrasekaran</surname>
            ,
            <given-names>M.K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jain</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kan</surname>
          </string-name>
          , M.Y.:
          <article-title>Overview of the CLSciSumm 2017 shared task</article-title>
          .
          <source>Proceedings of the Joint Workshop on Bibliometricenhanced Information Retrieval and Natural Language Processing for Digital Libraries (August</source>
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Jaidka</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chandrasekaran</surname>
            ,
            <given-names>M.K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rustagi</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kan</surname>
          </string-name>
          , M.Y.:
          <article-title>Overview of the 2nd Computational Linguistics Scienti c Document Summarization Shared Task (CLSciSumm 2016)</article-title>
          .
          <source>In: Proceedings of the Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL</source>
          <year>2016</year>
          )
          <article-title>(</article-title>
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8. Kageback,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Mogren</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            ,
            <surname>Tahmasebi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            ,
            <surname>Dubhashi</surname>
          </string-name>
          ,
          <string-name>
            <surname>D.</surname>
          </string-name>
          :
          <article-title>Extractive summarization using continuous vector space models</article-title>
          .
          <source>In: Proceedings of the 2nd Workshop on Continuous Vector Space Models and their Compositionality (CVSC)@ EACL</source>
          . pp.
          <volume>31</volume>
          {
          <fpage>39</fpage>
          .
          <string-name>
            <surname>Citeseer</surname>
          </string-name>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Lin</surname>
            ,
            <given-names>C.Y.</given-names>
          </string-name>
          :
          <article-title>ROUGE: A package for automatic evaluation of summaries</article-title>
          .
          <source>In: Text summarization branches out: Proceedings of the ACL-04 workshop</source>
          . vol.
          <volume>8</volume>
          .
          <string-name>
            <surname>Barcelona</surname>
          </string-name>
          ,
          <string-name>
            <surname>Spain</surname>
          </string-name>
          (
          <year>2004</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Liu</surname>
          </string-name>
          , H.:
          <article-title>Sentiment analysis of citations using word2vec</article-title>
          .
          <source>arXiv preprint arXiv:1704.00177</source>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Luhn</surname>
            ,
            <given-names>H.P.:</given-names>
          </string-name>
          <article-title>The automatic creation of literature abstracts</article-title>
          .
          <source>IBM J. Res. Dev</source>
          .
          <volume>2</volume>
          (
          <issue>2</issue>
          ),
          <volume>159</volume>
          {165 (Apr
          <year>1958</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Mancini</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Camacho-Collados</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Iacobacci</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Navigli</surname>
          </string-name>
          , R.:
          <article-title>Embedding words and senses together via joint knowledge-enhanced training</article-title>
          .
          <source>arXiv preprint arXiv:1612.02703</source>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Maynard</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tablan</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cunningham</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ursu</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Saggion</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bontcheva</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wilks</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Architectural elements of language engineering robustness</article-title>
          .
          <source>Natural Language Engineering</source>
          <volume>8</volume>
          (
          <issue>2-3</issue>
          ),
          <volume>257</volume>
          {
          <fpage>274</fpage>
          (
          <year>2002</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Mihalcea</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tarau</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          : TextRank:
          <article-title>Bringing order into texts</article-title>
          .
          <source>In: Proceedings of EMNLP-04and the 2004 Conference on Empirical Methods in Natural Language Processing (July</source>
          <year>2004</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Mikolov</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Corrado</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dean</surname>
            ,
            <given-names>J.:</given-names>
          </string-name>
          <article-title>E cient estimation of word representations in vector space</article-title>
          .
          <source>ICLR Workshop</source>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Navigli</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ponzetto</surname>
            ,
            <given-names>S.P.:</given-names>
          </string-name>
          <article-title>BabelNet: The automatic construction, evaluation and application of a wide-coverage multilingual semantic network</article-title>
          .
          <source>Arti cial Intelligence</source>
          <volume>193</volume>
          ,
          <fpage>217</fpage>
          {
          <fpage>250</fpage>
          (
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>