<!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>Transfer Learning and Mixed Input Deep Neural Networks for Estimating Flood Severity in News Content</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Pierrick Bruneau</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Thomas Tamisier</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Luxembourg</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>pierrick.bruneau</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>thomas.tamisier}@list.lu</string-name>
        </contrib>
      </contrib-group>
      <pub-date>
        <year>2019</year>
      </pub-date>
      <fpage>27</fpage>
      <lpage>29</lpage>
      <abstract>
        <p>This paper describes deep learning approaches which use textual and visual features for flood severity detection in news content. In the context of the MediaEval 2019 Multimedia Satellite task, we test the value of transferring models pre-trained on large related corpora, as well as the improvement brought by dual branch models that combine embeddings output from mixed textual and visual inputs.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>INTRODUCTION</title>
      <p>
        Identifying news items related to a catastrophic event such as a
lfood, and assessing the severity of the event using the collected
information can provide timely input to support the victims. The
News Image Topic Disambiguation (NITD) and Multimodal Flood
Level Estimation (MFLE) subtasks of the Multimedia Satellite
(MMSat) MediaEval 2019 task foster the application of machine learning
research to this context. The MMSat overview paper [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] discloses
further information on this matter. To address these subtasks, we
do not propose any specialized model (e.g. combined use of pose
detection and occlusion detection [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] that could be used for MFLE
subtask). Rather, we reuse existing general-purpose text and image
classification models. In particular, the value of adapting pre-trained
models to these subtasks is estimated in this work.
      </p>
      <p>
        Part of the literature on multimodal neural networks aims at
