<!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>Multi-lingual Author Profiling on SMS Messages using Machine Learning Approach with Statistical Feature Selection</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>D. Thenmozhi</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>A. Kalaivani</string-name>
          <email>kalaivania@ssn.edu.in</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Chandrabose Aravindan</string-name>
          <email>aravindanc@ssn.edu.in</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of CSE, SSN College of Engineering</institution>
          ,
          <addr-line>Chennai</addr-line>
        </aff>
      </contrib-group>
      <abstract>
        <p>Authorship profiling is the process of identifying authors' demographic traits by analyzing their written text. It has several applications in areas such as security and forensic analysis. People use social media as a major platform to share their thoughts and ideas. However, they use more than one language for their writings. It is a challenging task to perform author profiling from multilingual short text. In this paper, we present our methodology for a task to identify gender and age of the author from their SMS messages using a machine learning approach. We have used a statistical feature selection methodology to select the features that are significantly contributing for the gender and age classifications. We have performed paired t-test to show that the improvement in performance using feature selection is statistically significant. We have evaluated our methodology using the data set given by MAPonSMS@FIRE20181 shared task, and have obtained 85% and 63% accuracy for gender and age classifications respectively.</p>
      </abstract>
      <kwd-group>
        <kwd>Author profiling</kwd>
        <kwd>Machine learning</kwd>
        <kwd>Feature selection</kwd>
        <kwd>Text mining</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1 Introduction</title>
      <p>
        Authorship profiling is the process of identifying the author’s demographic features
such as gender, age, occupation, native language by analyzing author’s text. It has
several applications like security, forensic analysis, marketing and identification of fake
profiles on social media. Currently, people use several platforms such as Blogs, Tweets,
YouTube, Facebook, and SMS on mobiles to share their thoughts, comments, and ideas.
These platforms allow multiple languages that facilitate the user to write in their
native languages. Several research work have been reported for author profiling from
mono-lingual text [
        <xref ref-type="bibr" rid="ref13 ref3">3, 13</xref>
        ]. A very few research work [
        <xref ref-type="bibr" rid="ref5 ref6">6, 5</xref>
        ] have been carried out for
author profiling from multi-lingual text. Several approaches [
        <xref ref-type="bibr" rid="ref13 ref14 ref15">13, 15, 14</xref>
        ] have been
reported on author profiling tasks. In this work, we present a language agnostic approach
without any language specific processing, along with a statistical feature selection
technique, namely chi-square feature selection, for author profiling task. This approach may
be very useful to perform author profiling in any language. The shared task
MAPonSMS@FIRE2018 focuses on multi-lingual author profiling from SMS messages. This
task aims to identify the gender and age of the author based on their writings using
1 https://lahore.comsats.edu.pk/cs/MAPonSMS/index.html
two languages namely English and Urdu. MAPonSMS@FIRE2018 is a shared Task
on Multi-lingual Author Profiling on SMS (MAPonSMS) collocated with FIRE-2018
(Forum for Information Retrieval Evaluation, 2018).
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>Related Work</title>
      <p>
        Author profiling tasks are being organized by PAN every year since 2013. PAN 2013
[
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] to PAN 2016 [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] focused on identification of age and gender in multiple
languages. In this line, PAN 2017 [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] introduced gender and language variety
identification tasks. Features such as bag of words [
        <xref ref-type="bibr" rid="ref1 ref17">17, 1</xref>
        ], character n-gram [
        <xref ref-type="bibr" rid="ref12 ref2">2, 12</xref>
        ], word n-gram
[
        <xref ref-type="bibr" rid="ref10 ref4">4, 10</xref>
        ], and word embeddings [
        <xref ref-type="bibr" rid="ref11 ref8">8, 11</xref>
        ] have been used for author profiling tasks. Support
Vector Machine (SVM) is the popular classifier that has been used [
        <xref ref-type="bibr" rid="ref10 ref17 ref8">17, 10, 8</xref>
        ] for author
profiling tasks. Deep learning methods have also been employed [
        <xref ref-type="bibr" rid="ref11 ref16 ref8">8, 11, 16</xref>
        ] to identify
gender and language variations of the author. These approaches utilize different feature
extraction techniques with a classifier for author profiling tasks. We present a language
agnostic approach without any language specific or linguistic related processing for
author profiling task just by incorporating chi-square feature selection to extract the
useful features. We have used all the terms as features and employed statistical feature
selection that selects the most significant features for author profiling task.
3
      </p>
    </sec>
    <sec id="sec-3">
      <title>Proposed Methodology</title>
      <p>We have used a supervised approach with statistical feature selection for the author
