<!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>Flood Severity Estimation in News Articles using Deep Learning Approaches</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>Dan Bînă, George-Alexandru Vlad, Cristian Onose, Dumitru-Clementin Cercel Faculty of Automatic Control and Computers University Politehnica of Bucharest</institution>
          ,
          <country country="RO">Romania</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2019</year>
      </pub-date>
      <fpage>27</fpage>
      <lpage>29</lpage>
      <abstract>
        <p>The aim of this study is to detect flooding events by analyzing both texts published by African online news outlets as well as the accompanying article images. The data is provided by MediaEval 2019 within the Multimedia Satellite Task. Our contributions are related to the image- and text-based subtasks. In order to solve the required classification subtasks, we build models capable to extract features from images and texts separately, and then combine them to obtain a complex classifier, providing a better evidence of flooding. Specifically, we adopt the MobileNet architecture which is based on convolutional layers for image processing and also employ a robust text processing method based on long short-term memory cells. The results of our final models on the oficial test sets are promising, 85.26% average F1-score on the first subtask and 66.19% average F1-score on the second subtask.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>INTRODUCTION</title>
      <p>The flood phenomenon is a problem that humanity is still facing,
especially in some disadvantaged territories from Africa. An
automated method of estimating the severity of the flood phenomenon
could significantly improve prevention policies and rescue
measures taken in addressing its consequences.</p>
      <p>
        The Multimedia Satellite Task is organized as part of the
MediaEval benchmarking initiative1 and comprises of various subtasks
in the flooding event analysis domain. After the success of the two
previous editions [
        <xref ref-type="bibr" rid="ref2 ref3">2, 3</xref>
        ], the 2019 edition of Multimedia Satellite
Task [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] includes three new challenging subtasks as follows: (i)
Image-based News Topic Disambiguation (INTD), (ii) Multimodal
Flood Level Estimation from News Articles (MFLE), and (iii) Binary
Classification of city-centered satellite sequences. In our work, we
only investigate the first two subtasks. While the INTD subtask
refers to the detection of flooding events with the help of on-ground
images using visual attributes, the MFLE subtask involves the
detection of people standing in water below the knee using features
extracted from both images and texts.
      </p>
      <p>
        In recent years, the field of flooding event analysis has attracted
a lot of interest by researchers. For example, Rizk et al. [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ] reported
an accuracy of 91.10% for a Support Vector Machine classifier [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]
taking as input a concatenated vector of handcrafted semantic
features, such as color histogram, gradient direction histogram, hue
saturation intensity, in a classification task of disaster-related
Twitter images. A better performance of 92.62% is achieved in classifying
damage-related social media posts by Mouzannar et al. [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ] using a
multimodal approach based only on convolutional neural networks
for both images and texts. Lopez-Fuentes et al. [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] proposed a
multimodal solution for the flood detection from social media posts on
Flickr. The architecture of this solution consists of combining a
convolution neural network, InceptionV3 [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ], with a BiLSTM network
[
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] for the extraction of visual and textual features respectively.
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>PROPOSED APPROACH</title>
      <p>We define a neural architecture for image processing for both
subtasks. For the MFLE subtask, we also define a neural model for
text processing and a multimodal one which combines all obtained
features. The details of our neural network architectures are further
explained in this section.</p>
      <p>
        Visual Feature Extraction. We use a deep convolutional
neural network, namely MobileNet [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ], with weights pre-trained on
the ImageNet dataset [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] in order to extract visual features. The
MobileNet model is relatively small compared with the state-of-the-art
models [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ], but this is rather important since the competition data
set has a small size for a deep learning approach. The MobileNet
network has been proven to be efective in several tasks such as
vehicle recognition from short-range aerial images [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ], trafic
density estimation [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], skin cancer classification [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], and underwater
pipeline damage identification [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ]. During the learning process,
we freeze all the MobileNet layers until the next to last
convolutional layer because the pre-trained network can extract high-level
features, for instance edges, and add two fully connected layers
capable of detecting task-specific features.
      </p>
      <p>
        Textual Feature Extraction. First, we obtain a vector
representation of the words in texts using the GloVe model [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ]. The
GloVe embeddings are built based on an occurrence matrix which
stores the number of times a word is found within the context of
a given word. The context is limited to a window size within the
input sequence. The word embeddings are generated based on the
probability of co-occurrence of two words in the same context.
      </p>
      <p>
        Next, we define an architecture with an initial GloVe
embedding layer, followed by a BiLSTM layer [
        <xref ref-type="bibr" rid="ref10 ref9">9, 10</xref>
        ], which is capable
