<!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>
      <article-id pub-id-type="doi">10.18653/v1/n18-1202</article-id>
      <title-group>
        <article-title>Participation of UC3M in SDU@AAAI-21: A Hybrid Approach to Disambiguate Scientific Acronyms</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Areej Jaber</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Paloma Mart´ınez</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>30 Av. de la Universidad</institution>
          ,
          <addr-line>28911 Legane ́s, Madrid</addr-line>
          ,
          <country country="ES">Spain</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Jaffa street</institution>
          ,
          <addr-line>7 Tulkarem, Palestine</addr-line>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2018</year>
      </pub-date>
      <volume>1</volume>
      <fpage>1</fpage>
      <lpage>6</lpage>
      <abstract>
        <p>Acronyms disambiguation is considered a word sense disambiguation (WSD) task which consists on determining the correct expansion of an acronym based on a given context. This paper describes three hybrid systems to disambiguate acronyms in scientific documents, which combine three supervised machine learning (ML) models (Support Vector Machine, Naive Bayes and K-Nearest Neighbor) with cosine similarity on SciAD corpus. Our system achieved it's best performance on the independent test set on Naive Bayes and cosine similarity with 92.15% of precision, 77.97% of recall and 84.47% of F1-macro measure.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>Acronyms are defined as ’a short form of multiple words
or phrases’ which are used in various type of documents.
Normally its meaning is represented the first time is used in
each document. But there are many cases that it is used alone
without its meaning like in the case of clinical documents.</p>
      <p>There is no standard rules to create acronyms. Usually
each acronym has more than one meaning which is called
’expansion’ or ’long form’. Writing acronyms without their
expansions in the same sentence makes it ambiguous.
Determining the correct expansion for an acronym depends on
many factors like the domain it is used in. For example;
acronym ’ED’ could mean ’Emergency Department’ if it is
used in documents related to medical domain, or it could
mean ’Euclidean Distance’ if it is used in documents
related to mathematics domain. Furthermore, acronyms could
have many expansions even in the same domain like ’RNN’
which has two possible expansions ’Recurrent Neural
Network’ and ’Random Neural Networks’ which both of them
are used in computer science domain.</p>
      <p>Word Sense Disambiguation (WSD) is a Natural
Language Processing (NLP) task which is applied to determine
the right expansion of acronyms based on it’s context. There
are two types of WSD; all words WSD which disambiguates
all words in the given context. The second type is
Lexical sample WSD which disambiguates specific word in the
context. Disambiguate acronyms are considered a special
case of Lexical sample WSD.</p>
      <p>
        Three main approaches are applied extensively on WSD.
The first one is Knowledge based approach that integrates
lexical knowledge bases and exploits semantic similarity and
graph-based approaches. In similarity-based methods each
expansion of the ambiguous acronym is compared to those
of the content words appearing near it (context words) and
the expansion with the highest similarity (for instance, using
cosine distance) is supposed to be the right one.
        <xref ref-type="bibr" rid="ref1">(Billami
2017)</xref>
        .
      </p>
      <p>
        Unsupervised ML approaches disambiguate by finding
hidden structure in unlabelled data, for instance, clustering
documents or sentences in groups each one representing an
expansion
        <xref ref-type="bibr" rid="ref3">(Charbonnier and Wartena 2018)</xref>
        .
      </p>
      <p>
        Finally, supervised ML approaches which require tagged
corpora. WSD based on this approach, is considered as a
text classification problem where the objective is to
predict the correct expansion of an acronym among its
different expansions
        <xref ref-type="bibr" rid="ref12 ref3">(Melacci, Globo, and Rigutini 2018)</xref>
        .
Supervised approaches achieved high performance in this type of
task, but it requires annotated data that is considered
expensive to generate. To face this problem, semi-supervised
approaches are applied. In semi-supervised approaches
training data are automatically generated from few annotated
examples
        <xref ref-type="bibr" rid="ref4">(da Silva Sousa, Milios, and Berton 2020)</xref>
        .
      </p>
      <p>
        We explore word embeddings in this work as features to
be used in ML algorithms; a preliminary analysis is done
in
        <xref ref-type="bibr" rid="ref8">(Jaber and Mart´ıınez 2021)</xref>
        . A word embedding is a
