<!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>A Hierarchical Attention Network for Bots and Gender Profiling</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>Cristian Onose</institution>
          ,
          <addr-line>Claudiu-Marcel Nedelcu, Dumitru-Clementin Cercel, and Stefan Trausan-Matu</addr-line>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>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>
      <abstract>
        <p>Author profiling represents the task of detecting various author aspects, for instance age, gender or personality, by analyzing written text. The bot identification issue is particularly important in today's society given the increase in social media usage and the effect of opinion influencing bots on the public. This paper describes our solution for the Bots and Gender Profiling problem, introduced at PAN 2019. The PAN challenge is a two part multilingual problem, namely for the English and Spanish languages. The first task has the goal of identifying if the author is a human or a bot. For the second task, the system has to detect the gender of human authors. Our solution uses a deep learning model based on Hierarchical Attention Networks (HAN) as well as pretrained word embeddings for text representation. For the first task, the official results show that the model achieves an accuracy score of 0.8943 for English and 0.8483 for Spanish. For the second task, our model obtains 0.7485 accuracy for English and 0.6711 for Spanish.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Author profiling refers to the task of identifying different author traits by analyzing the
content and style of written text. Such characteristics can include age, gender or even
if the author is real of not. Due to the recent increase in the usage of social media, the
task of detecting automatically generated text has seen additional interest. A bot can
influence the opinion of users in various areas of interest such as politics, commercial
interest or religion. For instance, an example of negative influence was observed during
the presidential elections in the United States in 2016 [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].
      </p>
      <p>
        Herein, we present our approach for the Bots and Gender Profiling competition, a
novel issue introduced in the 2019 edition of the PAN evaluation campaign [
        <xref ref-type="bibr" rid="ref13 ref4">13,4</xref>
        ]. This
year, the organizers proposed two tasks for this competition. Initially, the task involves
determining the author of a Twitter feed, namely, the classification between bots and
humans. Afterwards, in the case of human authors, we are tasked with determining the
gender of the author. Traditionally, approaches for solving these problems use machine
learning algorithms with hand crafted or content features: punctuation, grammatical
errors and their frequencies, bag of words, n-grams, average sentence length,
part-ofspeech tagging or hyperlinks [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ]. Lately, deep learning methods based on language
models, such as word or character embeddings, have been proposed. Most popular
architectures include Convolutional Neural Networks, Recurrent Neural Networks (RNN)
or RNNs with memory cells such as Long Short-term Memory [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ].
      </p>
      <p>
        Motivated by the recent progress with deep learning, we choose a top performing