to recognize complex features. The BiLSTM layer consists in two
LSTM layers concatenated together which are processed forward
and backward over the input sequence of word embeddings in order
to capture past and future information likewise. We focus on the
BiLSTM architecture since it has achieved good results in diferent
tasks including dialect identification [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ], answer selection [
        <xref ref-type="bibr" rid="ref25">25</xref>
        ],
essay scoring [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ], rhyme detection [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ], and spelling correction
[
        <xref ref-type="bibr" rid="ref27">27</xref>
        ]. After the BiLSTM layer, we use a max polling layer with the
role of keeping most important features for each dimension. Finally,
we use a fully connected layer to combine previous characteristics
using a softmax activation function.
      </p>
      <p>Fusion of Textual and Visual Features. In order to deal with
the multimodal fusion, we use the two unimodal neural networks
previously specified in the same architecture, without the prediction
layers. As shown in Figure 1, the concatenated outputs of the two
neural networks are fed into two fully connected layers to get a
deeper representation of the text-level and image-level features at
the same time. The visual feature vector extracted by the network
is double the size of the textual one so that the visual input would
have a greater contribution to the final categorical class inference.
Our choice is based on the better performance obtained using only
visual information in comparison to the result obtained considering
solely text information.
3</p>
    </sec>
    <sec id="sec-3">
      <title>EXPERIMENTS AND RESULTS</title>
      <p>Next, we describe the experiments that we performed using the
defined models in order to solve the two subtasks.</p>
      <p>Data Augmentation. We have randomly split the provided
dataset in train data, 80%, and validation data, 20%. Because the
dataset is unbalanced and rather small for a deep learning approach,
only 564/5181 entries for the INTD subtask, and 157/4932 entries
for the MFLE subtask, we augment the positive items in order to
improve our model performance. For each image and text, we added
four more items that we generated as follows. In case of the image
augmentation, we randomly applied a number of geometric
transformations: (i) rotation with 20 degrees, (ii) horizontal reflection
and changing, (iii) translation with maximum 10%, and (iv) the
range of brightness between 0.9 and 1.2. For text augmentation, we
use the Google Translate service in order to translate each text from
English to two other intermediary languages, i.e., French, Spanish,
Portuguese, German and then back to English, which results in
diferent worded texts but with the same semantics. Because the
title of a publication might contain relevant information on the
subject of the writing, we choose to concatenate it to the content
of the corresponding news article.</p>
      <p>Text Pre-processing. Before introducing data in the learning
process, the news articles must be pre-processed considering the
fact that their content might contain insignificant information. We
clean the text removing unused symbols, and special strings such
as e-mails, links or abbreviations. Lastly, we lowercase the text,
remove stop words, apply lemmatization and tokenize the words.</p>
      <p>
        Experimental Settings. Regarding hyperparameters, we use a
grid search in order to get the best configuration. In case of
pretrained models, we keep the recommended values. For the BiLSTM
model, we use 300-dimensional word vectors pre-trained on the
Common Crawl corpus2 and the LSTM size of 300. We use Dropout
layers with 20% deactivated neurons to prevent overfitting. As
optimization method, we use Stochastic Gradient Descent (SGD) with
a learning rate of 1e-5 for the only image processing, training for
30 epochs. In both approaches, i.e., text unimodal and multimodal,
we use Adaptive Moment Estimation (Adam) [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] with the same
learning rate, but training for 10 epochs. The batch size used in all
cases is 64.
      </p>
      <p>
        Results. It is important to note that we submitted all our neural
networks trained on the whole provided dataset in order to increase
their performance. Table 1 presents the results we obtained on the
test dataset. The best score for the MFLE subtask is obtained by the
MobileNet model. We consider that the lower performance on the
MFLE subtask, compared to the INTD subtask, is attributed to the
more complex features that are required to detect people standing
in water below the knee. We expected the combined image and text
network to perform the best. Unfortunately, the learned semantic
features ofer little to no improvement over the only image model.
This paper presents our solution for two subtasks of the
Multimedia Satellite Task: detecting if an image describes a flooding event
and if a news article, image and text, depicts a person standing in
water below the knee. To solve these subtasks, we propose
solutions based on neural networks, namely the BiLSTM model with
pre-trained word embeddings GloVe for extracting textual features
and the MobileNet network for extracting visual features,
respectively. Although the obtained results are competitive, we plan to
improve them. For this purpose, we will focus on extending the
BiLSTM architecture with an attention mechanism [
        <xref ref-type="bibr" rid="ref26">26</xref>
        ] and also