profiling task. The steps used in our approach are given below.</p>
      <p>
        – Preprocess the data
– Extract bag of words (BOW) features [
        <xref ref-type="bibr" rid="ref1 ref14 ref17">14, 1, 17</xref>
        ] from training data
– Apply statistical feature selection namely 2 for both gender and age classification
– Build a model using a classifier from the selected features of training data
– Predict class label for the test instances as “male” or “female” as gender and “15–
19”, “19–24” and “25–xx” as age group using the model
      </p>
      <sec id="sec-3-1">
        <title>The steps are explained below in detail.</title>
        <p>3.1</p>
        <sec id="sec-3-1-1">
          <title>Feature Extraction and Feature Selection</title>
          <p>
            The given data is with UTF encoding. We have not used any language specific (or
linguistic related) processing to extract the features. Thus, we did not preprocess the
text with stop word removal and stemming techniques. The given text consists of
CRLF and space as line delimiter and word delimiter respectively. These delimiters are
used to tokenize the text. Our approach is completely language agnostic which consider
the text as sequence of Unicode bytes, so that the approach may be applied for any
language. We have removed only five punctuations namely ’.’, ’,’, ’?’, ’;’, and ’:’. Such
punctuations do not contribute to authorship analysis. Thus, we simply took bag of
words to consider all the words in the text. However, the number of features that are
extracted may be huge. This may be reduced by applying feature selection techniques.
We have observed from our previous research [
            <xref ref-type="bibr" rid="ref20 ref21">20, 21</xref>
            ] that chi-square feature selection
significantly improves the performance of text analysis tasks. Hence, in the current task
also, we have employed 2 feature selection technique to extract the useful features that
are contributing towards the gender and age classifications.
          </p>
        </sec>
        <sec id="sec-3-1-2">
          <title>Features Selection for Gender Classification: Gender Classification has two cat</title>
          <p>
            egories namely “male” and “female”. Thus, we have constructed a 2 2 contingency
table (Table 1) or CHI table [
            <xref ref-type="bibr" rid="ref20 ref21 ref7 ref9">9, 7, 20, 21</xref>
            ] for every feature fx. This table contains the
observed frequency (O) of fx for every category G and :G.
          </p>
          <p>
            The expected frequencies (E) for every feature fx can be calculated from the
observed frequencies (O) using Equation 1 [
            <xref ref-type="bibr" rid="ref9">9</xref>
            ].
          </p>
          <p>E(x; y) = a2ffx;:fxgO(a; y) b2fG;:GgO(b; y) (1)
n
where n is the total number of instances, x represents whether the feature fx is
present or not, y represents whether the instance belongs to G or not.</p>
          <p>
            The expected frequencies namely E(fx; G), E(fx; :G), E(:fx; G) and
E(:fx; :G) are calculated using Equation 1 for gender classification. Then the 2
statistical value for each feature fx is calculated using Equation 2 [
            <xref ref-type="bibr" rid="ref9">9</xref>
            ].
2
statfx =
x2ffx;:fxg y2fG;:Gg
(O(x; y) E(x; y))2
          </p>
          <p>E(x; y)</p>
          <p>Since, gender classification is a two class problem (n = 2), 2 critical value with
degree of freedom 1 (n-1) is 2.706 (from chi-square table) and that was chosen as a
threshold for gender classification. The set of features whose s2tat value is greater than
2
crit( =0:01;df=1) : 2:706 are considered to be significant features for gender
classification and those selected features are used for building a model using a classifier.</p>
        </sec>
        <sec id="sec-3-1-3">
          <title>Features Selection for Age Classification: Age Classification has three categories</title>
          <p>namely “15–19”, “19–24” and “25–xx”. We form a 2 3 CHI table (Table 2) similar to
Gender classification for every feature fx.</p>
          <p>
            The expected frequencies (E) namely E(fx; A1), E(fx; A2), E(fx; A3),
E(:fx; A1), E(:fx; A2) and E(:fx; A3) can be calculated using Equations 3 [
            <xref ref-type="bibr" rid="ref21">21</xref>
            ].
          </p>
          <p>E(x; y) =
a2ffx;:fxgO(a; y) b2fA1;A2;A3gO(b; y)
n
(2)
(3)</p>
          <p>
            Then the 2 statistical value for each feature fx is calculated using the Equation 4