realvalue vector that represents a single word based on the
context in which it appears
        <xref ref-type="bibr" rid="ref10">(Khattak et al. 2019)</xref>
        . These
numerical word representations could be built using different
models like
        <xref ref-type="bibr" rid="ref14">(Mikolov et al. 2013)</xref>
        , (Peters et al. 2018) and
        <xref ref-type="bibr" rid="ref6">(Devlin et al. 2019)</xref>
        based on different neural networks
architectures. Fortunately, these embeddings could be trained on
large data set, saved and used in solving other tasks; they are
called pre-trained word embeddings or pre-trained models.
      </p>
      <p>In this paper three supervised ML models combined with
a knowledge based model are used to disambiguate
scientific acronyms for SDU@AAAI-21 shared task (Veyseh
et al. 2020a). The rest of the paper is organized as follows:
Method section describes the data set which is used in this
study, the features and the different models that we applied.
In strategies section we describe how the proposed methods
are experimentally conducted. Finally, we present our results
compared to the baseline system.</p>
    </sec>
    <sec id="sec-2">
      <title>Method</title>
      <p>Acronyms are ambiguous because they could have
multiple expansions. Determining the correct expansion of an
acronym is a WSD problem. Since SciAD contains an small
set of exampled for some acronyms, we combined
supervised machine with knowledge based approaches to tackle
this problem.</p>
      <sec id="sec-2-1">
        <title>Data Set</title>
        <p>
          SciAD
          <xref ref-type="bibr" rid="ref4">(Veyseh et al. 2020b)</xref>
          corpus is used in this task,
which is created by AAAI-21 shared task 2 organizers.
SciAD was generated from 6,786 English papers from arXiv
with 2,031,592 sentences. Table 1 shows the detailed
numbers of annotated samples on three data set, training,
development and test training data set.
        </p>
        <sec id="sec-2-1-1">
          <title>Sentences Tokens Acronyms Expansions</title>
          <p>Figure 1 shows frequencies of annotated examples per
each acronym; 299 acronyms have less than 20 annotated
examples in the training data set.</p>
          <p>Additionally, the organizers provide the participants with
an acronyms dictionary which contains 732 acronyms and
2308 senses with average of 3.15 senses per acronym. Figure
2 shows the distributions of senses for acronyms contained
in the dictionary.</p>
        </sec>
      </sec>
      <sec id="sec-2-2">
        <title>Model</title>
        <p>Baseline In order to familiarize the participants with the
task, the organizers provided a rule-based baseline in code
directory. This baseline computes the frequency of the long
forms in the training data set. Afterwards, to make prediction
for each acronym in the development data set, it selects the
long form with the highest frequency as the final prediction.
If there is a tie, the long form that appears the first among
all tied long forms in the dictionary is selected as the final
prediction.</p>
        <sec id="sec-2-2-1">
          <title>Three Supervised ML algorithms are im</title>
          <p>Supervised ML
plemented:
• Support Vector Machine (SVM): which separates positive
samples from negative ones based on the idea of linear
hyper-plane from labeled data set differentiating between
samples into true or false categories. SVM is adapted to
multi-class classification to be used in WSD.
• Naive Bayes (NB): a probabilistic approach to estimate
probabilistic parameters which has a long history of
success in WSD. This approach is based on Bayes theorem
to compute the conditional probability for each sense of
an abbreviation from a set of features.
• K-Nearest Neighbor (KNN): the classification is done by
computing the Euclidean distance for each test vector
with the most k similar training vectors.</p>
          <p>Knowledge Based Approach For acronyms with few
examples in the data set, which are insufficient to train a
supervised ML method, a knowledge based approach is
implemented. This method is based on expansion’s dictionary
provided by organizers; cosine similarity was applied in the
test examples. Two vectors were said to be similar when the
cosine similarity was close to 1, and they were said to be
dissimilar when it is close to 0 (Singhal 2001).</p>
        </sec>
      </sec>
      <sec id="sec-2-3">
        <title>Features</title>
        <p>
          Features play an important rule in WSD system, two types
