<!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>Representation of Word Sentiment, Idioms and Senses</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>
        <aff id="aff0">
          <label>0</label>
          <institution>Dipartimento di Informatica 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>Distributional Semantic Models (DSM) that represent words as vectors of weights over a high dimensional feature space have proved very effective in representing semantic or syntactic word similarity. For certain tasks however it is important to represent contrasting aspects such as polarity, different senses or idiomatic use of words. We present two methods for creating embeddings that take into account such characteristics: a feed-forward neural network for learning sentiment specific and a skip-gram model for learning sense specific embeddings. Sense specific embeddings can be used to disambiguate queries and other classification tasks. We present an approach for recognizing idiomatic expressions by means of the embeddings. This can be used to segment queries into meaningful chunks. The implementation is available as a library implemented in Python with core numerical processing written in C++, using a parallel linear algebra library for efficiency and scalability.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Distributional Semantic Models (DSM) that represent words as vectors of weights
over a high dimensional feature space [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ], have proved very effective in representing
semantic or syntactic aspects of lexicon. Incorporating such representations has
allowed improving many natural language tasks. They also reduce the burden of feature
selection since these models can be learned through unsupervised techniques from
plain text.
      </p>
      <p>
        Deep learning algorithms for NLP tasks exploit distributional representation of
words. In tagging applications such as POS tagging, NER tagging and Semantic Role
Labeling (SRL), this has proved quite effective in reaching state of art accuracy and
reducing reliance on manually engineered feature selection [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ].
      </p>
      <p>
        Word embeddings have been exploited also in constituency parsing [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] and