[
            <xref ref-type="bibr" rid="ref21">21</xref>
            ].
          </p>
          <p>Age classification is a three class problem (n=3). 2 critical value with degree
of freedom 2 (n-1) is 4.605 (from chi-square table) and that was chosen as a
threshold for age classification. The set of features whose s2tat value is greater than
2
crit( =0:01;df=2) : 4:605 are considered to be significant features for age
classification and those features are used for building a model using a classifier.
The models for gender and age classifications are built from training data using Multi
Layer Perceptron (MLP) and Multinomial Naive Bayes (MNB) classifiers by
considering the selected feature set. The class label either “male” or “female” is now predicted
for the test data instances by using the gender model. Similarly, the age model is used
to predict the class label “15–19”, “19–24” or “25–xx” for the test data instances.</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4 Implementation and Results</title>
      <p>We have implemented our methodology in Python for the Shared Tasks on Multilingual
Author Profiling on SMS (MAPonSMS). The data set used to evaluate the task
consists of 350 author profiles as training data and 150 profiles as test data. The ground
truth for the training instances has been provided along with the data. The bag of word
features are extracted from the training instances by tokenizing the text based on line
and word delimiters after removing the punctuation marks, namely ’.’, ’,’, ’?’, ’;’, and
’:’, which do not contribute to authorship analysis. We have obtained a total of 23956
features from training data. We have implemented our 2 feature selection algorithms
to extract the significant features for both gender and age classifications. We have
obtained 1343 and 1091 features for gender and age classifications respectively. We have
used Scikit–learn machine learning library to vectorize the training instances for the
selected features and to implement the classifiers for the classification tasks.
CountVectorizer of sklearn with selected features as vocabulary is used for vectorization. We
have employed several classifiers namely, Multinomial Naive Bayes, Gaussian Naive
Bayes (GNB), Decision Tree (DT), Random Forest (RF), Extra Trees (ET), Ada Boost
(AB), Gradient Boosting (GB), Support Vector Machines (SVM), Stochastic Gradient
Descent (SGD) and Multi Layer Perceptron, and measured 10-fold cross validation to
select the best classifier for gender and age predictions. Table 3 shows the cross
validation output of various classifiers without feature selection. This table also shows the
cross validation output of various classifiers using 2 feature selection.</p>
      <p>It is evident from the results that all the classifiers except DT perform better using
selected features for gender classification. Also, all the classifiers except two namely
GNB and AB perform better using selected features for age classification. To show that
the feature selection significantly improved the performance for author profiling, we
have performed statistical test namely paired t-test between the approach without
feature selection and the approach using feature selection. We have obtained p value as
0.0015 for gender classification which is lesser than 0.05 and this shows that the
improvement is statistically significant. For age classification, we have obtained p value as
0.55 which is not lesser than 0.05 and it shows that the improvement is not statistically
significant. However, we have chosen MLP as the best classifier, because it improved
the accuracy by more than 6.89% for feature selection approach. More hidden layers
may be added in future to incorporate deep learning approach with enhanced data set.
To show that the variations between folds are not significant, we have performed
oneway Anova test (statistical test) for 10 random runs on training data. Table 4 shows the
10-fold cross validation accuracies we have obtained using MLP and selected features
for 10 random runs.</p>
      <p>We have obtained a p-value of 0.991 for one-way Anova test for gender
classification based on cross validation of 10 random runs. This is greater than 0.05 which shows
that the variations on different folds are not statistically significant. Similarly, we have
performed one-way Anova test for age classification based on cross validation of 10
random runs. Table 5 shows the 10-fold cross validation accuracies we have obtained
using MLP with selected features for age classification.</p>
      <p>For age classification, we have obtained a p-value of 0.999 for one-way Anova test
based on cross validation of 10 random runs. This is greater than 0.05 which shows
that the variations on different folds are not statistically significant in age classification.
Hence, we have chosen MLP to build models for gender and age classifications. These
models are used to predict gender and age for the test instances.</p>
      <p>We have submitted two runs for the shared task based on the top two classifiers
namely MLP and MNB. For the first run, we have used MLP classifier to build models
for gender and age classifications and predicted the class labels for the 150 test
instances. MNB classifier was used for the second run. The code to reproduce the results
is available in Github link2.</p>
      <p>Table 6 shows the result we have obtained for these two runs. Our machine learning