of features were used. WSD Features: Several lexical
features were used to disambiguate acronyms considering both
left and right contexts of the target Acronym. Our system
adopted a set of lexical features that have been used
successful in WSD. Given a sentence s formed by a set of words
[:::w 2; w 1; w0; wt; w+1; w+2:::] where wk is the targeted
ambiguous acronym, we extracted the following features:
1. Word Features: stemmed words for each tokens on both
side of the target acronym.
2. Word features with direction: The relative direction (left
or right side) of stemmed words.
3. POS (Part-Of-Speech) Tag: POS tag feature for each
token on both sides.
4. Position features: The distance between the feature word
and the target acronym.
5. Word formation features from the acronym itself
including special characters, capital letters and numbers.
Pre-trained word embedding features: A pre-trained word
embedding model with 300 dimension vectors was built
used FastText (Joulin et al. 2016) generated from several
English resources such as the Wikipedia and data from the
common crawl project,
          <xref ref-type="bibr" rid="ref13">(Mikolov et al. 2018)</xref>
          .
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Strategies</title>
      <sec id="sec-3-1">
        <title>Pre processing data &amp; Features extracting</title>
        <p>Several pre-processing steps were conducted on the dataset
including remove stop words, special characters and
stemming the words before extracting the features. For
supervised ML approaches, features are formed by combining
WSD lexical features and the summation strategy from the
pre trained word embeddings which are generated based on
the following equation:</p>
        <p>S =
jW j
X v(W (i)); i 6= k
i=0
where W is a list of words which surrounding the targeted
acronym. jW jis the length of the list and v(.) is a Fasttext
pre trained word embedding as mentioned in previous
subsection and k is the position of the target acronym.
(1)</p>
        <p>On the other hand, for the knowledge based approach, just
the summation strategy of pre trained word embedding
vectors were generated for each example and for the candidate
expansions which were extracted from expansions
dictionary.</p>
      </sec>
      <sec id="sec-3-2">
        <title>Training Phase</title>
        <p>In this phase, training and development data sets were
combined to increase the size of data set for each acronyms.
Our goal was to build a model to predict acronym’s
expansion based on a context for each acronym that has more
than 20 annotated examples. To achieve this goal the
training data was separated based on each acronym data set.
Table 2 shows the distribution of the whole data set for ML
and Knowledge-based (KB) approaches, 450 acronyms with
53702 annotated examples, are disambiguated by three ML
models, SVM, NB, and KNN. While 282 acronyms with
2521 annotated examples disambiguated by cosine
similarity method.</p>
        <p>ML
KB
Total</p>
        <sec id="sec-3-2-1">
          <title>Data set 53702 2521 56223</title>
          <p>When the testing data set was released by the organizers, the
testing data set was divided based on the training data we
had previously (see Figure 4). Table 3 shows the distribution
of testing data set over the two models; 444 acronyms with
5876 annotated examples in the testing data set, are
disambiguated through the three ML models. 174 acronyms in 342
annotated testing examples were disambiguated with cosine
similarity method. Figure 3 summarizes the overall process
for the proposed system.</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Evaluation &amp; Result</title>
      <p>The system performance was evaluated by using three
metrics, Precision which is defined as the percentage of the
instances which actually have a class label X (True Positives)
divided by all those which were classified as class label X as
the following equation:</p>
      <p>P recision =</p>
      <p>T rueP ositives</p>
      <p>T ruepositives + F alseP ositives
Recall is defined as the percentage of the instances which
were classified as class X, divided by all instances which
correctly have class X as the following equation:
Recall =</p>
      <p>T rueP ositives</p>
      <p>T rueP ositives + F alseN egatives
F1-macro is defined as the harmonic mean of Precision and
Recall as the following equation:</p>
      <p>F1 = 2</p>
      <p>P recision</p>
      <p>Recall</p>
      <p>P recision + Recall</p>
      <p>The training data set includes 634 expansions with less
than 10 annotated examples from different acronyms, to
balance the data set, these expansions were replicated through
oversampling techniques using sklearn library. Then 5 fold
(2)
(3)
(4)
cross validation was used for all acronyms in ML
models. Furthermore, the training data set contains 10
nonambiguous acronyms which their data set contain one
expansion.</p>
      <p>Table 4 shows our result on training phase, NB with
cosine similarity achieved the highest performance with
precision 90.31% , recall 87.16% and F1-macro 84.37%.</p>
      <p>Table 5 shows the final scores for our systems were