learning similarities between modalities such as image and text
e.g. for automatic image captioning [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. In the present work,
multimodality is understood as the joint usage of several modalities (i.e.
text and image) as means to improve prediction capabilities. In other
words, embeddings derived from each modality are merged, and
fed forward to a sigmoid function typical of classification models
[
        <xref ref-type="bibr" rid="ref1 ref9">1, 9</xref>
        ]. Runs submitted to the MFLE subtask are meant to measure
the improvement brought by such multimodality. In the remainder,
after shortly introducing the addressed subtasks, implementation
rationale and details are presented, and the respective experimental
results are disclosed and commented.
      </p>
    </sec>
    <sec id="sec-2">
      <title>DATA</title>
      <p>
        The NITD subtask aims at predicting the flood-relatedness of news
articles using their featured images as input. The training set
contains 5180 images, with ∼ 10.1% flood-related images. The test set
contains 1296 images. The MFLE subtask aims at classifying news
articles w.r.t. flood severity using both the news text and featured
images as input. The training set features 4932 news articles, with
∼ 3.2% of instances from the positive class (i.e. high severity). The
test set features 1234 articles. For details about the subtasks, e.g.
regarding the annotation of training and test sets, the reader may
refer to the workshop overview paper [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ].
3
      </p>
    </sec>
    <sec id="sec-3">
      <title>PROPOSED APPROACH</title>
      <p>
        For given training and validation sets, each model in this work was
trained for 50 epochs. Model selection was performed by monitoring
a validation metric at epoch end, and retaining the best model w.r.t.
this metric. As both subtasks are significantly imbalanced, instead of
the accuracy, we used the F1 metric. We optimized the binary
crossentropy loss using the Adam solver [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. Batches of 32 elements were
used. For each run, we used stratified 5-fold cross-validation, hence
retaining 20% of validation data in each fold. A model ensemble
was built using the model selected for each fold. Majority voting
or score averaging was selected depending on the F1-Score on the
full training data. For handling class imbalance in the context of
neural networks, we used instance weighting. In the Multimedia
Satellite overview paper [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], runs that use only the provided textual
and visual information are distinguished from those that can use
any external information. In the remainder, pre-trained models (e.g.
pre-trained word embeddings or convolutional models pre-trained
using tier image collections) are understood as external information:
runs using textual or visual information only were obtained with
models trained from random initializations.
3.1
      </p>
    </sec>
    <sec id="sec-4">
      <title>Textual Information</title>
      <p>
        Classification of textual content is usually carried out by
considering the text as a sequence of words, and using recurrent
neural models such as the LSTM [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] for classifying these sequential
inputs. We compared the baseline LSTM to several variants (e.g.
Attention-based BiLSTM [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ], Multi-Head Attention model [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ]),
but no option yielded results significantly better than the baseline
LSTM with random initialization. Hence the baseline LSTM model
was the only one considered for textual processing in the MFLE
subtask. This setting is suitable to MFLE run 2, as it does not require
any pretraining. For the latter run, we performed a grid search for
hyper parameters. In the end, we retained 50 for the fixed text size,
100 for the hidden vector size, and 32 for the word embedding size.
Taking inspiration from data augmentation techniques used with
images (see Section 3.2), we tried to augment the training set by
setting a random ofset to the extracted textual sequences (instead
of always taking the 50 first words in the text). We did not observe
improved results by doing so. We hypothesize that the starting
words in a text carry a lot of its overall meaning.
3.2
      </p>
    </sec>
    <sec id="sec-5">
      <title>Visual Information</title>
      <p>
        For image classification in both subtasks, we focused on 3 well
known model architectures: InceptionV3 [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ], MobileNetV2 [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ]
and VGG16 [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ]. InceptionV3 has served as a building block for
P. Bruneau et T. Tamisier
many recent contributions (e.g. [
        <xref ref-type="bibr" rid="ref10 ref4 ref9">4, 9, 10</xref>
        ]). Parameter sets
pretrained on the data from the ImageNet challenge [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] are also widely
available. VGG16 yields performance close to the state of the art on
the Places365 scene recognition task [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ]. As NITD and MFLE can
be understood as recognizing certain types of scenes, we
hypothesize that transferring a VGG16 model pre-trained on Places365
can be valuable. MobileNetV2 has a comparatively small number
of parameters (∼ 2M, when InceptionV3 defines ∼ 20M parameters,
and VGG16 ∼ 130M), and is hence more suitable for being trained
from scratch. For all models, we rescaled images to 224 × 224
pixels. We applied image augmentation methods commonly used in
above-mentioned papers, i.e. each image in the training batches
is modified by a combination of random transformations. When
no external data can be used (i.e. run 1 of NITD and MFLE), we
used randomly initialized MobileNetV2 models. InceptionV3
models pre-trained using the ImageNet dataset were used. In a first
stage, only the last dense layer was trained while freezing all other
layers (NITD run 2). The last 2 convolutional layers were then
ifne-tuned (NITD run 3). Also, we jointly trained the two last fully
connected layers of a pre-trained VGG16 model (NITD run 4). We
tried to fine tune the large fully connected ante penultimate layer
and the last convolutional layer after this first stage (NITD run 5).
3.3
      </p>
    </sec>
    <sec id="sec-6">
      <title>Mixed Input</title>
      <p>
        Figure 1 shows the generic architecture for our mixed input models.
The proposed multimodal approach is very similar to that proposed
in [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]. The embedding of textual and visual models is taken as their
penultimate layer output. For MFLE run 3, we reused previously
trained LSTM (run 2) and MobileNetV2 (run 1), and trained only
the additional fully connected layers. Similarly, for run 4 we used
a pre-trained InceptionV3 model, adapted and fine-tuned to the
MFLE subtask data as described in 3.2. Run 5 used a pre-trained
and adapted VGG16 model instead. The textual and visual models
performing the best w.r.t all training data were selected. Ensembles
of 5 mixed input models were trained from this common basis. To
balance the influence of text and image, we defined a bottleneck
fully connected layer, that reduces the generally high-dimensional
convolutional embedding (e.g. 2048 for InceptionV3) to size 100,
the same size as the LSTM hidden vector.
4
      </p>
    </sec>
    <sec id="sec-7">
      <title>ANALYSIS</title>
      <p>
        The F1-Scores resulting from our runs are displayed in Table 1. For
the NITD subtask, VGG16 with fine-tuning gets the best results
(F1 = 89.6%). VGG16 models performed better than others with a
significant margin. This means NITD is close to a scene recognition
task. However, fine-tuning brought at best minor improvement
(+0.6% for VGG16, runs 4 and 5), at worse performance
degradation (-1.4% for InceptionsV3, runs 2 and 3). Perhaps surprisingly,
MobileNetV2 trained from scratch ofers solid performance, in
between InceptionV3 and VGG16. For the MFLE subtask, the mixed
input model benefits from a small positive combination efect
between modalities (+1.0% between runs 1 and 3). Using pre-trained
vision models (runs 4 and 5) yields a significant performance boost
(≈ 10%). The best results are obtained with the combination of
LSTM and InceptionV3 (run 4). As all images in the MFLE data set
depict flooded scenes, we can hypothesize that object level features
are more relevant than scene level features. Figure 2 displays Class
Activation Maps [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] of examples with high positive or negative
activations w.r.t. InceptionV3 models trained on both subtasks. We
see that the positive class is frequently associated to the detection of
water patterns. This possibly explains for the limited performance
in MFLE, as these patterns are not very discriminative then. On
the other hand, false negatives are often associated to misleading
elements in the image (e.g. microphone for NITD, pile of rubbish
for MFLE).
5
      </p>
    </sec>
    <sec id="sec-8">
      <title>CONCLUSION</title>
      <p>In this paper, we tested several approaches to the detection of
lfood severity in multimodal news content. We highlighted the
relevance of considering closely related tasks for pre-training, rather
than general-purpose image datasets such as ImageNet.
Mixedinput architectures in the MFLE task yielded an improvement w.r.t.
modalities taken separately, but this improvement was limited in
comparison to the influence of using relevant pre-trained models.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>N.</given-names>
            <surname>Audebert</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Herold</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Slimani</surname>
          </string-name>
          , and
          <string-name>
            <given-names>C.</given-names>
            <surname>Vidal</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Multimodal deep networks for text and image-based document classification</article-title>
          . arXiv:
          <year>1907</year>
          .06370 [cs] (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>B.</given-names>
            <surname>Bischke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Helber</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Brugman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Basar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Larson</surname>
          </string-name>
          , and
          <string-name>
            <given-names>K.</given-names>
            <surname>Pogorelov</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>The Multimedia Satellite Task at MediaEval 2019</article-title>
          .
          <source>In Proc. of the MediaEval 2019 Workshop.</source>
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>A.</given-names>
            <surname>Bulat</surname>
          </string-name>
          and
          <string-name>
            <given-names>G.</given-names>
            <surname>Tzimiropoulos</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Human pose estimation via Convolutional Part Heatmap Regression</article-title>
          .
          <source>In European Conference on Computer Vision</source>
          . 717-
          <fpage>732</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>P.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Sharma</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , J. Yi, and
          <string-name>
            <given-names>C.</given-names>
            <surname>Hsieh</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>EAD: ElasticNet Attacks to Deep Neural Networks via Adversarial Examples</article-title>
          .
          <source>In Thirty-Second AAAI Conference on Artificial Intelligence .</source>
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>J.</given-names>
            <surname>Deng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Dong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Socher</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Kai</surname>
          </string-name>
          , and
          <string-name>
            <given-names>F.</given-names>
            <surname>Li</surname>
          </string-name>
          .
          <year>2009</year>
          .
          <article-title>ImageNet: A large-scale hierarchical image database</article-title>
          .
          <source>In IEEE Conference on Computer Vision and Pattern Recognition</source>
          .
          <fpage>248</fpage>
          -
          <lpage>255</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>A.</given-names>
            <surname>Graves</surname>
          </string-name>
          .
          <year>2012</year>
          .
          <article-title>Supervised Sequence Labelling</article-title>
          .
          <source>In Supervised Sequence Labelling with Recurrent Neural Networks</source>
          . Springer Berlin Heidelberg,
          <fpage>5</fpage>
          -
          <lpage>13</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>D.</given-names>
            <surname>Kingma</surname>
          </string-name>
          and
          <string-name>
            <given-names>J.</given-names>
            <surname>Ba</surname>
          </string-name>
          .
          <year>2015</year>
          .
          <article-title>Adam: A Method for Stochastic Optimization</article-title>
          . In International Conference for Learning Representations.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>R.</given-names>
            <surname>Kiros</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Salakhutdinov</surname>
          </string-name>
          , and
          <string-name>
            <given-names>R.</given-names>
            <surname>Zemel</surname>
          </string-name>
          .
          <year>2014</year>
          .
          <article-title>Unifying VisualSemantic Embeddings with Multimodal Neural Language Models</article-title>
          .
          <source>In NIPS Deep Learning Workshop.</source>
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>L.</given-names>
            <surname>Lopez-Fuentes</surname>
          </string-name>
          , J. van de Weijer,
          <string-name>
            <given-names>M.</given-names>
            <surname>Bolaños</surname>
          </string-name>
          , and
          <string-name>
            <given-names>H.</given-names>
            <surname>Skinnemoen</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Multi-modal Deep Learning Approach for Flood Detection</article-title>
          .
          <source>In Proc. of the MediaEval 2017 Workshop.</source>
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>R.</given-names>
            <surname>Poplin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Varadarajan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Blumer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>McConnell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Corrado</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Peng</surname>
          </string-name>
          , and
          <string-name>
            <given-names>D.</given-names>
            <surname>Webster</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>Prediction of cardiovascular risk factors from retinal fundus photographs via deep learning</article-title>
          .
          <source>Nature Biomedical Engineering</source>
          <volume>2</volume>
          ,
          <issue>3</issue>
          (
          <year>2018</year>
          ),
          <fpage>158</fpage>
          -
          <lpage>164</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>M.</given-names>
            <surname>Sandler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Howard</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Zhu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Zhmoginov</surname>
          </string-name>
          , and
          <string-name>
            <given-names>L.</given-names>
            <surname>Chen</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>MobileNetV2: Inverted Residuals and Linear Bottlenecks</article-title>
          .
          <source>In IEEE Conference on Computer Vision and Pattern Recognition</source>
          .
          <fpage>4510</fpage>
          -
          <lpage>4520</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>K.</given-names>
            <surname>Simonyan</surname>
          </string-name>
          and
          <string-name>
            <given-names>A.</given-names>
            <surname>Zisserman</surname>
          </string-name>
          .
          <year>2014</year>
          .
          <article-title>Very Deep Convolutional Networks for Large-Scale Image Recognition</article-title>
          . In International Conference for Learning Representations.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>C.</given-names>
            <surname>Szegedy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Vanhoucke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Iofe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Shlens</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Z.</given-names>
            <surname>Wojna</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Rethinking the Inception Architecture for Computer Vision</article-title>
          .
          <source>In IEEE Conference on Computer Vision and Pattern Recognition</source>
          .
          <fpage>2818</fpage>
          -
          <lpage>2826</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>A.</given-names>
            <surname>Vaswani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Shazeer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Parmar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Uszkoreit</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gomez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Kaiser</surname>
          </string-name>
          ,
          <string-name>
            <given-names>and I.</given-names>
            <surname>Polosukhin</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Attention is All you Need</article-title>
          .
          <source>In Advances in Neural Information Processing Systems</source>
          <volume>30</volume>
          .
          <fpage>5998</fpage>
          -
          <lpage>6008</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>B.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Khosla</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Lapedriza</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Oliva</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <given-names>A.</given-names>
            <surname>Torralba</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Learning Deep Features for Discriminative Localization</article-title>
          .
          <source>In IEEE Conference on Computer Vision and Pattern Recognition</source>
          .
          <fpage>2921</fpage>
          -
          <lpage>2929</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>B.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Lapedriza</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Khosla</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Oliva</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <given-names>A.</given-names>
            <surname>Torralba</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>Places: A 10 Million Image Database for Scene Recognition</article-title>
          .
          <source>IEEE Transactions on Pattern Analysis and Machine Intelligence</source>
          <volume>40</volume>
          ,
          <issue>6</issue>
          (
          <year>2018</year>
          ),
          <fpage>1452</fpage>
          -
          <lpage>1464</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>P.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Shi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Tian</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Qi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Hao</surname>
          </string-name>
          , and
          <string-name>
            <given-names>B.</given-names>
            <surname>Xu</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>AttentionBased Bidirectional Long Short-Term Memory Networks for Relation Classification</article-title>
          .
          <source>In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers)</source>
          .
          <fpage>207</fpage>
          -
          <lpage>212</lpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>