<!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>Using Embeddings for Both Entity Recognition and Linking in Tweets</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Giuseppe Attardi</string-name>
          <email>attardi@di.unipi.it</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Daniele Sartiano</string-name>
          <email>sartiano@di.unipi.it</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Maria Simi</string-name>
          <email>simi@di.unipi.it</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Irene Sucameli Dipartimento di Informatica</string-name>
          <email>irenesucameli@gmail.com</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Università di Pisa Largo B. Pontecorvo</institution>
          ,
          <addr-line>3 I-56127 Pisa</addr-line>
          ,
          <country country="IT">Italy</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>English. The paper describes our submissions to the task on Named Entity rEcognition and Linking in Italian Tweets (NEEL-IT) at Evalita 2016. Our approach relies on a technique of Named Entity tagging that exploits both character-level and word-level embeddings. Character-based embeddings allow learning the idiosyncrasies of the language used in tweets. Using a full-blown Named Entity tagger allows recognizing a wider range of entities than those well known by their presence in a Knowledge Base or gazetteer. Our submissions achieved first, second and fourth top official scores.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>Italiano. L’articolo descrive la nostra
partecipazione al task di Named Entity
rEcognition and Linking in Italian
Tweets (NEEL-IT) a Evalita 2016. Il
nostro approccio si basa sull’utilizzo di un
Named Entity tagger che sfrutta
embeddings sia character-level che word-level.
I primi consentono di apprendere le
idiosincrasie della scrittura nei tweet. L’uso
di un tagger completo consente di
riconoscere uno spettro più ampio di entità
rispetto a quelle conosciute per la loro
presenza in Knowledge Base o gazetteer.
Le prove sottomesse hanno ottenuto il
primo, secondo e quarto dei punteggi
ufficiali.
correspond to entities in the domain of interest;
entity disambiguation is the task of linking an
extracted mention to a specific instance of an
entity in a knowledge base.</p>
      <p>
        Most approaches to mention detection rely on
some sort of fuzzy matching between n-grams in
the source text and a list of known entities
        <xref ref-type="bibr" rid="ref20">(Rizzo
et al., 2015)</xref>
        . These solutions suffer severe
limitations when dealing with Twitter posts, since the
posts’ vocabulary is quite varied, the writing is
irregular, with variants and misspellings and
entities are often not present in official resources
like DBpedia or Wikipedia.
      </p>
      <p>Detecting the correct entity mention is
however crucial: Ritter et al. (2011) for example report
a 0.67 F1 score on named entity segmentation,
but an 85% accuracy, once the correct entity
mention is detected, just by a trivial
disambiguation that maps to the most popular entity.</p>
      <p>We explored an innovative approach to
mention detection, which relies on a technique of
Named Entity tagging that exploits both
character-level and word-level embeddings.
Characterlevel embeddings allow learning the
idiosyncrasies of the language used in tweets. Using a
fullblown Named Entity tagger allows recognizing a
wider range of entities than those well known by
their presence in a Knowledge Base or gazetteer.</p>
      <p>Another advantage of the approach is that no
pre-built resource is required in order to perform
the task, minimal preprocessing is required on
the input text and no manual feature extraction
nor feature engineering is required.</p>
      <p>We exploit embeddings also for
disambiguation and entity linking, proposing the first
approach that, to the best of our knowledge, uses
only embeddings for both entity recognition and
linking.</p>
      <p>We report the results of our experiments with
this approach on the task Evalita 2016 NEEL-IT.
Our submissions achieved first, second and
fourth top official scores.</p>
    </sec>
    <sec id="sec-2">
      <title>Task Description</title>
      <p>The NEEL-IT task consists of annotating named
entity mentions in tweets and disambiguating
them by linking them to their corresponding
entry in a knowledge base (DBpedia).</p>
      <p>
        According to the task Annotation Guidelines
        <xref ref-type="bibr" rid="ref16 ref7">(NEEL-IT Guidelines, 2016)</xref>
        , a mention is a