deep learning architecture, used for text classification, as our model. Specifically, we
apply the Hierarchical Attention Networks (HAN) [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] model with pretrained
embeddings needed to encode the tweets as input. Recently, HAN architectures have been
used to efficiently solve diverse text classification tasks such as identification of dialect
varieties [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ], satirical texts [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ] or style change detection [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. Note that we did not
use any additional data to supplement the dataset during training, however, we rely on
the word representations trained on additional datasets. In contrast to traditional
machine learning models, where hand crafted features are required, our approach learns
the features from the data.
      </p>
      <p>We used the model described in this paper to participate in both tasks by considering
them as binary classification problems. To test the performance of the HAN
architecture, we experimented with different embeddings. According to the official results, our
submission achieved the following accuracy scores: 0.8943 and 0.8483 for task 1, in the
case of English and Spanish, respectively; 0.7485 and 0.6711 for task 2 also for English
and Spanish. Overall, the performance of our system was ranked as average, a more
detailed analysis is presented in Section 5.</p>
      <p>The remainder of this paper is structured as follows. In Section 2 we describe the
competition dataset and the preprocessing steps applied. Section 3 gives an overview of
the word embeddings used in order to represent text as input for our model. In Section
4 we briefly review the methodology behind our solution as well as implementation
details, while the results are presented in Section 5. Lastly, Section 6 includes our
conclusions.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Data Description and Preprocessing</title>
      <p>The dataset provided contains English and Spanish texts collected from the Twitter
social media platform. Each user feed has exactly 100 tweets which are supplied raw,
without any preprocessing, meaning that retweets are not removed and the language is
not guaranteed. In order to avoid overfitting, the dataset is pre-split between training and
validation, for each language, as described in Table 1. For both tasks and languages the
dataset is perfectly balanced. This is useful as it ensures that classes are not advantaged
or disadvantaged based on their proportions. The limitation of the dataset consists in
the small number of items which decreases the effectiveness of deep learning solutions.
Additionally, the number of Spanish samples is lower than the English ones. Our
experiments confirm this observation as the model performs better on the English subset.</p>
      <p>To improve the learning performance, we cleaned up the dataset as follows. First,
we preprocess the data by replacing user tags with the user string because they can act
as biases for our model. We choose not to remove them because multiple user tagging
is a method used by bots in order to attract attention. Similarly, we replace hyperlinks
with the url string. Furthermore, we change emojis into their textual representation, for
instance grinning face1. As a last step, we remove all punctuation and, for every author,
we consider each tweet as a sentence by merging them and ending each tweet with a
period sign. This representation is necessary since our model receives as input a large
portion of text divided into sentences.
3</p>
    </sec>
    <sec id="sec-3">
      <title>Word embeddings</title>
      <p>
        A word embedding is a method of encoding text in the form of numerical vectors with
the goal of maintaining the natural language relationships in the new vector space. For
instance, a well constructed model will capture various semantic and syntactic relations
such as meaning, morphology or context. While these representations can be as simple
as one-hot vectors, lately, complex neural network models for learning such embeddings
have been introduced [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ].
      </p>
      <p>
        Given the small size of our dataset, in our experiments, we choose to use pretrained
embedding models as follows. For English we use a model [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] with a 400 word
vector size that was trained using word2vec [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] on 400 million Twitter posts. The model
excludes tokens that have a frequency lower than 5 with the final model having a
vocabulary of around 3 million words. Similarly, for Spanish we use a model [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] that
was also trained using word2vec with a minimum word frequency of 5. The corpus
used during training consists of around 1.5 billion words created from multiple Spanish
web resources. The final embedding model contains nearly 1 million word vectors of
dimension 300.
      </p>
      <sec id="sec-3-1">
        <title>1 We used the python emoji package: https://pypi.org/project/emoji/</title>
        <p>
          Hierarchical Attention Networks (HAN) [
          <xref ref-type="bibr" rid="ref17">17</xref>
          ] were introduced in order to solve
document classification problems. They achieve this by modeling the two level hierarchical
structure of documents. The first level is represented by the words that are used to build
sentences, and the second one, the sentences that form the document. This model is
able to distinguish between the importance of different text sections with respect to the
context. The first attention mechanism creates sentence embeddings by encoding the
sequences of word embeddings using Bidirectional Gated Recurrent Units (Bi-GRU)
[
          <xref ref-type="bibr" rid="ref3 ref6">3,6</xref>
          ]. Similarly, the second attention layers uses Bi-GRU cells to create an encoding for
the document based on the representation from the first attention mechanism. Lastly,
based on the resulting document encoding classification is performed.
        </p>
        <p>
          The model uses two hyper parameters in order to maintain a consistent input across
different sized documents: maximum number of words in a sentence (tweet in our case)
and maximum number of sentences per document (Twitter feed). While the document
sentence size is always 100, defined by the dataset structure we discussed, we choose the
number of words by investigating the distribution across the entire dataset. This offers
us an initial value for the hyper parameter which we improved through a grid search.
We observe that the performance doesn’t improve with a value greater than 10 for the
maximum tweet length in words. Likewise, we set the size of the attention layers to be
200. Finally, the model is trained using Adam [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] with a learning rate of = 0:0005
and recommended values for the other hyper parameters. Training is done in batches of
64 until the stop condition is met, namely when no improvement in the validation loss
function is observed for two epochs.
5
        </p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Results</title>
      <p>Overall, our solution, combined for all tasks and languages, achieves a middle rank in
the competition, more precisely position 31 out of 55 teams. As a per task score we
obtain a better rank in the case of the Spanish language. However, the accuracy for
English is higher than that of Spanish.</p>
      <p>
        Table 2 present the most relevant ranks and scores in order to better view the
solutions performance. For the first task, the best three models achieved roughly 0:06 and
0:08 higher accuracy when compared to our solution, for English and Spanish,
respectively. Similarly, for the second task, the best three models achieved roughly 0:1 and
0:13 higher accuracy. For the Spanish language, in the second task, the model performs
poorly in comparison to the other task as well as the other language. Also, the baseline
solutions [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ], namely low dimensionality statistical embedding (LDSE) [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ], various
embeddings such as word vectors, character and word n-grams achieve a mid
performance between the top models and our solution.
      </p>
      <p>In Figure 1 we present the confusion matrices as a method to identify the
classification bias of the model. The model has the tendency to miss classify more frequently
bots as human as well as males as females then the reversed counterparts.
6</p>
    </sec>
    <sec id="sec-5">
      <title>Conclusions</title>
      <p>This paper describes our approach for solving the problem of Bots and Gender Profiling
on Twitter user feeds that was introduced at the PAN 2019 competition. The task
consists of two multilingual tasks (English and Spanish): binary classification between bots
and humans, and in the case of a human author, classification as male or female. Our
proposed solution is a deep learning model based on the Hierarchical Attention
Network (HAN) architecture. In order to be consistent with the HAN model assumptions,
we view the user feeds as structured documents and tweets are regarded as sentences in
said documents. Language is represented as numerical input for the model with the help
of pretrained word embeddings. The official and training results show that our model
for English outperforms the one for Spanish. We attribute this decrease in performance
to the quality of the word embeddings, more precisely the fact the training corpus used
is broader unlike the English model that was trained on Twitter posts.</p>
    </sec>
    <sec id="sec-6">
      <title>Acknowledgments</title>
      <sec id="sec-6-1">
        <title>This work was supported by the 2008-212578 LT-fLL FP7 project.</title>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Bessi</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ferrara</surname>
          </string-name>
          , E.:
          <article-title>Social bots distort the 2016 US presidential election online discussion</article-title>
          .
          <source>First Monday</source>
          <volume>21</volume>
          (
          <issue>11-7</issue>
          ) (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Cardellino</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <source>Spanish Billion Words Corpus and Embeddings (March</source>
          <year>2016</year>
          ), https:// crscardellino.github.io/SBWCE/
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Cho</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Van Merriënboer</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gulcehre</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bahdanau</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bougares</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schwenk</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bengio</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Learning phrase representations using RNN encoder-decoder for statistical machine translation</article-title>
          .
          <source>arXiv preprint arXiv:1406.1078</source>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Daelemans</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kestemont</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Manjavancas</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Potthast</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rangel</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Specht</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stamatatos</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stein</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tschuggnall</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wiegmann</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zangerle</surname>
          </string-name>
          , E.: Overview of PAN 2019:
          <article-title>Author Profiling, Celebrity Profiling, Cross-domain Authorship Attribution and Style Change Detection</article-title>
          . In: Crestani,
          <string-name>
            <given-names>F.</given-names>
            ,
            <surname>Braschler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Savoy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Rauber</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Müller</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            ,
            <surname>Losada</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            ,
            <surname>Heinatz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            ,
            <surname>Cappellato</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Ferro</surname>
          </string-name>
          , N. (eds.)
          <source>Proceedings of the Tenth International Conference of the CLEF Association (CLEF</source>
          <year>2019</year>
          ). Springer (Sep
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Godin</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vandersmissen</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>De Neve</surname>
          </string-name>
          , W., Van de Walle, R.:
          <article-title>Multimedia lab @ ACL WNUT NER shared task: Named entity recognition for twitter microposts using distributed word representations</article-title>
          .
          <source>In: Proceedings of the Workshop on Noisy User-generated Text</source>
          . pp.
          <fpage>146</fpage>
          -
          <lpage>153</lpage>
          . Association for Computational Linguistics, Beijing, China (Jul
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Graves</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schmidhuber</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          :
          <article-title>Framewise phoneme classification with bidirectional LSTM and other neural network architectures</article-title>
          .
          <source>Neural Networks</source>
          <volume>18</volume>
          (
          <issue>5-6</issue>
          ),
          <fpage>602</fpage>
          -
          <lpage>610</lpage>
          (
          <year>2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Hosseinia</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mukherjee</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>A parallel hierarchical attention network for style change detection: Notebook for PAN at CLEF 2018</article-title>
          . In: Cappellato,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Ferro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            ,
            <surname>Nie</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Soulier</surname>
          </string-name>
          ,
          <string-name>
            <surname>L</surname>
          </string-name>
          . (eds.) Working Notes of CLEF 2018 -
          <article-title>Conference and Labs of the Evaluation Forum</article-title>
          , Avignon, France,
          <source>September 10-14</source>
          ,
          <year>2018</year>
          .
          <source>CEUR Workshop Proceedings</source>
          , vol.
          <volume>2125</volume>
          . CEURWS.org (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Kingma</surname>
            ,
            <given-names>D.P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ba</surname>
          </string-name>
          , J.:
          <article-title>Adam: A method for stochastic optimization</article-title>
          .
          <source>arXiv:1412.6980</source>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <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>Efficient estimation of word representations in vector space</article-title>
          .
          <source>arXiv:1301.3781</source>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Mikolov</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sutskever</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Corrado</surname>
            ,
            <given-names>G.S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dean</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          :
          <article-title>Distributed representations of words and phrases and their compositionality</article-title>
          .
          <source>In: Advances in neural information processing systems</source>
          . pp.
          <fpage>3111</fpage>
          -
          <lpage>3119</lpage>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Onose</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cercel</surname>
            ,
            <given-names>D.C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Trausan-Matu</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <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>
          . pp.
          <fpage>172</fpage>
          -
          <lpage>177</lpage>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Rangel</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Franco-Salvador</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.:</given-names>
          </string-name>
          <article-title>A low dimensionality representation for language variety identification</article-title>
          . In: Gelbukh,
          <string-name>
            <surname>A</surname>
          </string-name>
          . (ed.)
          <source>Computational Linguistics and Intelligent Text Processing</source>
          . pp.
          <fpage>156</fpage>
          -
          <lpage>169</lpage>
          . Springer International Publishing,
          <string-name>
            <surname>Cham</surname>
          </string-name>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Rangel</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Overview of the 7th author profiling task at PAN 2019: Bots and gender profiling</article-title>
          . In: Cappellato L.,
          <string-name>
            <surname>Ferro</surname>
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Müller</surname>
            <given-names>H</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Losada</surname>
            <given-names>D</given-names>
          </string-name>
          . (ed.)
          <article-title>CLEF 2019 Labs and Workshops, Notebook Papers</article-title>
          .
          <source>CEUR Workshop Proceedings. CEUR-WS.org</source>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Rangel</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chugur</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Potthast</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Trenkmann</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stein</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Verhoeven</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Daelemans</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          :
          <article-title>Overview of the 2nd author profiling task at PAN 2014</article-title>
          .
          <article-title>In: CLEF 2014 Evaluation Labs</article-title>
          and Workshop Working Notes Papers, Sheffield, UK,
          <year>2014</year>
          . pp.
          <fpage>1</fpage>
          -
          <lpage>30</lpage>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Rangel</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Montes-y Gómez</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Potthast</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stein</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>Overview of the 6th author profiling task at PAN 2018: multimodal gender identification in twitter</article-title>
          .
          <source>Working Notes Papers of the CLEF</source>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Yang</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mukherjee</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dragut</surname>
          </string-name>
          , E.:
          <article-title>Satirical news detection and analysis using attention mechanism and linguistic features</article-title>
          .
          <source>arXiv preprint arXiv:1709.01189</source>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Yang</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yang</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dyer</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>He</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Smola</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hovy</surname>
          </string-name>
          , E.:
          <article-title>Hierarchical attention networks for document classification</article-title>
          .
          <source>In: Proceedings of the 2016 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</source>
          . pp.
          <fpage>1480</fpage>
          -
          <lpage>1489</lpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>