<!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>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>International Institute of Information Technology</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Hyderabad kritika.agrawal@research.iiit.ac.in</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>International Institute of Information Technology</institution>
          ,
          <addr-line>Hyderabad</addr-line>
        </aff>
      </contrib-group>
      <abstract>
        <p>In this report, we present our system for the 4th Computational Linguistics Scienti c Document Summarization Shared Task (CLSciSumm 2018), which poses the challenge of identifying the spans of text in a reference paper (RP) that most accurately re ect a citation (i.e. citance) from another paper to the RP and identifying the discourse facet of the corresponding text. We modeled Task1A as Classi cation Prob-lem which classi es a pair of sentences into classes paraphrase and nonparaphrase. We used Convolutional Neural Network along-with transfer learning for this. Task1B is solved as multi label classi cation problem.</p>
      </abstract>
      <kwd-group>
        <kwd>Paraphrase Detection</kwd>
        <kwd>Classi cation</kwd>
        <kwd>Transfer Learning</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>1.1</p>
    </sec>
    <sec id="sec-2">
      <title>Methodology</title>
      <sec id="sec-2-1">
        <title>Task Description</title>
        <p>CL-SciSumm explores summarization of scienti c research, for the
computational linguistics research domain. An ideal summary of computational
linguistics research papers would be able to summarize previous research by drawing
comparisons and contrasts between their goals, methods and results, as well as
distil the overall trends in the state of the art and their place in the larger
academic discourse. There are two tasks in CL-SciSumm 2018. The training dataset
contains 40 topics of documents. A topic is consisted of a Reference Paper (RP)
and Citing Papers (CPs) that all contain citations to the RP. In each CP, the
text spans (citances) have been identi ed that pertain to a particular citation to
the RP. In Task 1A, for each citance, we need to identify the spans of text (cited
text spans) in the RP that most accurately re ect the citance. In Task 1B, for
each cited text span, we need to identify what facet of the paper it belongs to,
from ve prede ned facets, which are Aim, Method, Results, Implication and
Hypothesis. In Task 2, we need to generate a structured summary of the RP
from the cited text spans of the RP.
1.2</p>
      </sec>
      <sec id="sec-2-2">
        <title>Task1A</title>
        <p>In this task, for each citance, we need to identify the spans of text (cited text
spans) in the RP that most accurately re ect the citance. We modeled this task as
classi cation problem where we are classifying pair of sentences into Paraphrase
and non-paraphrase. We used the method described in "Text Matching as
Image Recognition" paper of using CNN, ideally used for images, for text matching
problem. Firstly, a matching matrix whose entries represent the similarities
between words is constructed and viewed as an image. Then a convolutional neural
network is utilized to capture rich matching patterns in a layer-by-layer way. By
resembling the compositional hierarchies of patterns in image recognition, the
model can successfully identify salient signals such as n-gram and n-term
matchings.</p>
        <p>We train the MatchPyramid model introduced in "" on Microsoft Research
Paraphrase Detection Dataset. We then re-train the model using transfer learning on
the given Training Dataset.
1.3</p>
      </sec>
      <sec id="sec-2-3">
        <title>Task1B</title>
        <p>In this task, for each cited text span, we need to identify what facet of the
paper it belongs to. There are 5 prede ned facets - Aim, Hypothesis, Method,
Result, Implication. We have modeled this problem as multi label classi cation
problem as for many sentences in annotation, a text belonged to more than one
facet. We are using term frequency-inverse document frequency(tf-idf) features
and trained NB-SVM on it. NBSVM is an SVM model trained on naive bayes
features.
2</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Experiments and Results</title>
      <p>We created 3 datasets from the given Training Set for our approach:
a. N4 dataset - For each citance sentence we create a positive sample as the
pair of the citance sentence and the corresponding reference sentence. We also
create 4 negative samples as pair of citance sentence and 2 sentence before and
2 sentences after the reference sentence.
b. N2 dataset - For each citance sentence we create a positive sample as the
pair of the citance sentence and the corresponding reference sentence. We also
create 2 negative samples as pair of citance sentence and 1 sentence before and
1 sentences after the reference sentence.
c. N1 dataset - For each citance sentence we create a positive sample as the pair
of the citance sentence and the corresponding reference sentence. We also create
1 negative sample as pair of citance sentence and randomly selecting a sentence
from the rst 2 sections of the paper which is not a reference sentence.</p>
      <sec id="sec-3-1">
        <title>1. Preprocessing All the words are converted to lower case and stemmed so as to decrease the vocabulary size. 2. Model</title>
        <p>Our model consist of 2 embedding layers, one for the citance sentence and one
for the reference sentence. A cross is taken between the 2 layers to generate a
matrix (the matrix will be given as an image to convolution network). A
convolutional layer is applied on the matrix followed by an dynamic pooling layer. The
activation function used is Relu. The output of the dynamic layer is attened
and then fed to a fully connected layer. The activation function used is softmax.</p>
        <p>We rst trained the model on Microsoft Research Paraphrase detection dataset.
We followed the ne parameter tuning approach for transfer learning. We retrain
all the layers in the model with weights initialized with those learnt on Microsoft
paraphrase dataset.</p>
        <p>We performed experiments on two models:
1. TL: Model initially trained on MSR Paraphrase Detection dataset and then
trained on our dataset using Transfer learning as explained above. 2. Non-TL :
Model same as mentioned in point 3 but trained directly on our dataset.</p>
        <p>Parameters used :
Kernel Count : 32,
Kernel Size :, [3, 3],
Dynamic Pooling Size : [3, 10]
First we created a bag of words representation, as a term document matrix, for
the citances and the reference text in the annotations. We have used ngrams, as
suggested in the NBSVM paper. Then we nd the log count ratio for each class.
We t a model for one class at a time. NBSVM is identical to the SVM, except
we use x (k) = f (k) , where f (k) = r f (k) is the elementwise product. Here,
x(k) is the feature set given to SVM and f (k) are the original features.
We had total of 748 samples in the training set. We split this into training
and validation set in the ratio 4:1. Both Citance and Reference text are used as
features. We obtained the highest accuracy of 90.303% on the validation dataset.
3</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Conclusion</title>
      <sec id="sec-4-1">
        <title>Submitted system runs for the following models : 1. Model trained on N4 dataset with no transfer learning.</title>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          <string-name>
            <surname>Pang</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lan</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Guo</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xu</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wan</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , &amp; Cheng,
          <string-name>
            <surname>X.</surname>
          </string-name>
          (
          <year>2016</year>
          ,
          <article-title>February)</article-title>
          .
          <article-title>Text Matching as Image Recognition</article-title>
          .
          <source>In Proceedings of the AAAI Annual Meeting</source>
          (pp.
          <fpage>2793</fpage>
          -
          <lpage>2799</lpage>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Manning</surname>
            ,
            <given-names>C. D.</given-names>
          </string-name>
          (
          <year>2012</year>
          ,
          <article-title>July)</article-title>
          .
          <article-title>Baselines and bigrams: Simple, good sentiment and topic classification</article-title>
          .
          <source>In Proceedings of the 50th Annual Meeting of the Association for Computational Linguistics: Short Papers-Volume</source>
          <volume>2</volume>
          (pp.
          <fpage>90</fpage>
          -
          <lpage>94</lpage>
          ).
          <article-title>Association for Computational Linguistics</article-title>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>