string in the tweet representing a proper noun or
an acronym that represents an entity belonging to
one of seven given categories (Thing, Event,
Character, Location, Organization, Person and
Product). Concepts that belong to one of the
categories but miss from DBpedia are to be tagged
as NIL. Moreover “The extent of an entity is the
entire string representing the name, excluding the
preceding definite article”.
      </p>
      <p>The Knowledge Base onto which to link
entities is the Italian DBpedia 2015-10, however the
concepts must be annotated with the
canonicalized dataset of DBpedia 2015, which is an
English one. Therefore, despite the tweets are in
Italian, for unexplained reasons the links must refer
to English entities.
3</p>
    </sec>
    <sec id="sec-3">
      <title>Building a larger resource</title>
      <p>The training set provided by the organizers
consists of just 1629 tweets, which are insufficient
for properly training a NER on the 7 given
categories.</p>
      <p>We thus decided to exploit also the training set
of the Evalita 2016 PoSTWITA task, which
consists of 6439 Italian tweets tokenized and gold
annotated with PoS tags. This allowed us to
concentrate on proper nouns and well defined entity
boundaries in the manual annotation process of
named entities.</p>
      <p>We used the combination of these two sets to
train a first version of the NER.</p>
      <p>We then performed a sort of active learning
step, applying the trained NER tagger to a set of
over 10 thousands tweets and manually
correcting 7100 of these by a team of two annotators.</p>
      <p>These tweets were then added to the training
set of the task and to the PoSTWITA annotated
training set, obtaining our final training corpus of
13,945 tweets.
4</p>
    </sec>
    <sec id="sec-4">
      <title>Description of the system</title>
      <p>Our approach to Named Entity Extraction and
Linking consists of the following steps:
</p>
      <p>Train word embeddings on a large corpus
of Italian tweets







</p>
      <p>Train a bidirectional LSTM
characterlevel Named Entity tagger, using the
pretrained word embeddings
Build a dictionary mapping titles of the
Italian DBpedia to pairs consisting of the
corresponding title in the English DBpedia
2011 release and its NEEL-IT category.
This helps translating the Italian titles into
the requested English titles. An example
of the entries in this dictionary are:
Cristoforo_Colombo
(http://dbpedia.org/resource/Christopher_Colu
mbus, Person)
Milano (http://dbpedia.org/resource/Milan,
Location)
 From all the anchor texts from articles of
the Italian Wikipedia, select those that link
to a page that is present in the above
dictionary. For example, this dictionary
contains:
Person Cristoforo_Colombo
Colombo
Create word embeddings from the Italian
Wikipedia
For each page whose title is present in the
above dictionary, we extract its abstract
and compute the average of the word
embeddings of its tokens and store it into a
table that associates it to the URL of the
same dictionary
Perform Named Entity tagging on the test
set
For each extracted entity, compute the
average of the word embeddings for a
context of words of size c before and after the
entity.</p>
      <p>Annotate the mention with the DBpedia
entity whose lc2 distance is smallest
among those of the abstracts computed
before.</p>
      <p>For the Twitter mentions, invoke the
Twitter API to obtain the real name from the
screen name, and set the category to
Person if the real name is present in a
gazetteer of names.</p>
      <p>
        The last step is somewhat in contrast with the
task guidelines
        <xref ref-type="bibr" rid="ref16 ref7">(NEEL-IT Guidelines, 2016)</xref>
        ,
which only contemplate annotating a Twitter
mention as Person if it is recognizable on the
spot as a known person name. More precisely “If
the mention contains the name and surname of a
person, the name of a place, or an event, etc., it
should be considered as a named entity”, but
“Should not be considered as named entity those
aliases not universally recognizable or traceable
back to a named entity, but should be tagged as
entity those mentions that contains well known
aliases. Then, @ValeYellow46 should not be
tagged as is not an alias for Valentino Rossi”.
      </p>
      <p>We decided instead that it would have been