approach with statistical feature selection ranked second among the approaches
presented by several teams.</p>
      <p>Since the ground truth for test data is not provided by the organizers, we are unable
to measure other metrics namely precision, recall, F-measure and rejection and perform
detailed analysis including statistical tests such as paired t-test and McNemar test on
the test data results.
5</p>
    </sec>
    <sec id="sec-5">
      <title>Conclusions</title>
      <p>We have presented a methodology for multi lingual author profiling to identify the
gender and age of the author based on his/her writings in SMS. We have proposed a
machine learning approach which is language agnostic with statistical feature selection to
identify the gender as either “male” or ”female” and to identify the age as “15–19”,
“19–24” or “25–xx” without any language specific processing. In our method, we have
selected features using 2 method from bag of word features and feature vectors are
constructed from training data for the selected features. We have employed various
classifiers to build the models for gender and age classification. We have performed</p>
      <sec id="sec-5-1">
        <title>2 https://github.com/ThenmozhiDurairaj/SSN_SMS</title>
        <p>
          a statistical test namely paired t-test which shows that the approach using feature
selection significantly improved the performance for gender classification. The best two
models namely MLP and MNB were chosen based on the cross validation accuracy to
build the models. We have performed one-way Anova test to show that the variation
among fold results are not statistically significant. We have used the data set given by
MAPonSMS@FIRE2018 shared task to evaluate our methodology. The performance
has been measured using the metric accuracy. We have obtained the accuracy of 85%
and 63% for gender and age predictions respectively. We have shown from our earlier
research [
          <xref ref-type="bibr" rid="ref18 ref19">18, 19</xref>
          ] that the clause-based features (predicates) improve the performance