contextualized word representations such as Bert [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] or Elmo [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ],
rather than the Glove embeddings used in our work.
      </p>
    </sec>
    <sec id="sec-4">
      <title>ACKNOWLEDGMENTS</title>
      <p>The work was supported by the Operational Programme Human
Capital of the Ministry of European Funds through the Financial
Agreement 51675/09.07.2019, SMIS code 125125.
2https://nlp.stanford.edu/projects/glove/</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>Benjamin</given-names>
            <surname>Bischke</surname>
          </string-name>
          , Patrick Helber, Simon Brugman, Erkan Basar,
          <string-name>
            <given-names>Zhengyu</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Martha</given-names>
            <surname>Larson</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Konstantin</given-names>
            <surname>Pogorelov</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>The Multimedia Satellite Task at MediaEval 2019: Estimation of Flood Severity</article-title>
          .
          <source>In Proc. of the MediaEval 2019 Workshop</source>
          , Sophia-Antipolis, France.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>Benjamin</given-names>
            <surname>Bischke</surname>
          </string-name>
          , Patrick Helber, Christian Schulze, Venkat Srinivasan, Andreas Dengel, and
          <string-name>
            <given-names>Damian</given-names>
            <surname>Borth</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>The Multimedia Satellite Task at MediaEval 2017: Emergence Response for Flooding Events</article-title>
          .
          <source>In Proc. of the MediaEval 2017 Workshop</source>
          , Dublin, Ireland.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Benjamin</given-names>
            <surname>Bischke</surname>
          </string-name>
          , Patrick Helber,
          <string-name>
            <given-names>Zhengyu</given-names>
            <surname>Zhao</surname>
          </string-name>
          , Jens De Bruijn, and
          <string-name>
            <given-names>Damian</given-names>
            <surname>Borth</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>The multimedia satellite task at MediaEval 2018: Emergency response for flooding events</article-title>
          .
          <source>In Proc. of the MediaEval 2018 Workshop</source>
          , Sophia-Antipolis, France.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Debojit</given-names>
            <surname>Biswas</surname>
          </string-name>
          , Hongbo Su, Chengyi Wang,
          <string-name>
            <surname>Aleksandar Stevanovic</surname>
            , and
            <given-names>Weimin</given-names>
          </string-name>
          <string-name>
            <surname>Wang</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>An automatic trafic density estimation using Single Shot Detection (SSD) and MobileNet-SSD</article-title>
          .
          <article-title>Physics and Chemistry of the Earth</article-title>
          ,
          <string-name>
            <surname>Parts</surname>
            <given-names>A</given-names>
          </string-name>
          /B/C 110 (
          <year>2019</year>
          ),
          <fpage>176</fpage>
          -
          <lpage>184</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <surname>Chih-Chung Chang</surname>
          </string-name>
          and
          <string-name>
            <surname>Chih-Jen Lin</surname>
          </string-name>
          .
          <year>2011</year>
          .
          <article-title>LIBSVM: A library for support vector machines</article-title>
          .
          <source>ACM transactions on intelligent systems and technology (TIST) 2</source>
          ,
          <issue>3</issue>
          (
          <year>2011</year>
          ),
          <fpage>27</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <surname>Saket</surname>
            <given-names>S Chaturvedi</given-names>
          </string-name>
          , Kajol Gupta, Prakash Prasad, and others.
          <source>2019</source>
          .
          <article-title>Skin Lesion Analyser: An Eficient Seven-Way Multi-Class Skin Cancer Classification Using MobileNet</article-title>
          . arXiv preprint arXiv:
          <year>1907</year>
          .
          <volume>03220</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Jia</given-names>
            <surname>Deng</surname>
          </string-name>
          , Wei Dong, Richard Socher,
          <string-name>
            <surname>Li-Jia</surname>
            <given-names>Li</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Kai</given-names>
            <surname>Li</surname>
          </string-name>
          , and
          <string-name>
            <surname>Li</surname>
          </string-name>
          Fei-Fei.
          <year>2009</year>
          .
          <article-title>Imagenet: A large-scale hierarchical image database</article-title>
          .
          <source>In 2009 IEEE conference on computer vision and pattern recognition. Ieee</source>
          ,
          <volume>248</volume>
          -
          <fpage>255</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>Jacob</given-names>
            <surname>Devlin</surname>
          </string-name>
          ,
          <string-name>
            <surname>Ming-Wei</surname>
            <given-names>Chang</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Kenton</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>and Kristina</given-names>
            <surname>Toutanova</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding</article-title>
          .
          <source>In Proc. of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</source>
          , Volume
          <volume>1</volume>
          (Long and Short Papers).
          <fpage>4171</fpage>
          -
          <lpage>4186</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>Alex</given-names>
            <surname>Graves</surname>
          </string-name>
          , Abdel-rahman
          <string-name>
            <surname>Mohamed</surname>
            , and
            <given-names>Geofrey</given-names>
          </string-name>
          <string-name>
            <surname>Hinton</surname>
          </string-name>
          .
          <year>2013</year>
          .
          <article-title>Speech recognition with deep recurrent neural networks</article-title>
          .
          <source>In 2013 IEEE international conference on acoustics, speech and signal processing. IEEE</source>
          ,
          <fpage>6645</fpage>
          -
          <lpage>6649</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>Alex</given-names>
            <surname>Graves</surname>
          </string-name>
          and
          <string-name>
            <given-names>Jürgen</given-names>
            <surname>Schmidhuber</surname>
          </string-name>
          .
          <year>2005</year>
          .
          <article-title>Framewise phoneme classification with bidirectional LSTM and other neural network architectures</article-title>
          .
          <source>Neural Networks</source>
          <volume>18</volume>
          ,
          <issue>5</issue>
          (
          <year>2005</year>
          ),
          <fpage>602</fpage>
          -
          <lpage>610</lpage>
          . IJCNN
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>Thomas</given-names>
            <surname>Haider</surname>
          </string-name>
          and
          <string-name>
            <given-names>Jonas</given-names>
            <surname>Kuhn</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>Supervised Rhyme Detection with Siamese Recurrent Networks</article-title>
          .
          <source>In Proceedings of the Second Joint SIGHUM Workshop on Computational Linguistics for Cultural Heritage</source>
          ,
          <source>Social Sciences, Humanities and Literature. Association for Computational Linguistics</source>
          , Santa Fe, New Mexico,
          <fpage>81</fpage>
          -
          <lpage>86</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <surname>Kaiming</surname>
            <given-names>He</given-names>
          </string-name>
          , Xiangyu Zhang, Shaoqing Ren, and
          <string-name>
            <given-names>Jian</given-names>
            <surname>Sun</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Deep residual learning for image recognition</article-title>
          .
          <source>In Proceedings of the IEEE conference on computer vision and pattern recognition</source>
          .
          <volume>770</volume>
          -
          <fpage>778</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <surname>Yuhang</surname>
            <given-names>He</given-names>
          </string-name>
          , Ziyu Pan,
          <string-name>
            <given-names>Lingxi</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <article-title>Yunxiao Shan, Dongpu Cao, and</article-title>
          <string-name>
            <given-names>Long</given-names>
            <surname>Chen</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>Real-Time Vehicle Detection from Short-range Aerial Image with Compressed MobileNet</article-title>
          . In 2019 International Conference on Robotics and
          <article-title>Automation (ICRA)</article-title>
          . IEEE,
          <fpage>8339</fpage>
          -
          <lpage>8345</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <surname>Andrew</surname>
            <given-names>G Howard</given-names>
          </string-name>
          ,
          <article-title>Menglong Zhu</article-title>
          , Bo Chen, Dmitry Kalenichenko, Weijun Wang, Tobias Weyand, Marco Andreetto, and
          <string-name>
            <given-names>Hartwig</given-names>
            <surname>Adam</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>MobileNets: Eficient convolutional neural networks for mobile vision applications</article-title>
          .
          <source>arXiv preprint arXiv:1704.04861</source>
          (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <surname>Diederik</surname>
            <given-names>P</given-names>
          </string-name>
          <string-name>
            <surname>Kingma and Jimmy Ba</surname>
          </string-name>
          .
          <year>2015</year>
          .
          <article-title>Adam: A method for stochastic optimization</article-title>
          .
          <source>In Proc. of ICLR</source>
          . 1-
          <fpage>13</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <surname>Guoxi</surname>
            <given-names>Liang</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Byung-Won</surname>
            <given-names>On</given-names>
          </string-name>
          , Dongwon Jeong,
          <string-name>
            <surname>Hyun-Chul Kim</surname>
          </string-name>
          , and Gyu Sang Choi.
          <year>2018</year>
          .
          <source>Automated Essay Scoring: A Siamese Bidirectional LSTM Neural Network Architecture. Symmetry</source>
          <volume>10</volume>
          ,
          <issue>12</issue>
          (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>Laura</given-names>
            <surname>Lopez-Fuentes</surname>
          </string-name>
          , Joost van de Weijer, Marc Bolanos, and
          <string-name>
            <given-names>Harald</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>
          , Dublin, Ireland.
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <surname>Hussein</surname>
            <given-names>Mouzannar</given-names>
          </string-name>
          , Yara Rizk, and
          <string-name>
            <given-names>Mariette</given-names>
            <surname>Awad</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>Damage Identification in Social Media Posts using Multimodal Deep Learning.</article-title>
          .
          <source>In ISCRAM.</source>
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <surname>Cristian</surname>
            <given-names>Onose</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dumitru-Clementin Cercel</surname>
          </string-name>
          , and
          <string-name>
            <surname>Stefan</surname>
          </string-name>
          Trausan-Matu.
          <year>2019</year>
          .
          <article-title>SC-UPB at the VarDial 2019 Evaluation Campaign: Moldavian vs. Romanian Cross-Dialect Topic Identification</article-title>
          .
          <source>In Proceedings of the Sixth Workshop on NLP for Similar Languages, Varieties and Dialects</source>
          .
          <volume>172</volume>
          -
          <fpage>177</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <surname>Jefrey</surname>
            <given-names>Pennington</given-names>
          </string-name>
          , Richard Socher, and
          <string-name>
            <given-names>Christopher</given-names>
            <surname>Manning</surname>
          </string-name>
          .
          <year>2014</year>
          .
          <article-title>Glove: Global vectors for word representation</article-title>
          .
          <source>In Proceedings of the 2014 conference on empirical methods in natural language processing (EMNLP)</source>
          .
          <volume>1532</volume>
          -
          <fpage>1543</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <surname>Matthew</surname>
            <given-names>E Peters</given-names>
          </string-name>
          , Mark Neumann, Mohit Iyyer, Matt Gardner, Christopher Clark,
          <string-name>
            <given-names>Kenton</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>and Luke</given-names>
            <surname>Zettlemoyer</surname>
          </string-name>
          .
          <year>2018</year>
          .
          <article-title>Deep contextualized word representations</article-title>
          .
          <source>arXiv preprint arXiv:1802</source>
          .
          <volume>05365</volume>
          (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <surname>Yara</surname>
            <given-names>Rizk</given-names>
          </string-name>
          , Hadi Samer Jomaa, Mariette Awad, and
          <string-name>
            <given-names>Carlos</given-names>
            <surname>Castillo</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <article-title>A computationally eficient multi-modal classification approach of disaster-related Twitter images</article-title>
          .
          <source>In Proceedings of the 34th ACM/SIGAPP Symposium on Applied Computing. ACM</source>
          ,
          <year>2050</year>
          -
          <fpage>2059</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <surname>Jiajun</surname>
            <given-names>Shi</given-names>
          </string-name>
          , Wenjie Yin, Yipai Du,
          <string-name>
            <given-names>and John</given-names>
            <surname>Folkesson</surname>
          </string-name>
          .
          <year>2019</year>
          .
          <source>Automated Underwater Pipeline Damage Detection using Neural Nets. In ICRA 2019 Workshop on Underwater Robotics Perception.</source>
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <surname>Christian</surname>
            <given-names>Szegedy</given-names>
          </string-name>
          , Vincent Vanhoucke, Sergey Iofe, Jon Shlens, and
          <string-name>
            <given-names>Zbigniew</given-names>
            <surname>Wojna</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Rethinking the inception architecture for computer vision</article-title>
          .
          <source>In Proceedings of the IEEE conference on computer vision and pattern recognition</source>
          .
          <volume>2818</volume>
          -
          <fpage>2826</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <surname>Ming</surname>
            <given-names>Tan</given-names>
          </string-name>
          , Cicero dos Santos, Bing Xiang, and
          <string-name>
            <given-names>Bowen</given-names>
            <surname>Zhou</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>LSTM-based Deep Learning Models for Non-factoid Answer Selection</article-title>
          .
          <source>In Proc. of ICLR.</source>
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <surname>Ashish</surname>
            <given-names>Vaswani</given-names>
          </string-name>
          , Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez,
          <string-name>
            <surname>Łukasz Kaiser</surname>
            , and
            <given-names>Illia</given-names>
          </string-name>
          <string-name>
            <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>5998</volume>
          -
          <fpage>6008</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <surname>Yingbo</surname>
            <given-names>Zhou</given-names>
          </string-name>
          , Utkarsh Porwal, and
          <string-name>
            <given-names>Roberto</given-names>
            <surname>Konow</surname>
          </string-name>
          .
          <year>2017</year>
          .
          <article-title>Spelling Correction as a Foreign Language</article-title>
          . (
          <year>2017</year>
          ).
          <source>arXiv:cs.CL/1705.07371</source>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>