more useful, for practical uses of the tool, to
produce a more general tagger, capable of detecting
mentions recognizable not only from syntactic
features. Since this has affected our final score,
we will present a comparison with results
obtained by skipping this last step.
4.1</p>
    </sec>
    <sec id="sec-5">
      <title>Word Embeddings</title>
      <p>The word embeddings for tweets have been created
using the fastText utility1 by Bojanowski et al.
(2016) on a collection of 141 million Italian tweets
retrieved over the period from May to September
2016 using the Twitter API. Selection of Italian
tweets was achieved by using a query containing a
list of the 200 most common Italian words.</p>
      <p>
        The text of tweets was split into sentences and
tokenized using the sentence splitter and the
tweet tokenizer from the linguistic pipeline Tanl
        <xref ref-type="bibr" rid="ref2">(Attardi et al., 2010)</xref>
        , replacing emoticons and
emojis with a symbolic name starting with
EMO_ and normalizing URLs. This
preprocessing was performed by MapReduce on the
large source corpora.
      </p>
      <p>We produced two versions of the embeddings,
one with dimension 100 and a second of
dimension 200. Both used a window of 5 and retained
words with a minimum count of 100, for a total
of 245 thousands words.</p>
      <p>Word embeddings for the Italian Wikipedia
were created from text extracted from the
Wikipedia dump of August 2016, using the
WikiExtractor utility by Attardi (2009). The vectors
were produced by means of the word2vec
utility2, using the skipgram model, a dimension of
100, a window of 5, and a minimum occurrence
of 50, retaining a total of 214,000 words.
4.2</p>
      <p>Bi-LSTM Character-level NER
Lample et al. (2016) propose a Named Entity
Recognizer that obtains state-of-the-art
performance in NER on the 4 CoNLL 2003 datasets
1 https://github.com/facebookresearch/fastText.git
2
https://storage.googleapis.com/google-code-archivesource/v2/code.google.com/word2vec/source-archive.zip
without resorting to any language-specific
knowledge or resources such as gazetteers.</p>
      <p>In order to take into account the fact that named
entities often consist of multiple tokens, the
algorithms exploits a bidirectional LSTM with a
sequential conditional random layer above it.</p>
      <p>
        Character-level features are learned while
training, instead of hand-engineering prefix and suffix
information about words. Learning character-level
embeddings has the advantage of learning
representations specific to the task and domain at hand.
They have been found useful for morphologically
rich languages and to handle the
out-ofvocabulary problem for tasks like POS tagging
and language modeling
        <xref ref-type="bibr" rid="ref17">(Ling et al., 2015)</xref>
        or
dependency parsing
        <xref ref-type="bibr" rid="ref3">(Ballesteros et al., 2015)</xref>
        .
      </p>
      <p>The character-level embedding are given to
bidirectional LSTMs and then concatenated with the
embedding of the whole word to obtain the final
word representation as described in Figure 1:
The architecture of the NER tagger is described
in Figure 2.</p>
      <p>rMar
lM
M
rMario
rMalMa
a
eMario
rMar
lMar
r
CRF
Layer
Bi LSTM
Encoder
Word
Embeddings Mario</p>
      <p>B-PER</p>
      <p>I-PER
c1
r1
l1
c2
r2
l2
Monti
rMa
lMari
i
O
c3
r3
l3
a
lMario
rM
lMari
o
B-LOC
c4
r4
l4
Roma</p>
    </sec>
    <sec id="sec-6">
      <title>Experiments</title>
      <p>Since Named Entity tagging is the first step of
our technique and hence its accuracy affects the
overall results, we present separately the
evaluation of the NER tagger.</p>
      <p>Here are the results of the NER tagger on a
development set of 1523 tweets, randomly
extracted from the full training set.</p>
      <p>Category</p>
      <p>Precision</p>
      <p>Recall</p>
      <p>On the subset of the test set used in the