dependency parsing [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. Blanco et al. [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] exploit word embeddings for identifying
entities in web search queries.
      </p>
      <p>This paper presents DeepNL, an NLP pipeline based on a common Deep Learning
architecture: it consists of tools for creating embeddings, and tools that exploit word
embeddings as features. The current release includes a POS tagger, a NER, an SRL
tagger and a dependency parser.</p>
      <p>
        Two methods are supported for creating embeddings: an approach that uses neural
network and one using Hellinger PCA [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ].
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>Building Word Embeddings</title>
      <p>Word embeddings provide a low dimensional dense vector space representation for
words, where values in each dimension may represent syntactic or semantic
properties.</p>
      <p>
        DeepNL provides two methods for building embeddings, one is based on the use of
a neural language model, as proposed by [
        <xref ref-type="bibr" rid="ref18 ref26 ref8">26, 8, 18</xref>
        ] and one based on spectral method
as proposed by Lebret and Collobert [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ].
      </p>
      <p>
        The neural language method can be hard to train and the process is often quite time
consuming, since several iterations are required over the whole training set. Some
researcher provide precomputed embeddings for English1. The Polyglot project [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]
makes available embeddings for several languages, built from the plain text of
Wikipedia in the respective language, and the Python code for computing them2, that
supports GPU computations by means of Theano3.
      </p>
      <p>
        Mikolov et al. [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ] developed an alternative solution for computing word
embeddings, which significantly reduces the computational costs. They propose two
loglinear models, called bag of words and skip-gram model. The bag-of-word approach
is similar to a feed-forward neural network language model and learns to classify the
current word in a given context, except that instead of concatenating the vectors of the
words in the context window of each token, it just averages them, eliminating a
network layer and reducing the data dimensions. The skip-gram model tries instead to
estimate context words based on the current word. Further speed up in the
computation is obtained by exploiting a mini-batch Asynchronous Stochastic Gradient
Descent algorithm, splitting the training corpus into partitions and assigning them to
multiple threads. An optimistic approach is also exploited to avoid synchronization
costs: updates to the current weight matrix are performed concurrently, without any
locking, assuming that updates to the same rows of the matrix will be infrequent and
will not harm convergence.
      </p>
      <p>
        The authors published single-machine multi-threaded C++ code for computing the
word vectors4. A reimplementation of the algorithm in Python is included in the
Genism library [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ]. In order to obtain comparable speed to the C++ version, they use
Cython for interfacing to a coding in C of the core function for training the network
on a single sentence, which in turn exploits the BLAS library for algebraic
computations.
1 http://ronan.collobert.com/senna/, http://metaoptimize.com/projects/wordreprs/,
http://www.fit.vutbr.cz/˜imikolov/rnnlm/, http://ai.stanford.edu/˜ehhuang/
2 https://bitbucket.org/aboSamoor/word2embeddings
3 http://deeplearning.net/software/theano/
4 https://code.google.com/p/word2vec
2.1
      </p>
      <sec id="sec-2-1">
        <title>Word Embeddings through Hellinger PCA</title>
        <p>
          Lebret and Collobert [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ] have shown that embeddings can be efficiently computed
from word co-occurrence counts, applying Principal Component Analysis (PCA) to
reduce dimensionality while optimizing the Hellinger similarity distance.
        </p>
        <p>
          Levy and Goldberg [
          <xref ref-type="bibr" rid="ref16">16</xref>
          ] have shown similarly that the skip-gram model by
Mikolov et al. [
          <xref ref-type="bibr" rid="ref20">20</xref>
          ] can be interpreted as implicitly factorizing a word-context matrix,
whose values are the pointwise mutual information (PMI) of the respective word and
context pairs, shifted by a global constant.
        </p>
        <p>DeepNL provides an implementation of the Hellinger PCA algorithm using Cython
and the LAPACK library SYSEVR.</p>
        <p>Co-occurrence frequencies are computed by counting the number of times each
context word w  D occurs after a sequence of T words:
 ( | ) =
 ( ,  )
 ( )
=</p>
        <p>( ,  )
∑  ( ,  )
where n(w, T) is the number of times word w occurs after a sequence of T words. The
set D of context word is normally chosen as the subset of the top most frequent words
in the vocabulary V.</p>
        <p>The word co-occurrence matrix C of size |V||D| is built. The coefficients of C
are square rooted and then its transpose is multiplied by it to obtain a symmetric
square matrix of size |V||V|, to which PCA is applied for obtaining the desired
dimensionality reduction.
2.2</p>
      </sec>
      <sec id="sec-2-2">
        <title>Context Sensitive Word Embeddings</title>
        <p>
          The meaning of words often depends on their context. Our approach for learning
word embeddings in context is inspired by the method for learning paragraph vectors
[
          <xref ref-type="bibr" rid="ref14">14</xref>
          ]. We improve on their approach, avoiding the cost of computing at query time an
embedding for the paragraph of the query. Our solution bears some resemblance to
the approach in [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ].
        </p>
        <p>D

score</p>
        <p>U
wi-1
wi
wi+1</p>
        <p>Given a sequence of training words w1, w2, …, wT, the objective function to maximize
is the negative log likelihood:
 −
∑ 
 =</p>
        <p>(  |  − , … ,   + )
We add padding at sentence boundaries and substitute &lt;UNK&gt; for OOV words.</p>
        <p>The prediction task is performed by a neural network with a softmax layer:
 (  |  − , … ,   + ) =
Each yi is the score for output word i, computed as:</p>
        <p>=  +  ℎ(  − , … ,   + ;  ,  )
where b, U are network parameters, W and D are the weight matrixes for words and
paragraphs respectively. h concatenates the vectors of each word extracted from W
and of their sum multiplied by D:
ℎ( 1, … ,   ;  ,  ) =  1|| … ||   ||
∑  
The combination of word vector and paragraph vector can be used for word sense
disambiguation. A word ik within paragraph i1,…,in is represented by the
concatenation
   ||
∑</p>
        <p>∑   


2.3</p>
      </sec>
      <sec id="sec-2-3">
        <title>Sentiment Specific Word Embeddings</title>
        <p>For the task of sentiment analysis, semantic similarity is not appropriate, since
antonyms end up at close distance in the embeddings space. One needs to learn a vector
representation where words of opposite polarity are far apart.</p>
        <p>
          Tang et al. [
          <xref ref-type="bibr" rid="ref25">25</xref>
          ] propose an approach for learning sentiment specific word
embeddings, by incorporating supervised knowledge of polarity in the loss function of the
learning algorithm. The original hinge loss function in the algorithm by Collobert et
al. [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ] is:
        </p>
        <p>LCW(x, xc) = max(0, 1  f(x) + f(xc))
where x is an ngram and xc is the same ngram corrupted by changing the target word
with a randomly chosen one, f(·) is the feature function computed by the neural
network with parameters θ. The sentiment specific network outputs a vector of two
dimensions, one for modeling the generic syntactic/semantic aspects of words and the
second for modeling polarity.</p>
        <p>A second loss function is introduced as objective for minimization:</p>
        <p>LSS(x, xc) = max(0, 1  s(x) f(x)1 + s(x) f(xc)1)
where the subscript in f(x)1 refers to the second element of the vector and s(x) is an
indicator function reflecting the sentiment polarity of a sentence, whose value is 1 if
the sentiment polarity of x is positive and -1 if it is negative.</p>
        <p>The overall hinge loss is a linear combination of the two:</p>
        <p>L(x, xc) = LCW(x, xc) + (1 – ) LSS(x, xc)
DeepNL provides an algorithm for training polarized embeddings, performing
gradient descent using an adaptive learning rate according to the AdaGrad method. The
algorithm requires a training set consisting of sentences annotated with their polarity,
for example a corpus of tweets. The algorithm builds embeddings for both unigrams
and ngrams at the same time, by performing variations on a training sentence
replacing not just a single word, but a sequence of words with either another word or
another ngram.
3</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Deep Learning Architecture</title>
      <p>
        DeepNL adopts a multi-layer neural network architecture, as proposed in [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ],
consisting of five layers: a lookup layer, a linear layer, an activation layer (e.g. hardtanh), a
second linear layer and a softmax layer. Overall, the network computes the following
function:
      </p>
      <p>f(x) = softmax(M2 a(M1 x + b1) + b2)
where M1  Rhd, b1  Rd, M2  Roh, b2  Ro, are the parameters, with d the
dimension of the input, h the number of hidden units, o the number of output classes,
a() is the activation function.
3.1</p>
      <sec id="sec-3-1">
        <title>Lookup layer</title>
        <p>The first layer of the network transforms the input into a feature vector representation.
Individual words are represented by a vector of features, which is trained by
backpropagation.</p>
        <p>For each word w  D, an internal d-dimensional feature vector representation is
given by the lookup table layer LTW(·):</p>
        <p>( ) = 〈 〉1
where  ∈ ℝ ×| |is a matrix of parameters to be learned, 〈 〉1 ∈  is the wth column
of W and d is the word vector size (a hyper-parameter to be chosen by the user).
3.2</p>
      </sec>
      <sec id="sec-3-2">
        <title>Discrete Features</title>
        <p>Besides word representations, a number of discrete features can be used. Each feature
has its own lookup table    (∙) with parameters   ∈ ℝ  ×|  |, where Dk is the
dictionary for the k-th feature and dk is a user specified vector size. The input to the
network becomes the concatenation of the vectors for all features:</p>
        <p>1( )  2( ) ⋯    ( )
3.3</p>
      </sec>
      <sec id="sec-3-3">
        <title>Sequence Taggers</title>
        <p>
          For sequence tagging, two approaches were proposed in [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ], a window approach and a
sentence approach. The window approach assumes that the tag of a word depends
mainly on the neighboring words, and is suitable for tasks like POS and NE tagging.
The sentence approach assumes that the whole sentence must be taken into account by
adding a convolution layer after the first lookup layer and is more suitable for tasks
like SRL.
        </p>
        <p>We can train a neural network to maximize the log-likelihood over the training
data. Denoting by  the trainable parameters of the network, we want to maximize the
following log-likelihood with respect to :
The score s(w, t, ) of a sequence of tags t for a sentence w, with parameters , is
given by the sum of the transition scores and the tree scores:
∑ log  (  |  ,  )


 =1
 ( ,  ,  ) = ∑( (  −1,   ) +   (  ,   ))
where T(i, j) is the score for the transition from tag i to tag j, and f(xi, ti) is the output
of the network at word xi with tag t,. The probability of a sequence y for sentence x
can be expressed as:
 ( | ,  ) =</p>
        <p>( , , )
∑   ( , , )
3.4</p>
      </sec>
      <sec id="sec-3-4">
        <title>Experiments</title>
        <p>
          We tested the DeepNL sequence tagger on the CoNLL 2003 challenge 5, a NER
benchmark based on Reuters data. The tagger was trained with three types of features:
word embeddings from SENNA, a “caps” feature telling whether a word is in
lowercase, uppercase, title case, or had at least one non-initial capital letter, and a gazetteer
feature, based on the list provided by the organizers. The window size was set to 5,
300 hidden variables were used and training was iterated for 40 epochs. In the
following table we report the scores compared with the system by Ando et al. [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ] which uses
a semi-supervised approach and with the results by the released version of SENNA6:
        </p>
        <sec id="sec-3-4-1">
          <title>5 http://www.cnts.ua.ac.be/conll2003/ner/ 6 http://ml.nec-labs.com/senna/</title>
          <p>Approach
Ando et al. 2005
SENNA
DeepNL
The slight difference with SENNA is possibly due to the use of different suffixes.
4</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Software Architecture</title>
      <p>The DeepNL implementation is written in Cython and uses C++ code which exploits
the Eigen7 library for efficient parallel linear algebra computations. Data is exchanged
between Numpy arrays in Python and Eigen matrices by means of Eigen Map types.
On the Cython side, a pointer to the location where the data of a Numpy array is
stored is obtained with a call like:
&lt;FLOAT_t*&gt;np.PyArray_DATA(self.nn.hidden_weights)
and passed to a C++ method. On the C++ side this is turned into an Eigen matrix,
with no computational costs due to conversion or allocation, with the code:
Map&lt;Matrix&gt; hidden_weights(hidden_weights, numHidden, numInput)
which interprets the pointer to a double as a matrix with numHidden rows and
numInput columns.
4.1</p>
      <sec id="sec-4-1">
        <title>Feature Extractors</title>
        <p>The library has a modular architecture that allows customizing a network for specific
tasks, in particular its first layer, by supplying extractors for various types of features.</p>
        <p>An extractor is defined as a class that inherits from an abstract class with the
following interface:
class Extractor(object):
def extract(self, tokens)
def lookup(self, feature)
def save(self, file)
def load(self, file)
Method extract, applied to a list of tokens, extracts features from each token and
returns a list of IDs for those features. Method lookup returns the vector of weights
for a given feature. Methods save/load allow saving and reloading the Extractor
data to/from disk.</p>
        <p>Extractors currently include an Embeddings extractor, implementing the word
lookup feature, a Caps, Prefix and Postfix extractor for dealing with
capitaliza</p>
        <sec id="sec-4-1-1">
          <title>7 http://eigen.tuxfamily.org/</title>
          <p>
            tion and prefix/postfix features, a Gazetteer extractor for dealing with the gazetteers
typically used in a NER, and a customizable AttributeFeature extractor that
extracts features from the state of a Shift/Reduce dependency parser, i.e. from the tokens
in the stack or buffer as described for example in [
            <xref ref-type="bibr" rid="ref21">21</xref>
            ].
4.2
          </p>
        </sec>
      </sec>
      <sec id="sec-4-2">
        <title>Parallel gradient computation</title>
        <p>The computation of the gradients during network training requires computing the
conditional probability over all possible sequences of tags, which grow exponentially
with the length of the sequence. They can however be computed in linear time by
accumulating them in a matrix, and then the matrix computation can be parallelized,
as in the following code:
delta = scores
delta[0] += transitions[-1]
tr = transitions[:-1]
for i in xrange(1, len(delta)):
# sum by columns
logadd = logsumexp(delta[i-1][:,newaxis] + tr, 0)
delta[token] += logadd
The array scores[i, j] contains the output of the neural network for the i-th
element of the sequence and for tag j, delta[i, j] represents the sum of all scores
ending at the i-th token with tag j; transitions[i, j] contains the current
estimate of the probability of a transition from tag i to tag j.</p>
        <p>The computation can be optimized and parallelized using suitable linear algebra
libraries. We implemented two versions of the network trainer, one in Python using
NumPy8 and one in C++ using Eigen9.
5</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>Identification of Idiomatic Multiword Expressions</title>
      <p>As an application of word embeddings, we experiment on the identification of
idiomatic multiword expressions.</p>
      <p>Multiword expressions are combinations of two or more words which can be
syntactically and/or semantically idiosyncratic in nature. There are many varieties of
multiword expressions: we concentrate on non-decomposable idioms, i.e. those
idioms in which the meaning cannot be assigned to the parts of the MWE.</p>
      <p>MWE identification is typically split into two phases: candidate identification and
filtering.</p>
      <p>
        For identifying potential candidates for MWE one can exploit the technique for
discovering collocations [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] based on Pointwise Mutual Information.
      </p>
      <sec id="sec-5-1">
        <title>8 http://www.numpy.org/ 9 http://eigen.tuxfamily.org/</title>
        <p>We adopt the simple variant proposed by Mikolov et al. (2013a), of computing a
score for the likelihood of forming a collocation, using the unigram and bigram
counts:

(  ,   ) =
The bigrams with score above a chosen threshold are then used as phrases. The  is a
discounting coefficient and prevents generating too many phrases consisting of very
infrequent words. We also apply a cutoff on the frequency of bigrams, to avoid
depending too much on the frequency of the individual words and in particular to limit
the tendency of assigning higher scores to lower frequency words.</p>
        <p>The process is repeated a few times by replacing the bigrams with a single token
and decreasing the threshold value, in order to extract longer phrases.</p>
        <p>
          As many have noted [
          <xref ref-type="bibr" rid="ref17">17</xref>
          ], just relying on statistical measures of frequency for
identifying MWEs does not achieve very satisfactory results, since idiomatic phrases are
not that much frequent in texts, hence data is sparse; therefore some sort of semantic
knowledge is required.
        </p>
        <p>
          Srivastava and Hovy [
          <xref ref-type="bibr" rid="ref24">24</xref>
          ] introduce a segmentation model for partitioning a
sentence into linear constituents, called motifs, which is learned though semi-supervised
learning. They then build embeddings for such motifs using the Hellinger PCA
technique of Lebret and Collobert [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ].
        </p>
        <p>For deciding whether a candidate collocation is indeed a phraseme, we rely on the
distinctive properties of idiomatic expressions: non-composability, i.e. their meaning
is not obtainable as a composition of the meaning of its part; non-substitutivity, i.e.
replacing near-synonyms for the parts of a phrase would produce something weird or
nonsensical.</p>
        <p>We assume that these two aspects should be fairly evident to the reader, otherwise
he would not be able to distinguish a phraseme from a normal phrasal combination.
Therefore, if we replace some of the words in the expression with similar words, we
should end up with an apparently weird combination.</p>
        <p>The basic idea in our experiments is to select replacement words that are similar
according to their distance in the word embedding space. As a criterion for deciding if
a phrase is unusual, we check first if no variant occurs in the corpus, otherwise we
check whether the LM probability of all variants is below a given threshold.
We carried out experiments on the corpus consisting of the plain text extracted from
the English Wikipedia, for a total of 1,096,243,235 tokens, 4,456,972 distinct.</p>
        <p>We created word embeddings on the corpus obtained by performing token
combinations as described above, using a threshold of 500 on the first iteration and 300 on
the following ones. We used a cutoff of 80 on the first iteration and 40 on the
following ones. The vocabulary for this corpus consists of 225,000 words or phrases.</p>
        <p>
          For evaluating our model, we used the WikiMwe corpus [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ], which includes a
gold evaluation set consisting of 2,500 expressions, annotated in four categories:
noncompositional, collocation, regular natural language phrase and ungrammatical. Table
2 shows the results of our experiments.
        </p>
        <sec id="sec-5-1-1">
          <title>Type</title>
          <p>MWE
Regular
Ungrammatical</p>
          <p>An online demo of a similar system for the identification of Italian idiomatic phrases
is available at: http://tanl.di.unipi.it/embeddings/mwe.</p>
          <p>A potential application of the technique is the identification of chunks in search
queries or in AdWords queries, in order to recognize expression whose intended
meaning does not correspond to the combination of the individual words in the query.
6</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>Conclusions</title>
      <p>We have presented the architecture of DeepNL, a library for building NLP
applications based on a deep learning architecture.</p>
      <p>The toolkit includes various methods for creating embedding, either generic
embeddings and sentiment specific or context sensitive embeddings.</p>
      <p>As an example of the effectiveness of the embeddings, we have explored their use
in the identification of idiomatic word expressions.</p>
      <p>The implementation is written in Python/Cython and uses C++ linear algebra
libraries for efficiency and scalability, exploiting multithreading or GPUs where
available. The code is available for download from: https://github.com/attardi/deepnl.</p>
      <p>There are several potential applications for the library, in particular sentiment
specific word embeddings might be applied to other classification tasks, for example
detecting tweets that signal dangers or disasters.</p>
      <p>
        Context sensitive word embeddings can be exploited in artificial tasks like word
sense disambiguation or word sense similarity. Hopefully they should provide also
benefits for more relevant tasks such as relation extraction, negation identification,
data linking, and ontology creation. Context-aware embeddings have been indeed
applied effectively to matching ad words to queries by Grbovic et al. [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ].
      </p>
      <p>We hope that the availability of the code will encourage exploring their use in
further applications.</p>
      <p>Acknowledgements. Partial support for this work was provided by project RIS (POR RIS of
the Regione Toscana, CUP n° 6408.30122011.026000160).
7</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <given-names>R.</given-names>
            <surname>Al-Rfou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Perozzi</surname>
          </string-name>
          , and
          <string-name>
            <given-names>S.</given-names>
            <surname>Skiena</surname>
          </string-name>
          .
          <year>2013</year>
          .
          <article-title>Polyglot: Distributed Word Representations for Multilingual NLP</article-title>
          .
          <source>arXiv preprint arXiv:1307</source>
          .
          <fpage>1662</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <given-names>R. K.</given-names>
            <surname>Ando</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , and
          <string-name>
            <given-names>P.</given-names>
            <surname>Bartlett</surname>
          </string-name>
          .
          <year>2005</year>
          .
          <article-title>A framework for learning predictive structures from multiple tasks and unlabeled data</article-title>
          .
          <source>Journal of Machine Learning Research</source>
          ,
          <volume>6</volume>
          :
          <fpage>1817</fpage>
          -
          <lpage>1853</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <given-names>Roi</given-names>
            <surname>Blanco</surname>
          </string-name>
          , Giuseppe Ottaviano, Edgar Meij,
          <year>2015</year>
          .
          <article-title>Fast and Space-efficient Entity Linking in Queries</article-title>
          ,
          <source>ACM WSDM</source>
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <given-names>D.</given-names>
            <surname>Chen</surname>
          </string-name>
          and
          <string-name>
            <given-names>C. D.</given-names>
            <surname>Manning</surname>
          </string-name>
          .
          <year>2014</year>
          .
          <article-title>Fast and Accurate Dependency Parser using Neural Networks</article-title>
          .
          <source>In: Proc. of EMNLP</source>
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <given-names>K.</given-names>
            <surname>Church</surname>
          </string-name>
          and
          <string-name>
            <given-names>P.</given-names>
            <surname>Hanks</surname>
          </string-name>
          .
          <year>1990</year>
          .
          <article-title>Word association norms, mutual information, and lexicography</article-title>
          .
          <source>Computational Linguistics</source>
          .
          <volume>16</volume>
          (
          <issue>1</issue>
          ):
          <fpage>22</fpage>
          -
          <lpage>29</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <given-names>R.</given-names>
            <surname>Collobert</surname>
          </string-name>
          et al.
          <year>2011</year>
          .
          <article-title>Natural Language Processing (Almost) from Scratch</article-title>
          .
          <source>Journal of Machine Learning Research</source>
          ,
          <volume>12</volume>
          ,
          <fpage>2461</fpage>
          -
          <lpage>2505</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <given-names>R.</given-names>
            <surname>Collobert</surname>
          </string-name>
          and
          <string-name>
            <given-names>J.</given-names>
            <surname>Weston</surname>
          </string-name>
          .
          <year>2008</year>
          .
          <article-title>A unified architecture for natural language processing: Deep neural networks with multitask learning</article-title>
          .
          <source>In ICML</source>
          ,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <given-names>R.</given-names>
            <surname>Collobert</surname>
          </string-name>
          .
          <year>2011</year>
          .
          <article-title>Deep Learning for Efficient Discriminative Parsing</article-title>
          .
          <source>In AISTATS</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <given-names>P. S.</given-names>
            <surname>Dhillon</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Foster</surname>
          </string-name>
          , and
          <string-name>
            <given-names>L.</given-names>
            <surname>Ungar</surname>
          </string-name>
          .
          <year>2011</year>
          .
          <article-title>Multiview learning of word embeddings via CCA</article-title>
          .
          <source>In Advances in Neural Information Processing Systems (NIPS)</source>
          , volume
          <volume>24</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>M. Grbovic</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Djuric</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          <string-name>
            <surname>Radosavljevic</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Silvestri</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Bhamidipati</surname>
          </string-name>
          .
          <year>2015</year>
          .
          <article-title>Context- and Content-aware Embeddings for Query Rewriting in Sponsored Search</article-title>
          .
          <source>Proceedings of SIGIR</source>
          <year>2015</year>
          , Santiago, Chile.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11. S. Hartmann, G. Szarvas,
          <string-name>
            <given-names>and I.</given-names>
            <surname>Gurevych</surname>
          </string-name>
          .
          <year>2011</year>
          .
          <article-title>Mining Multiword Terms from Wikipedia</article-title>
          , in M.T. Pazienza &amp; A.
          <string-name>
            <surname>Stellato</surname>
          </string-name>
          (Eds.):
          <source>Semi-Automatic Ontology Development: Processes and Resources</source>
          , pp.
          <fpage>226</fpage>
          -
          <lpage>258</lpage>
          , Hershey, PA, USA: IGI Global.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Huang</surname>
          </string-name>
          et al.
          <year>2012</year>
          .
          <article-title>Improving Word Representations via Global Context and Multiple Word Prototypes</article-title>
          ,
          <source>Proc. of the Association for Computational Linguistics 2012 Conference.</source>
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <given-names>G.E.</given-names>
            <surname>Hinton</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.L.</given-names>
            <surname>McClelland</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.E.</given-names>
            <surname>Rumelhart</surname>
          </string-name>
          . Distributed representations.
          <year>1986</year>
          .
          <article-title>In Parallel distributed processing: Explorations in the microstructure of cognition</article-title>
          . Volume
          <volume>1</volume>
          : Foundations, MIT Press,
          <year>1986</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <given-names>Quoc</given-names>
            <surname>Le</surname>
          </string-name>
          and
          <string-name>
            <given-names>Tomas</given-names>
            <surname>Mikolov</surname>
          </string-name>
          .
          <year>2014</year>
          .
          <article-title>Distributed Representations of Sentences and Documents</article-title>
          .
          <source>In Proceedings of the 31st International Conference on Machine Learning</source>
          , Beijing, China,
          <year>2014</year>
          . JMLR:W&amp;CP volume
          <volume>32</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <given-names>Rémi</given-names>
            <surname>Lebret</surname>
          </string-name>
          and
          <string-name>
            <given-names>Ronan</given-names>
            <surname>Collobert</surname>
          </string-name>
          .
          <year>2013</year>
          .
          <article-title>Word Embeddings through Hellinger PCA</article-title>
          .
          <source>Proc. of EACL</source>
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Omer</surname>
            <given-names>Levy</given-names>
          </string-name>
          and
          <string-name>
            <given-names>Yoav</given-names>
            <surname>Goldberg</surname>
          </string-name>
          .
          <year>2014</year>
          .
          <article-title>Neural Word Embeddings as Implicit Matrix Factorization</article-title>
          .
          <source>In Advances in Neural Information Processing Systems (NIPS)</source>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Christopher</surname>
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Manning</surname>
            and
            <given-names>Hinrich</given-names>
          </string-name>
          <string-name>
            <surname>Schütze</surname>
          </string-name>
          .
          <year>1999</year>
          .
          <article-title>Foundations of Statistical Natural Language Processing</article-title>
          . The MIT Press. Cambridge, Massachusetts.
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18. T. Mikolov,
          <string-name>
            <given-names>M.</given-names>
            <surname>Karafiat</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Burget</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Cernocky</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Sanjeev</given-names>
            <surname>Khudanpur</surname>
          </string-name>
          .
          <year>2010</year>
          .
          <article-title>Recurrent neural network based language model</article-title>
          .
          <source>In INTERSPEECH</source>
          <year>2010</year>
          ,
          <article-title>11th Annual Conference of the International Speech Communication Association</article-title>
          , Makuhari, Chiba, Japanfmikol.
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Tomas</surname>
            <given-names>Mikolov</given-names>
          </string-name>
          , Kai Chen, Greg Corrado, and
          <string-name>
            <given-names>Jeffrey</given-names>
            <surname>Dean</surname>
          </string-name>
          .
          <year>2013</year>
          .
          <article-title>Efficient Estimation of Word Representations in Vector Space</article-title>
          .
          <source>In Proceedings of Workshop at ICLR</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Tomas</surname>
            <given-names>Mikolov</given-names>
          </string-name>
          , Ilya Sutskever, Kai Chen, Greg Corrado, and
          <string-name>
            <given-names>Jeffrey</given-names>
            <surname>Dean</surname>
          </string-name>
          .
          <year>2013</year>
          .
          <article-title>Distributed Representations of Words and Phrases and their Compositionality</article-title>
          .
          <source>In Proceedings of NIPS</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <given-names>Joakim</given-names>
            <surname>Nivre</surname>
          </string-name>
          .
          <year>2008</year>
          .
          <article-title>Algorithms for deterministic incremental dependency parsing</article-title>
          .
          <source>Computational Linguistics</source>
          ,
          <volume>34</volume>
          (
          <issue>4</issue>
          ):
          <fpage>513</fpage>
          -
          <lpage>553</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <surname>Carlos</surname>
            <given-names>Ramisch</given-names>
          </string-name>
          , Aline Villavicencio, and
          <string-name>
            <given-names>Christian</given-names>
            <surname>Boitet</surname>
          </string-name>
          .
          <year>2010</year>
          .
          <article-title>Multiword expressions in the wild? the mwetoolkit comes in handy</article-title>
          . In Liu, Yang and Ting Liu, editors,
          <source>Proc. of the 23rd COLING (COLING</source>
          <year>2010</year>
          )
          <article-title>- Demonstrations</article-title>
          , pages
          <fpage>57</fpage>
          -
          <lpage>60</lpage>
          , Beijing, China.
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          23.
          <string-name>
            <given-names>Radim</given-names>
            <surname>Řehůřek</surname>
          </string-name>
          and
          <string-name>
            <given-names>Petr</given-names>
            <surname>Sojka</surname>
          </string-name>
          .
          <year>2010</year>
          .
          <article-title>Software Framework for Topic Modelling with Large Corpora</article-title>
          .
          <source>In Proceedings of the LREC 2010 Workshop on New Challenges for NLP Frameworks</source>
          ,
          <string-name>
            <surname>ELRA</surname>
          </string-name>
          , Valletta, Malta, pp.
          <fpage>45</fpage>
          -
          <lpage>50</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          24.
          <string-name>
            <given-names>S.</given-names>
            <surname>Srivastava</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Hovy</surname>
          </string-name>
          .
          <year>2014</year>
          .
          <article-title>Vector space semantics with frequency-driven motifs</article-title>
          .
          <source>In Proceedings of the 52nd Annual Meeting of the Association for Computational Linguistics</source>
          ,
          <fpage>634</fpage>
          -
          <lpage>643</lpage>
          , Baltimore, Maryland, USA.
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          25.
          <string-name>
            <surname>Tang</surname>
          </string-name>
          et al.
          <year>2014</year>
          .
          <article-title>Learning Sentiment-SpecificWord Embedding for Twitter Sentiment Classification</article-title>
          .
          <source>In Proceedings of the 52nd Annual Meeting of the Association for Computational Linguistics</source>
          , pp.
          <fpage>1555</fpage>
          -
          <lpage>1565</lpage>
          , Baltimore, Maryland, USA, June 23-25
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          26.
          <string-name>
            <surname>Joseph</surname>
            <given-names>Turian</given-names>
          </string-name>
          , Lev Ratinov, and
          <string-name>
            <given-names>Yoshua</given-names>
            <surname>Bengio</surname>
          </string-name>
          .
          <year>2010</year>
          .
          <article-title>Word representations: a simple and general method for semi-supervised learning</article-title>
          .
          <source>In Proceedings of the 48th annual meeting of the association for computational linguistics</source>
          , pp.
          <fpage>384</fpage>
          -
          <lpage>394</lpage>
          . Association for Computational Linguistics.
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          27.
          <string-name>
            <given-names>Veronika</given-names>
            <surname>Vincze</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T. István</given-names>
            <surname>Nagy</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Gábor</given-names>
            <surname>Berend</surname>
          </string-name>
          .
          <year>2011</year>
          .
          <article-title>Detecting noun compounds and light verb constructions: a contrastive study</article-title>
          .
          <source>In Proceedings of the Workshop on Multiword Expressions: from Parsing</source>
          and
          <article-title>Generation to the Real World (MWE '11). Association for Computational Linguistics</article-title>
          , Stroudsburg, PA, USA,
          <fpage>116</fpage>
          -
          <lpage>121</lpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>