reported by the organizers. The best performance achieved
precision 92.15%, recall 77.97% and F1-macro 84.47%, for
a hybrid approach with NB and cosine similarity.</p>
    </sec>
    <sec id="sec-5">
      <title>Preliminary Analysis of Errors</title>
      <p>A sample of low performance on accuracy were achieved on
a training phase shows how strongly imbalanced data set size
affects on the model. We focus on Naive Bayes approach
since the best result was achieved through this approach.
Table 6 shows the accuracy of 4 acronyms, ARD acronym with
246 dataset is distributed between two expansions
”accelerated robust distillation” with 46 training examples and
”adversarially robust distillation” with 201 training examples,</p>
    </sec>
    <sec id="sec-6">
      <title>Conclusion</title>
      <p>In this paper, we introduced a system to disambiguate
scientific acronyms. Our system best score was achieved by a
hybrid approach combining supervised ML Naive Bayes and
cosine similarity with precision 92.15%, recall 77.97% and
F1-macro 84.47%.</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgments.</title>
      <p>Thanks to Palestine Technical University-Kadoorie (PTUK)
and DeepEMR project (TIN2017-87548-C2-1-R) for
partially funding this work.</p>
      <p>Singhal, A. 2001. Modern Information Retrieval: A Brief
Overview. IEEE Data Eng. Bull. 24(4): 35–43. URL http:
//sites.computer.org/debull/A01DEC-CD.pdf.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          <string-name>
            <surname>Billami</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <year>2017</year>
          .
          <article-title>A Knowledge-Based Approach to Word Sense Disambiguation by distributional selection and semantic features</article-title>
          .
          <source>CoRR abs/1702</source>
          .08450. URL http://arxiv.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <source>org/abs/1702</source>
          .08450.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          <string-name>
            <surname>Charbonnier</surname>
          </string-name>
          , J.; and
          <string-name>
            <surname>Wartena</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <year>2018</year>
          .
          <article-title>Using Word Embeddings for Unsupervised Acronym Disambiguation</article-title>
          . In
          <string-name>
            <surname>Bender</surname>
          </string-name>
          , E. M.;
          <string-name>
            <surname>Derczynski</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ; and Isabelle, P., eds.,
          <source>Proceedings of the 27th International Conference on Computational Linguistics</source>
          ,
          <string-name>
            <surname>COLING</surname>
          </string-name>
          <year>2018</year>
          ,
          <string-name>
            <given-names>Santa</given-names>
            <surname>Fe</surname>
          </string-name>
          , New Mexico, USA,
          <year>August</year>
          20-
          <issue>26</issue>
          ,
          <year>2018</year>
          ,
          <fpage>2610</fpage>
          -
          <lpage>2619</lpage>
          .
          <article-title>Association for Computational Linguistics</article-title>
          . URL https://www.aclweb.org/anthology/ C18-1221/.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          <string-name>
            <surname>da Silva Sousa</surname>
            ,
            <given-names>S. B.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Milios</surname>
            ,
            <given-names>E. E.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Berton</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          <article-title>Word sense disambiguation: an evaluation study of semisupervised approaches with word embeddings</article-title>
          .
          <source>In 2020 International Joint Conference on Neural Networks, IJCNN</source>
          <year>2020</year>
          , Glasgow, United Kingdom,
          <source>July 19-24</source>
          ,
          <year>2020</year>
          ,
          <fpage>1</fpage>
          -
          <lpage>8</lpage>
          . IEEE. doi:
          <volume>10</volume>
          .1109/IJCNN48605.
          <year>2020</year>
          .9207225. URL https://doi.org/10.1109/IJCNN48605.
          <year>2020</year>
          .
          <volume>9207225</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          <string-name>
            <surname>Devlin</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ; Chang,
          <string-name>
            <given-names>M. W.</given-names>
            ;
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            ; and
            <surname>Toutanova</surname>
          </string-name>
          ,
          <string-name>
            <surname>K.</surname>
          </string-name>
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          <article-title>BERT: Pre-training of deep bidirectional transformers for language understanding</article-title>
          .
          <source>NAACL HLT</source>
          2019
          <article-title>- 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies -</article-title>
          <source>Proceedings of the Conference</source>
          <volume>1</volume>
          (Mlm):
          <fpage>4171</fpage>
          -
          <lpage>4186</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          <string-name>
            <surname>Jaber</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ; and Mart´ıınez, P.
          <year>2021</year>
          .
          <article-title>Disambiguating Clinical Abbreviations Using Pre-trained Word Embeddings</article-title>
          . In To appear
          <source>in Proceedings of the 14th International Joint Conference on Biomedical Engineering Systems and Technologies: HEALTHINF</source>
          ,. INSTICC.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          2016.
          <article-title>Bag of Tricks for Efficient Text Classification</article-title>
          .
          <source>arXiv preprint arXiv:1607</source>
          .
          <fpage>01759</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          <string-name>
            <surname>Khattak</surname>
            ,
            <given-names>F. K.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Jeblee</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Pou-Prom</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Abdalla</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Meaney</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Rudzicz</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <year>2019</year>
          .
          <article-title>A survey of word embeddings for clinical text</article-title>
          .
          <source>Journal of Biomedical Informatics: X 4(October): 100057. ISSN 2590177X. doi:10</source>
          .1016/j.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          <string-name>
            <surname>yjbinx.</surname>
          </string-name>
          <year>2019</year>
          .100057. URL https://doi.org/10.1016/j.yjbinx.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          <string-name>
            <surname>Melacci</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Globo</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Rigutini</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <year>2018</year>
          .
          <article-title>Enhancing Modern Supervised Word Sense Disambiguation Models by Semantic Lexical Resources</article-title>
          . In Calzolari, N.;
          <string-name>
            <surname>Choukri</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Cieri</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Declerck</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Goggi</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Hasida</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Isahara</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Maegaard</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Mariani</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ; Mazo,
          <string-name>
            <given-names>H.</given-names>
            ;
            <surname>Moreno</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ;
            <surname>Odijk</surname>
          </string-name>
          ,
          <string-name>
            <surname>J.</surname>
          </string-name>
          ; Piperidis,
          <string-name>
            <surname>S.</surname>
          </string-name>
          ; and Tokunaga, T., eds.,
          <source>Proceedings of the Eleventh International Conference on Language Resources and Evaluation</source>
          ,
          <string-name>
            <surname>LREC</surname>
          </string-name>
          <year>2018</year>
          , Miyazaki, Japan, May 7-
          <issue>12</issue>
          ,
          <year>2018</year>
          .
          <article-title>European Language Resources Association (ELRA)</article-title>
          . URL http://www.lrec-conf.org/proceedings/ lrec2018/summaries/112.html.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          <string-name>
            <surname>Mikolov</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Grave</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Bojanowski</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Puhrsch</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ; and
          <string-name>
            <surname>Joulin</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <year>2018</year>
          .
          <article-title>Advances in Pre-Training Distributed Word Representations</article-title>
          . In Calzolari, N.;
          <string-name>
            <surname>Choukri</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Cieri</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Declerck</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Goggi</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Hasida</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Isahara</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Maegaard</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Mariani</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ; Mazo,
          <string-name>
            <given-names>H.</given-names>
            ;
            <surname>Moreno</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ;
            <surname>Odijk</surname>
          </string-name>
          ,
          <string-name>
            <surname>J.</surname>
          </string-name>
          ; Piperidis,
          <string-name>
            <surname>S.</surname>
          </string-name>
          ; and Tokunaga, T., eds.,
          <source>Proceedings of the Eleventh International Conference on Language Resources and Evaluation</source>
          ,
          <string-name>
            <surname>LREC</surname>
          </string-name>
          <year>2018</year>
          , Miyazaki, Japan, May 7-
          <issue>12</issue>
          ,
          <year>2018</year>
          .
          <article-title>European Language Resources Association (ELRA)</article-title>
          . URL http://www.lrec-conf.org/proceedings/ lrec2018/summaries/721.html.
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          <string-name>
            <surname>Mikolov</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ;
          <string-name>
            <surname>Sutskever</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ; Chen,
          <string-name>
            <given-names>K.</given-names>
            ;
            <surname>Corrado</surname>
          </string-name>
          , G.; and
          <string-name>
            <surname>Dean</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <year>2013</year>
          .
          <article-title>Distributed representations ofwords and phrases and their compositionality</article-title>
          .
          <source>Advances in Neural Information Processing Systems 1-9. ISSN 10495258.</source>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>