evaluation, which consists of 301 tweets, the NER
performs as follows:</p>
      <p>In the disambiguation and linking process, we
experimented with several values of the context
size c of words around the mentions (4, 8 and 10)
and eventually settled for a value of 8 in the
submitted runs.
6</p>
    </sec>
    <sec id="sec-7">
      <title>Results</title>
      <p>We submitted three runs. The three runs have in
common the following parameters for training
the NER:</p>
      <p>Character embeddings dimension
dropout
Learning rate
Training set size
25
0.5
0.001
12,188</p>
      <p>Specific parameters of the individual runs are:


</p>
      <p>UniPI.1: twitter embeddings with
dimension 100, disambiguation by frequency of
mention in Wikipedia anchors
UniPI.2: twitter embeddings with
dimension 100, disambiguation with Wikipedia
embeddings
UniPI.3: twitter embeddings with
dimension 200, disambiguation with Wikipedia
embeddings, training set with
geographical entities more properly annotated as
Location (e.g. Italy).</p>
      <p>The runs achieved the scores listed in the
following table:</p>
      <p>Run
UniPI.3
UniPI.1
Team2.base
UniPI.2
Team3.3</p>
      <p>Mention
ceaf
0.561
0.561
0.530
0.561
0.585</p>
      <p>Strong
typed
mention
match
0.474
0.466
0.472
0.463
0.516</p>
      <p>Strong
link
match
0.456
0.443
0.477
0.443
0.348</p>
      <p>Final
score</p>
      <p>The final score is computed as follows:</p>
      <p>0.4 mention_ceaf +
0.3 strong_typed_mention_match +</p>
      <p>0.3 strong_link_match
As mentioned, our tagger performs an extra
effort in trying to determine whether Twitter
mentions represent indeed Person or Organization
entities. In order to check how this influences our
result we evaluate also a version of the UniPI.3
run without the extra step of mention type
identification. The results are reported in the following
table:</p>
      <p>Run
UniPI.3 without
mention check</p>
      <p>Mention
ceaf
On the other hand, if we manually correct the test
set annotating the Twitter mentions that indeed
refer to Twitter users or organizations, the score
for strong typed mentions match increases to
0.645.</p>
    </sec>
    <sec id="sec-8">
      <title>Discussion</title>
      <p>The effectiveness of the use of embeddings in
disambiguation can be seen in the improvement
in the strong link match score between run
UniPI.2 and UniPI.3. Examples where embeddings
lead to better disambiguation are:</p>
      <sec id="sec-8-1">
        <title>Liverpool_F.C. vs Liverpool</title>
        <p>Italy_national_football_team vs Italy
S.S._Lazio vs Lazio
Diego_Della_Valle vs Pietro_Della_Valle
Nobel_Prize vs Alfred_Nobel
There are many cases where the NER recognizes
a Person, but the linker associates the name to a
famous character, for example:</p>
      </sec>
      <sec id="sec-8-2">
        <title>Maria_II_of_Portugal for Maria Luke_the_Evangelist for Luca</title>
        <p>The approach of using embeddings for
disambiguation looks promising: the abstract of articles
sometimes does not provide appropriate
evidence, since the style of Wikipedia involves
providing typically meta-level information, such
as the category of the concept. For example
disambiguation for “Coppa Italia” leads to
“Italian_Basketball_Cup” rather than to
“Italian_Football_Cup”, since both are described as
sport competitions. Selecting or collecting
phrases that mention the concept, rather than
define it, might lead to improved accuracy.</p>
        <p>Using character-based embeddings and a large
training corpus requires significant
computational resources. We exploited a server equipped
with nVidia Tesla K 80 GPU accelerators.</p>
        <p>Nevertheless training the LSTM NER tagger
still required about 19 hours: without the GPU
accelerator the training would have been
impossible.
8</p>
      </sec>
    </sec>
    <sec id="sec-9">
      <title>Related Work</title>
      <p>
        Several papers discuss approaches to end-to-end