in information extraction and classification tasks. The performance of author profiling
may also be improved further if we incorporate the predicate information of the text as
features.
        </p>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Adame-Arcia</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Castro-Castro</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bueno</surname>
            ,
            <given-names>R.O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Muñoz</surname>
          </string-name>
          , R.:
          <article-title>Author profiling, instancebased similarity classification</article-title>
          .
          <source>In: CEUR Workshops Proceedings</source>
          . vol.
          <year>1866</year>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Alrifai</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rebdawi</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ghneim</surname>
          </string-name>
          , N.:
          <article-title>Arabic tweeps gender and dialect prediction</article-title>
          .
          <source>Cappellato</source>
          et al.[
          <volume>13</volume>
          ] (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Argamon</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Koppel</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pennebaker</surname>
            ,
            <given-names>J.W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schler</surname>
          </string-name>
          , J.:
          <article-title>Automatically profiling the author of an anonymous text</article-title>
          .
          <source>Communications of the ACM</source>
          <volume>52</volume>
          (
          <issue>2</issue>
          ),
          <fpage>119</fpage>
          -
          <lpage>123</lpage>
          (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Ciobanu</surname>
            ,
            <given-names>A.M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zampieri</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Malmasi</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dinu</surname>
            ,
            <given-names>L.P.</given-names>
          </string-name>
          :
          <article-title>Including dialects and language varieties in author profiling</article-title>
          .
          <source>arXiv preprint arXiv:1707.00621</source>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Fatima</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Anwar</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Naveed</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Arshad</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nawab</surname>
            ,
            <given-names>R.M.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Iqbal</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Masood</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Multilingual sms-based author profiling: Data and methods</article-title>
          .
          <source>Natural Language</source>
          Engineering pp.
          <fpage>1</fpage>
          -
          <lpage>30</lpage>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Fatima</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hasan</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Anwar</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nawab</surname>
            ,
            <given-names>R.M.A.</given-names>
          </string-name>
          :
          <article-title>Multilingual author profiling on facebook</article-title>
          .
          <source>Information Processing &amp; Management</source>
          <volume>53</volume>
          (
          <issue>4</issue>
          ),
          <fpage>886</fpage>
          -
          <lpage>904</lpage>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <given-names>Janaki</given-names>
            <surname>Meena</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Chandran</surname>
          </string-name>
          ,
          <string-name>
            <surname>K.</surname>
          </string-name>
          :
          <article-title>Naive bayes text classification with positive features selected by statistical method</article-title>
          .
          <source>In: In International Conference on Autonomic Computing and Communications</source>
          ,
          <string-name>
            <surname>ICAC</surname>
          </string-name>
          <year>2009</year>
          . pp.
          <fpage>28</fpage>
          -
          <lpage>33</lpage>
          . IEEE (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Kodiyan</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hardegger</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Neuhaus</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cieliebak</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Author profiling with bidirectional rnns using attention with grus: notebook for pan at clef 2017</article-title>
          . In:
          <article-title>CLEF 2017 Evaluation Labs</article-title>
          and Workshop-Working Notes Papers, Dublin, Ireland,
          <fpage>11</fpage>
          -
          <issue>14</issue>
          <year>September 2017</year>
          . vol.
          <year>1866</year>
          . RWTH Aachen (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <given-names>Li</given-names>
            <surname>Yanjun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.L.</given-names>
            ,
            <surname>Chung</surname>
          </string-name>
          ,
          <string-name>
            <surname>S.M.:</surname>
          </string-name>
          <article-title>Text clustering with feature selection by using statistical data</article-title>
          .
          <source>IEEE Transactions on Knowledge and Data Engineering</source>
          <volume>20</volume>
          (
          <issue>5</issue>
          ),
          <fpage>641</fpage>
          -
          <lpage>652</lpage>
          (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Markov</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gómez-Adorno</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sidorov</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          :
          <article-title>Language-and subtask-dependent feature selection and classifier parameter tuning for author profiling</article-title>
          .
          <source>Working Notes Papers of the CLEF</source>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Miura</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Taniguchi</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Taniguchi</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ohkuma</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Author profiling with word+ character neural attention network</article-title>
          .
          <source>In: CLEF (Working Notes)</source>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Ogaltsov</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Romanov</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Language variety and gender classification for author profiling in pan 2017</article-title>
          . Cappellato et al.[
          <volume>13</volume>
          ] (
          <year>2017</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>
          ,
          <string-name>
            <surname>Koppel</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stamatatos</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Inches</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          :
          <article-title>Overview of the author profiling task at pan 2013</article-title>
          .
          <source>In: CLEF Conference on Multilingual and Multimodal Information Access Evaluation</source>
          . pp.
          <fpage>352</fpage>
          -
          <lpage>365</lpage>
          . CELCT (
          <year>2013</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>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 5th author profiling task at pan 2017: Gender and language variety identification in twitter</article-title>
          .
          <source>Working Notes Papers of the CLEF</source>
          (
          <year>2017</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>Verhoeven</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Daelemans</surname>
            ,
            <given-names>W.</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 4th author profiling task at pan 2016: cross-genre evaluations</article-title>
          .
          <source>In: Working Notes Papers of the CLEF</source>
          <year>2016</year>
          <article-title>Evaluation Labs</article-title>
          . CEUR Workshop Proceedings/Balog, Krisztian [edit.]; et al. pp.
          <fpage>750</fpage>
          -
          <lpage>784</lpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Sierra</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Montes-y Gómez</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Solorio</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>González</surname>
            ,
            <given-names>F.A.</given-names>
          </string-name>
          :
          <article-title>Convolutional neural networks for author profiling in pan 2017</article-title>
          . In: CLEF (Working Notes) (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Tellez</surname>
            ,
            <given-names>E.S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Miranda-Jiménez</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Graff</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Moctezuma</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Gender and language variety identification with microtc</article-title>
          .
          <source>Cappellato</source>
          et al.[
          <volume>13</volume>
          ] (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Thenmozhi</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Aravindan</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>An automatic and clause based approach to learn relations for ontologies</article-title>
          .
          <source>The Computer Journal</source>
          <volume>59</volume>
          (
          <issue>6</issue>
          ),
          <fpage>889</fpage>
          -
          <lpage>907</lpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Thenmozhi</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Aravindan</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Paraphrase identification by using clause based similarity features and machine translation metrics</article-title>
          .
          <source>The Computer Journal</source>
          <volume>59</volume>
          (
          <issue>9</issue>
          ),
          <fpage>1289</fpage>
          -
          <lpage>1302</lpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Thenmozhi</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mirunalini</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Aravindan</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Decision tree approach for consumer health information search</article-title>
          .
          <source>In: FIRE (Working Notes)</source>
          . pp.
          <fpage>221</fpage>
          -
          <lpage>225</lpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <surname>Thenmozhi</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mirunalini</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Aravindan</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Feature engineering and characterization of classifiers for consumer health information search</article-title>
          .
          <source>In: Forum for Information Retrieval Evaluation</source>
          . pp.
          <fpage>182</fpage>
          -
          <lpage>196</lpage>
          . Springer (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>