entity linking
        <xref ref-type="bibr" rid="ref10 ref11 ref13 ref15 ref19 ref2 ref6 ref8">(Cucerzan, 2007; Milne and
Witten, 2008; Kulkarni et al., 2009; Ferragina and
Scaiella, 2010; Han and Sun, 2011; Meij et al.,
2012)</xref>
        , but many heavily depend on Wikipedia
text and might not work well in short and noisy
tweets.
      </p>
      <p>
        Most approaches to mention detection rely on
some sort of fuzzy matching between n-grams in
the source and the list of known entities
        <xref ref-type="bibr" rid="ref20">(Rizzo et
al., 2015)</xref>
        .
      </p>
      <p>Yamada et al. (2015) propose an end-to-end
approach to entity linking that exploits word
embeddings as features in a random-forest
algorithm used for assigning a score to mention
candidates, which are however identified by either
exact or fuzzy matching on a mention-entity
dictionary built from Wikipedia titles and anchor
texts.</p>
      <p>Guo et al. (2016) propose a structural SVM
algorithm for entity linking that jointly optimizes
mention detection and entity disambiguation as a
single end-to-end task.
9</p>
    </sec>
    <sec id="sec-10">
      <title>Conclusions</title>
      <p>We presented an innovative approach to mention
extraction and entity linking of tweets, that relies
on Deep Learning techniques. In particular we
use a Named Entity tagger for mention detection
that exploits character-level embeddings in order
to deal with the noise in the writing of tweet
posts. We also exploit word embeddings as a
measure of semantic relatedness for the task of
entity linking.</p>
      <p>As a side product we produced a new gold
resource of 13,609 tweets (242,453 tokens)
annotated with NE categories, leveraging on the
resource distributed for the Evalita PoSTWITA
task.</p>
      <p>The approach achieved top score in the Evalita
2016 NEEL-IT Challenge and looks promising
for further future enhancements.</p>
    </sec>
    <sec id="sec-11">
      <title>Acknowledgments</title>
      <p>We gratefully acknowledge the support by the
University of Pisa through project PRA 2016 and
by NVIDIA Corporation through the donation of
a Tesla K40 GPU accelerator used in the
experiments.</p>
      <p>We thank Guillaume Lample for making
available his implementation of Named Entity
Recognizer.
Information.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          <string-name>
            <given-names>Giuseppe</given-names>
            <surname>Attardi</surname>
          </string-name>
          .
          <year>2009</year>
          .
          <article-title>WikiExtractor: A tool for extracting plain text from Wikipedia dumps</article-title>
          . https://github.com/attardi/wikiextractor
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <string-name>
            <given-names>Giuseppe</given-names>
            <surname>Attardi</surname>
          </string-name>
          , Stefano Dei Rossi, and
          <string-name>
            <given-names>Maria</given-names>
            <surname>Simi</surname>
          </string-name>
          .
          <year>2010</year>
          .
          <article-title>The Tanl Pipeline</article-title>
          .
          <source>In Proc. of LREC Workshop on WSPP, Malta.</source>
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          <string-name>
            <given-names>Miguel</given-names>
            <surname>Ballesteros</surname>
          </string-name>
          , Chris Dyer, and
          <string-name>
            <surname>Noah</surname>
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Smith</surname>
          </string-name>
          .
          <year>2015</year>
          .
          <article-title>Improved transition-based dependency parsing by modeling characters instead of words with LSTMs</article-title>
          .
          <source>In Proceedings of EMNLP</source>
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          <string-name>
            <given-names>Piotr</given-names>
            <surname>Bojanowski</surname>
          </string-name>
          , Edouard Grave, Armand Joulin, and
          <string-name>
            <given-names>Tomas</given-names>
            <surname>Mikolov</surname>
          </string-name>
          .
          <year>2016</year>
          . Enriching Word Vec-
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>https://arxiv.org/abs/1607.04606</mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          <string-name>
            <given-names>Silviu</given-names>
            <surname>Cucerzan</surname>
          </string-name>
          .
          <year>2007</year>
          .
          <article-title>Large-scale named entity disam- biguation based on Wikipedia data</article-title>
          .
          <source>In Proceedings of the 2007 Joint Conference of EMNLPCoNLL</source>
          , pages
          <fpage>708</fpage>
          -
          <lpage>716</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          <string-name>
            <surname>Evalita</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>NEEL-IT</article-title>
          . http://neel-it.github.io
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          <string-name>
            <given-names>Paolo</given-names>
            <surname>Ferragina</surname>
          </string-name>
          and
          <string-name>
            <given-names>Ugo</given-names>
            <surname>Scaiella</surname>
          </string-name>
          .
          <year>2010</year>
          .
          <article-title>Tagme: onthe-fly annotation of short text fragments (by wikipedia entities)</article-title>
          .
          <source>In Proceedings of the 19th ACM international conference on Information and knowledge manage- ment, CIKM '10</source>
          , pages
          <fpage>1625</fpage>
          -
          <lpage>1628</lpage>
          , New York, NY, USA. ACM.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          <string-name>
            <given-names>Stephen</given-names>
            <surname>Guo</surname>
          </string-name>
          ,
          <string-name>
            <surname>Ming-Wei Chang</surname>
            and
            <given-names>Emre</given-names>
          </string-name>
          <string-name>
            <surname>Kıcıman</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>To Link or Not to Link? A Study on End-toEnd Tweet Entity Linking</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          <string-name>
            <given-names>Xianpei</given-names>
            <surname>Han</surname>
          </string-name>
          and
          <string-name>
            <given-names>Le</given-names>
            <surname>Sun</surname>
          </string-name>
          .
          <year>2011</year>
          .
          <article-title>A generative entitymention model for linking entities with knowledge base</article-title>
          .
          <source>In Proceedings of the 49th Annual Meeting of the Asso- ciation for Computational Linguistics: Human Lan- guage Technologies - Volume 1, HLT '11</source>
          , pages
          <fpage>945</fpage>
          -
          <lpage>954</lpage>
          , Stroudsburg, PA, USA. Association for Compu- tational
          <string-name>
            <surname>Linguistics</surname>
          </string-name>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          <string-name>
            <given-names>Sayali</given-names>
            <surname>Kulkarni</surname>
          </string-name>
          , Amit Singh,
          <string-name>
            <given-names>Ganesh</given-names>
            <surname>Ramakrishnan</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Soumen</given-names>
            <surname>Chakrabarti</surname>
          </string-name>
          .
          <year>2009</year>
          .
          <article-title>Collective annotation of wikipedia entities in web text</article-title>
          .
          <source>In Proceedings of the 15th ACM SIGKDD international conference on Knowledge discovery and data mining, Proceedings of International Conference on Knowledge Discovery and Data Mining (KDD)</source>
          , pages
          <fpage>457</fpage>
          -
          <lpage>466</lpage>
          , New York, NY, USA. ACM.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          <string-name>
            <given-names>Guillaume</given-names>
            <surname>Lample</surname>
          </string-name>
          , Miguel Ballesteros, Kazuya Kawakami, Sandeep Subramanian, and
          <string-name>
            <given-names>Chris</given-names>
            <surname>Dyer</surname>
          </string-name>
          .
          <year>2016</year>
          .
          <article-title>Neural Architectures for Named Entity Recognition</article-title>
          ,
          <source>In Proceedings of NAACL-HLT (NAACL</source>
          <year>2016</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          <string-name>
            <given-names>Edgar</given-names>
            <surname>Meij</surname>
          </string-name>
          , Wouter Weerkamp, and Maarten de Rijke.
          <year>2012</year>
          .
          <article-title>Adding semantics to microblog posts</article-title>
          .
          <source>In Proceedings of the fifth ACM international con-</source>
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          563-
          <fpage>572</fpage>
          , New York, NY, USA. ACM.
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          <string-name>
            <given-names>David</given-names>
            <surname>Milne</surname>
          </string-name>
          and
          <string-name>
            <given-names>Ian H.</given-names>
            <surname>Witten</surname>
          </string-name>
          .
          <year>2008</year>
          .
          <article-title>Learning to link with wikipedia</article-title>
          .
          <source>In Proceedings of ACM Conference on Information and Knowledge Management (CIKM)</source>
          , pages
          <fpage>509</fpage>
          -
          <lpage>518</lpage>
          , New York, NY, USA. ACM.
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          <string-name>
            <surname>NEEL-IT Annotation Guidelines</surname>
          </string-name>
          .
          <year>2016</year>
          . https://drive.google.com/open?id=1saUb2NSxml67 pcrz3m_
          <fpage>bMcibe1nST2CTedeKOBklKaI</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          <string-name>
            <given-names>Wang</given-names>
            <surname>Ling</surname>
          </string-name>
          , Tiago Luís, Luís Marujo, Ramón Fernandez Astudillo, Silvio Amir, Chris Dyer, Alan W Black, and
          <string-name>
            <given-names>Isabel</given-names>
            <surname>Trancoso</surname>
          </string-name>
          .
          <year>2015</year>
          .
          <article-title>Finding function in form: Compositional character models for open vocabulary word representation</article-title>
          .
          <source>In Proceedings of the Conference on Empirical Methods in Natural Language Processing (EMNLP).</source>
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          <string-name>
            <given-names>Tomas</given-names>
            <surname>Mikolov</surname>
          </string-name>
          , Ilya Sutskever, Kai Chen, Greg S. Corrado, and
          <string-name>
            <given-names>Jeff</given-names>
            <surname>Dean</surname>
          </string-name>
          .
          <year>2013</year>
          .
          <article-title>Distributed representations of words and phrases and their compositionality</article-title>
          .
          <source>Advances in Neural Information Processing Systems</source>
          . arXiv:
          <volume>1310</volume>
          .
          <fpage>4546</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          <string-name>
            <given-names>Alan</given-names>
            <surname>Ritter</surname>
          </string-name>
          , Sam Clark, Mausam, and
          <string-name>
            <given-names>Oren</given-names>
            <surname>Etzioni</surname>
          </string-name>
          .
          <year>2011</year>
          .
          <article-title>Named entity recognition in tweets: an experimental study</article-title>
          .
          <source>In Proceedings of the Conference on Empirical Methods for Natural Language Processing (EMNLP)</source>
          , pages
          <fpage>1524</fpage>
          -
          <lpage>1534</lpage>
          , Stroudsburg, PA, USA. Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          <string-name>
            <given-names>Giuseppe</given-names>
            <surname>Rizzo</surname>
          </string-name>
          , Amparo Elizabeth Cano Basave, Bianca Pereira, and
          <string-name>
            <given-names>Andrea</given-names>
            <surname>Varga</surname>
          </string-name>
          .
          <year>2015</year>
          .
          <article-title>Making sense of microposts (#microposts2015) named entity recognition and linking (NEEL) challenge</article-title>
          .
          <source>In Proceedings of the 5th Workshop on Making Sense of Microposts</source>
          , pages
          <fpage>44</fpage>
          -
          <lpage>53</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          <string-name>
            <given-names>Ikuya</given-names>
            <surname>Yamada</surname>
          </string-name>
          , Hideaki Takeda, and Yoshiyasu TakefujiIkuya.
          <year>2015</year>
          .
          <article-title>An End-to-End Entity Linking Approach for Tweets</article-title>
          .
          <source>In Proceedings of the 5th Workshop on Making Sense of Microposts</source>
          , Firenze, Italy.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>