ACL-OCL / Base_JSON /prefixD /json /D16 /D16-1047.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "D16-1047",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T16:37:22.100086Z"
},
"title": "Morphological Priors for Probabilistic Neural Word Embeddings",
"authors": [
{
"first": "Parminder",
"middle": [],
"last": "Bhatia",
"suffix": "",
"affiliation": {},
"email": "parminder@yikyakapp.com"
},
{
"first": "Robert",
"middle": [],
"last": "Guthrie",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Jacob",
"middle": [],
"last": "Eisenstein",
"suffix": "",
"affiliation": {},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Word embeddings allow natural language processing systems to share statistical information across related words. These embeddings are typically based on distributional statistics, making it difficult for them to generalize to rare or unseen words. We propose to improve word embeddings by incorporating morphological information, capturing shared sub-word features. Unlike previous work that constructs word embeddings directly from morphemes, we combine morphological and distributional information in a unified probabilistic framework, in which the word embedding is a latent variable. The morphological information provides a prior distribution on the latent word embeddings, which in turn condition a likelihood function over an observed corpus. This approach yields improvements on intrinsic word similarity evaluations, and also in the downstream task of part-of-speech tagging.",
"pdf_parse": {
"paper_id": "D16-1047",
"_pdf_hash": "",
"abstract": [
{
"text": "Word embeddings allow natural language processing systems to share statistical information across related words. These embeddings are typically based on distributional statistics, making it difficult for them to generalize to rare or unseen words. We propose to improve word embeddings by incorporating morphological information, capturing shared sub-word features. Unlike previous work that constructs word embeddings directly from morphemes, we combine morphological and distributional information in a unified probabilistic framework, in which the word embedding is a latent variable. The morphological information provides a prior distribution on the latent word embeddings, which in turn condition a likelihood function over an observed corpus. This approach yields improvements on intrinsic word similarity evaluations, and also in the downstream task of part-of-speech tagging.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Word embeddings have been shown to improve many natural language processing applications, from language models (Mikolov et al., 2010) to information extraction (Collobert and Weston, 2008) , and from parsing (Chen and Manning, 2014) to machine translation (Cho et al., 2014) . Word embeddings leverage a classical idea in natural language processing: use distributional statistics from large amounts of unlabeled data to learn representations that allow sharing * The first two authors contributed equally.",
"cite_spans": [
{
"start": 111,
"end": 133,
"text": "(Mikolov et al., 2010)",
"ref_id": "BIBREF27"
},
{
"start": 160,
"end": 188,
"text": "(Collobert and Weston, 2008)",
"ref_id": "BIBREF8"
},
{
"start": 208,
"end": 232,
"text": "(Chen and Manning, 2014)",
"ref_id": "BIBREF5"
},
{
"start": 256,
"end": 274,
"text": "(Cho et al., 2014)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Code is available at https://github.com/rguthrie3/ MorphologicalPriorsForWordEmbeddings. across related words (Brown et al., 1992) . While this approach is undeniably effective, the long-tail nature of linguistic data ensures that there will always be words that are not observed in even the largest corpus (Zipf, 1949 ). There will be many other words which are observed only a handful of times, making the distributional statistics too sparse to accurately estimate the 100-or 1000-dimensional dense vectors that are typically used for word embeddings. These problems are particularly acute in morphologically rich languages like German and Turkish, where each word may have dozens of possible inflections.",
"cite_spans": [
{
"start": 110,
"end": 130,
"text": "(Brown et al., 1992)",
"ref_id": "BIBREF4"
},
{
"start": 307,
"end": 318,
"text": "(Zipf, 1949",
"ref_id": "BIBREF41"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Recent work has proposed to address this issue by replacing word-level embeddings with embeddings based on subword units: morphemes (Luong et al., 2013; Botha and Blunsom, 2014) or individual characters (Santos and Zadrozny, 2014; Kim et al., 2016) . Such models leverage the fact that word meaning is often compositional, arising from subword components. By learning representations of subword units, it is possible to generalize to rare and unseen words.",
"cite_spans": [
{
"start": 132,
"end": 152,
"text": "(Luong et al., 2013;",
"ref_id": "BIBREF25"
},
{
"start": 153,
"end": 177,
"text": "Botha and Blunsom, 2014)",
"ref_id": "BIBREF3"
},
{
"start": 203,
"end": 230,
"text": "(Santos and Zadrozny, 2014;",
"ref_id": "BIBREF33"
},
{
"start": 231,
"end": 248,
"text": "Kim et al., 2016)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "But while morphology and orthography are sometimes a signal of semantics, there are also many cases similar spellings do not imply similar meanings: better-batter, melon-felon, dessert-desert, etc. If each word's embedding is constrained to be a deterministic function of its characters, as in prior work, then it will be difficult to learn appropriately distinct embeddings for such pairs. Automated morphological analysis may be incorrect: for example, really may be segmented into re+ally, incorrectly suggesting a similarity to revise and review. Even correct morphological segmentation may be misleading. Consider that incredible and inflammable share a prefix in-, which exerts the opposite effect in these two cases. 1 Overall, a word's observed internal structure gives evidence about its meaning, but it must be possible to override this evidence when the distributional facts point in another direction.",
"cite_spans": [
{
"start": 724,
"end": 725,
"text": "1",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "We formalize this idea using the machinery of probabilistic graphical models. We treat word embeddings as latent variables (Vilnis and McCallum, 2014) , which are conditioned on a prior distribution that is based on word morphology. We then maximize a variational approximation to the expected likelihood of an observed corpus of text, fitting variational parameters over latent binary word embeddings. For common words, the expected word embeddings are largely determined by the expected corpus likelihood, and thus, by the distributional statistics. For rare words, the prior plays a larger role. Since the prior distribution is a function of the morphology, it is possible to impute embeddings for unseen words after training the model. We model word embeddings as latent binary vectors. This choice is based on linguistic theories of lexical semantics and morphology. Morphemes are viewed as adding morphosyntactic features to words: for example, in English, un-adds a negation feature (unbelievable), -s adds a plural feature, and -ed adds a past tense feature (Halle and Marantz, 1993) . Similarly, the lexicon is often viewed as organized in terms of features: for example, the word bachelor carries the features HUMAN, MALE, and UNMAR-RIED (Katz and Fodor, 1963) . Each word's semantic role within a sentence can also be characterized in terms of binary features (Dowty, 1991; Reisinger et al., 2015) . Our approach is more amenable to such theoretical models than traditional distributed word embeddings. However, we can also work with the expected word embeddings, which are vectors of probabilities, and can therefore be expected to hold the advantages of dense distributed representations (Bengio et al., 2013) .",
"cite_spans": [
{
"start": 123,
"end": 150,
"text": "(Vilnis and McCallum, 2014)",
"ref_id": "BIBREF37"
},
{
"start": 1066,
"end": 1091,
"text": "(Halle and Marantz, 1993)",
"ref_id": "BIBREF18"
},
{
"start": 1248,
"end": 1270,
"text": "(Katz and Fodor, 1963)",
"ref_id": "BIBREF20"
},
{
"start": 1371,
"end": 1384,
"text": "(Dowty, 1991;",
"ref_id": "BIBREF13"
},
{
"start": 1385,
"end": 1408,
"text": "Reisinger et al., 2015)",
"ref_id": "BIBREF32"
},
{
"start": 1701,
"end": 1722,
"text": "(Bengio et al., 2013)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The modeling framework is illustrated in Figure 1 , focusing on the word sesquipedalianism. This word is rare, but its morphology indicates several of its properties: the -ism suffix suggests that the word is a noun, likely describing some abstract property; the sesqui-prefix refers to one and a half, and so on. If the word is unknown, we must lean heavily on these intuitions, but if the word is well attested then we can rely instead on its examples in use.",
"cite_spans": [],
"ref_spans": [
{
"start": 41,
"end": 49,
"text": "Figure 1",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Model",
"sec_num": "2"
},
{
"text": "It is this reasoning that our modeling framework aims to formalize. We treat word embeddings as latent variables in a joint probabilistic model. The prior distribution over a word's embedding is conditioned on its morphological structure. The embedding itself then participates, as a latent variable, in a neural sequence model over a corpus, contributing to the overall corpus likelihood. If the word appears frequently, then the corpus likelihood dominates the prior -which is equivalent to relying on the word's distributional properties. If the word appears rarely, then the prior distribution steps in, and gives a best guess as to the word's meaning.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Model",
"sec_num": "2"
},
{
"text": "Before describing these component pieces in detail, we first introduce some notation. The representation of word w is a latent binary vector b w \u2208 {0, 1} k , where k is the size of each word embedding. As noted in the introduction, this binary representation is motivated by feature-based theories of lexical semantics (Katz and Fodor, 1963) . Each word w is constructed from a set of M w observed morphemes, M w = (m w,1 , m w,2 , . . . , m w,Mw ). Each morpheme is in turn drawn from a finite vocabulary of size v m , so that m w,i \u2208 {1, 2, . . . , v m }. Morphemes are obtained from an unsupervised morphological segmenter, which is treated as a black box. Finally, we are given a corpus, which is a sequence of words,",
"cite_spans": [
{
"start": 319,
"end": 341,
"text": "(Katz and Fodor, 1963)",
"ref_id": "BIBREF20"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Model",
"sec_num": "2"
},
{
"text": "x = (x 1 , x 2 , . . . , x N ), where each word x t \u2208 {1, 2, . . . , v w }, with v",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Model",
"sec_num": "2"
},
{
"text": "w equal to the size of the vocabulary, including the token UNK for unknown words.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Model",
"sec_num": "2"
},
{
"text": "The key differentiating property of this model is that rather than estimating word embeddings directly, we treat them as a latent variable, with a prior distribution reflecting the word's morphological proper-plagued by sesquipedalianism . . . ties. To characterize this prior distribution, each morpheme m is associated with an embedding of its own, u m \u2208 R k , where k is again the embedding size. Then for position i of the word embedding b w , we have the following prior,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Prior distribution",
"sec_num": "2.1"
},
{
"text": "h 1 h 2 h 3 b plagued b by b sesquipedalianism u plague u by u sesqui u ed u pedal u ian u ism",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Prior distribution",
"sec_num": "2.1"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "b w,i \u223c Bernoulli \u03c3( m\u2208Mw u m,i ) ,",
"eq_num": "(1)"
}
],
"section": "Prior distribution",
"sec_num": "2.1"
},
{
"text": "where \u03c3(\u2022) indicates the sigmoid function. The prior log-likelihood for a set of word embeddings is,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Prior distribution",
"sec_num": "2.1"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "logP (b; M, u) (2) = Vw w log P (b w ; M w , u) (3) = Vw w k i log P (b w,i ; M w , u) (4) = Vw w k i b w,i log \u03c3 m\u2208Mw u m,i",
"eq_num": "(5)"
}
],
"section": "Prior distribution",
"sec_num": "2.1"
},
{
"text": "+ (1 \u2212 b w,i ) log 1 \u2212 \u03c3 m\u2208Mw u m,i .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Prior distribution",
"sec_num": "2.1"
},
{
"text": "The corpus likelihood is computed via a recurrent neural network language model (Mikolov et al., 2010, RNNLM) , which is a generative model of sequences of tokens. In the RNNLM, the probability of each word is conditioned on all preceding words through a recurrently updated state vector. This state vector in turn depends on the embeddings of the previous words, through the following update equations:",
"cite_spans": [
{
"start": 80,
"end": 109,
"text": "(Mikolov et al., 2010, RNNLM)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Expected likelihood",
"sec_num": "2.2"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "h t =f (b xt , h t\u22121 ) (6) x t+1 \u223cMultinomial (Softmax [Vh t ]) .",
"eq_num": "(7)"
}
],
"section": "Expected likelihood",
"sec_num": "2.2"
},
{
"text": "The function f (\u2022) is a recurrent update equation; in the RNN, it corresponds to \u03c3(\u0398h t\u22121 + b xt ), where \u03c3(\u2022) is the elementwise sigmoid function. The matrix V \u2208 R v\u00d7k contains the \"output embeddings\" of each word in the vocabulary. We can then define the conditional log-likelihood of a corpus",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Expected likelihood",
"sec_num": "2.2"
},
{
"text": "x = (x 1 , x 2 , . . . x N ) as, log P (x | b) = N t log P (x t | h t\u22121 , b). (8)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Expected likelihood",
"sec_num": "2.2"
},
{
"text": "Since h t\u22121 is deterministically computed from x 1:t\u22121 (conditioned on b), we can equivalently write the log-likelihood as,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Expected likelihood",
"sec_num": "2.2"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "log P (x | b) = t log P (x t | x 1:t\u22121 , b).",
"eq_num": "(9)"
}
],
"section": "Expected likelihood",
"sec_num": "2.2"
},
{
"text": "This same notation can be applied to compute the likelihood under a long-short term memory (LSTM) language model (Sundermeyer et al., 2012) . The only difference is that the recurrence function f (\u2022) from Equation 6 now becomes more complex, including the input, output, and forget gates, and the recurrent state h t now includes the memory cell. As the LSTM update equations are well known, we focus on the more concise RNN notation, but we employ LSTMs in all experiments due to their better ability to capture long-range dependencies.",
"cite_spans": [
{
"start": 113,
"end": 139,
"text": "(Sundermeyer et al., 2012)",
"ref_id": "BIBREF34"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Expected likelihood",
"sec_num": "2.2"
},
{
"text": "Inference on the marginal likelihood P (x 1:N ) = P (x 1:N , b)db is intractable. We address this issue by making a variational approximation,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "log P (x) = log b P (x | b)P (b) (10) = log b Q(b) Q(b) P (x | b)P (b) (11) = log E q P (x | b) P (b) Q(b) (12) \u2265E q [log P (x | b) + log P (b) \u2212 log Q(b)]",
"eq_num": "(13)"
}
],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "The variational distribution Q(b) is defined using a fully factorized mean field approximation,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "Q(b; \u03b3) = vw w k i q(b w,i ; \u03b3 w,i ).",
"eq_num": "(14)"
}
],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "The variational distribution is a product of Bernoullis, with parameters \u03b3 w,j \u2208 [0, 1]. In the evaluations that follow, we use the expected word embeddings q(b w ), which are dense vectors in [0, 1] k . We can then use Q(\u2022) to place a variational lower bound on the expected conditional likelihood,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "Even with this variational approximation, the expected log-likelihood is still intractable to compute. In recurrent neural network language models, each word x t is conditioned on the entire prior history, x 1:t\u22121 -indeed, this is one of the key advantages over fixed-length n-gram models. However, this means that the individual expected log probabilities involve not just the word embedding of x t and its immediate predecessor, but rather, the embeddings of all words in the sequence x 1:t :",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "E q [log P (x | b)] (15) = N t E q [log P (x t | x 1:t\u22121 , b)]",
"eq_num": "(16)"
}
],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "= N t {bw:w\u2208x 1:t } Q({b w : w \u2208 x 1:t }) \u00d7 log P (x t | x 1:t\u22121 , b).",
"eq_num": "(17)"
}
],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "We therefore make a further approximation by taking a local expectation over the recurrent state,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "E q [h t ] \u2248 f (E q [b xt ] , E q [h t\u22121 ]) (18) E q [log P (x t | x 1:t\u22121 , b)] \u2248 log Softmax (VE q [h t ]) .",
"eq_num": "(19)"
}
],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "This approximation means that we do not propagate uncertainty about h t through the recurrent update or through the likelihood function, but rather, we use local point estimates. Alternative methods such as variational autoencoders (Chung et al., 2015) or sequential Monte Carlo (de Freitas et al., 2000) might provide better and more principled approximations, but this direction is left for future work.",
"cite_spans": [
{
"start": 232,
"end": 252,
"text": "(Chung et al., 2015)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "Variational bounds in the form of Equation 13 can generally be expressed as a difference between an expected log-likelihood term and a term for the Kullback-Leibler (KL) divergence between the prior distribution P (b) and the variational distribution Q(b) (Wainwright and Jordan, 2008). Incorporating the approximation in Equation 19, the resulting objective is,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "L = N t log P (x t | x 1:t\u22121 ; E q [b]) \u2212 D KL (Q(b) P (b)).",
"eq_num": "(20)"
}
],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "The KL divergence is equal to,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "D KL (Q(b) P (b)) (21) = vw w k i D KL (q(b w,i ) P (b w,i )) (22) = vw w k i \u03b3 w,i log \u03c3( m\u2208Mw u m,i ) + (1 \u2212 \u03b3 w,i ) log(1 \u2212 \u03c3( m\u2208Mw u m,i )) \u2212 \u03b3 w,i log \u03b3 w,i \u2212 (1 \u2212 \u03b3 w,i ) log(1 \u2212 \u03b3 w,i ).",
"eq_num": "(23)"
}
],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "Each term in the variational bound can be easily constructed in a computation graph, enabling automatic differentiation and the application of standard stochastic optimization techniques.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Variational approximation",
"sec_num": "2.3"
},
{
"text": "The objective function is given by the variational lower bound in Equation 20, using the approximation to the conditional likelihood described in Equation 19. This function is optimized in terms of several parameters:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Implementation",
"sec_num": "3"
},
{
"text": "\u2022 the morpheme embeddings, {u m } m\u22081...vm ;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Implementation",
"sec_num": "3"
},
{
"text": "\u2022 the variational parameters on the word embeddings, {\u03b3} w\u22081...vw ;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Implementation",
"sec_num": "3"
},
{
"text": "\u2022 the output word embeddings V;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Implementation",
"sec_num": "3"
},
{
"text": "\u2022 the parameter of the recurrence function, \u0398.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Implementation",
"sec_num": "3"
},
{
"text": "Each of these parameters is updated via the RMSProp online learning algorithm (Tieleman and Hinton, 2012) . The model and baseline (described below) are implemented in blocks (van Merri\u00ebnboer et al., 2015) . In the remainder of the paper, we refer to our model as VAREMBED.",
"cite_spans": [
{
"start": 78,
"end": 105,
"text": "(Tieleman and Hinton, 2012)",
"ref_id": "BIBREF35"
},
{
"start": 175,
"end": 205,
"text": "(van Merri\u00ebnboer et al., 2015)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Implementation",
"sec_num": "3"
},
{
"text": "All embeddings are trained on 22 million tokens from the the North American News Text (NANT) corpus (Graff, 1995) . We use an initial vocabulary of 50,000 words, with a special UNK token for words that are not among the 50,000 most common. We then perform downcasing and convert all numeric tokens to a special NUM token. After these steps, the vocabulary size decreases to 48,986. Note that the method can impute word embeddings for out-of-vocabulary words under the prior distribution P (b; M, u); however, it is still necessary to decide on a vocabulary size to determine the number of variational parameters \u03b3 and output embeddings to estimate. Unsupervised morphological segmentation is performed using Morfessor (Creutz and Lagus, 2002) , with a maximum of sixteen morphemes per word. This results in a total of 14,000 morphemes, which includes stems for monomorphemic words. We do not rely on any labeled information about morphological structure, although the incorporation of gold morphological analysis is a promising topic for future work.",
"cite_spans": [
{
"start": 100,
"end": 113,
"text": "(Graff, 1995)",
"ref_id": null
},
{
"start": 718,
"end": 742,
"text": "(Creutz and Lagus, 2002)",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Data and preprocessing",
"sec_num": "3.1"
},
{
"text": "The LSTM parameters are initialized uniformly in the range [\u22120.08, 0.08]. The word embeddings are initialized using pre-trained word2vec embeddings. We train the model for 15 epochs, with an initial learning rate of 0.01, a decay of 0.97 per epoch, and minibatches of size 25. We clip the norm of the gradients (normalized by minibatch size) at 1, using the default settings in the RMSprop implementation in blocks. These choices are motivated by prior work (Zaremba et al., 2014) . After each iteration, we compute the objective function on the development set; when the objective does not improve beyond a small threshold, we halve the learning rate.",
"cite_spans": [
{
"start": 458,
"end": 480,
"text": "(Zaremba et al., 2014)",
"ref_id": "BIBREF40"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Learning details",
"sec_num": "3.2"
},
{
"text": "Training takes roughly one hour per iteration using an NVIDIA 670 GTX, which is a commodity graphics processing unit (GPU) for gaming. This is nearly identical to the training time required for our reimplementation of the algorithm of Botha and Blunsom (2014), described below.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Learning details",
"sec_num": "3.2"
},
{
"text": "The most comparable approach is that of Botha and Blunsom (2014). In their work, embeddings are estimated for each morpheme, as well as for each invocabulary word. The final embedding for a word is then the sum of these embeddings, e.g., greenhouse = greenhouse + green + house, 24where the italicized elements represent learned embeddings.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Baseline",
"sec_num": "3.3"
},
{
"text": "We build a baseline that is closely inspired by this approach, which we call SUMEMBED. The key difference is that while Botha and Blunsom (2014) build on the log-bilinear language model (Mnih and Hinton, 2007) , we use the same LSTM-based architecture as in our own model implementation. This enables our evaluation to focus on the critical difference between the two approaches: the use of latent variables rather than summation to model the word embeddings. As with our method, we used pre-trained word2vec embeddings to initialize the model.",
"cite_spans": [
{
"start": 186,
"end": 209,
"text": "(Mnih and Hinton, 2007)",
"ref_id": "BIBREF30"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Baseline",
"sec_num": "3.3"
},
{
"text": "The dominant terms in the overall number of parameters are the (expected) word embeddings themselves. The variational parameters of the input word embeddings, \u03b3, are of size k \u00d7 v w . The output word embeddings are of size #|h| \u00d7 v w . The morpheme embeddings are of size k \u00d7 v m , with v m v w . In our main experiments, we set v w = 48, 896 (see above), k = 128, and #|h| = 128. After including the character embeddings and the parameters of the recurrent models, the total number of parameters is roughly 12.8 million. This is identical to number of parameters in the SUMEMBED baseline.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Number of parameters",
"sec_num": "3.4"
},
{
"text": "Our evaluation compares the following embeddings:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation",
"sec_num": "4"
},
{
"text": "WORD2VEC We train the popular word2vec CBOW (continuous bag of words) model (Mikolov et al., 2013) , using the gensim implementation.",
"cite_spans": [
{
"start": 76,
"end": 98,
"text": "(Mikolov et al., 2013)",
"ref_id": "BIBREF28"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation",
"sec_num": "4"
},
{
"text": "SUMEMBED We compare against the baseline described in \u00a7 3.3, which can be viewed as a reimplementation of the compositional model of Botha and Blunsom (2014). VAREMBED For our model, we take the expected embeddings E q [b], and then pass them through an inverse sigmoid function to obtain values over the entire real line.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation",
"sec_num": "4"
},
{
"text": "Our first evaluation is based on two classical word similarity datasets: Wordsim353 (Finkelstein et al., 2001 ) and the Stanford \"rare words\" (rw) dataset (Luong et al., 2013) . We report Spearmann's \u03c1, a measure of rank correlation, evaluating on both the entire vocabulary as well as the subset of in-vocabulary words.",
"cite_spans": [
{
"start": 84,
"end": 109,
"text": "(Finkelstein et al., 2001",
"ref_id": "BIBREF16"
},
{
"start": 155,
"end": 175,
"text": "(Luong et al., 2013)",
"ref_id": "BIBREF25"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Word similarity",
"sec_num": "4.1"
},
{
"text": "As shown in Table 1 , VAREMBED consistently outperforms SUMEMBED on both datasets. On the subset of in-vocabulary words, WORD2VEC gives slightly better results on the wordsim words that are in the NANT vocabulary, but is not applicable to the complete dataset. On the rare words dataset, WORD2VEC performs considerably worse than both morphology-based models, matching the findings of Luong et al. (2013) and Botha and Blunsom (2014) regarding the importance of morphology for doing well on this dataset.",
"cite_spans": [
{
"start": 385,
"end": 404,
"text": "Luong et al. (2013)",
"ref_id": "BIBREF25"
},
{
"start": 409,
"end": 433,
"text": "Botha and Blunsom (2014)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [
{
"start": 12,
"end": 19,
"text": "Table 1",
"ref_id": "TABREF0"
}
],
"eq_spans": [],
"section": "Word similarity",
"sec_num": "4.1"
},
{
"text": "Recent work questions whether these word similarity metrics are predictive of performance on downstream tasks (Faruqui et al., 2016) . The QVEC statistic is another intrinsic evaluation method, which has been shown to be better correlated with downstream tasks (Tsvetkov et al., 2015) . This metric measures the alignment between word embeddings and a set of lexical semantic features. Specifically, we use the semcor noun verb supersenses oracle provided at the qvec github repository. 2 Table 2 , VAREMBED outperforms SUMEMBED on the full lexicon, and gives similar performance to WORD2VEC on the set of invocabulary words. We also consider the morpheme embeddings alone. For SUMEMBED, this means that we construct the word embedding from the sum of the embeddings for its morphemes, without the additional embedding per word. For VAREMBED, we use the expected embedding under the prior distribution E[b | c]. The results for these representations are shown in the bottom half of Table 2 , revealing that VAREMBED learns much more meaningful embeddings at the morpheme level, while much of the power of SUMEMBED seems to come from the word embeddings. ",
"cite_spans": [
{
"start": 110,
"end": 132,
"text": "(Faruqui et al., 2016)",
"ref_id": "BIBREF15"
},
{
"start": 261,
"end": 284,
"text": "(Tsvetkov et al., 2015)",
"ref_id": "BIBREF36"
}
],
"ref_spans": [
{
"start": 489,
"end": 496,
"text": "Table 2",
"ref_id": "TABREF1"
},
{
"start": 982,
"end": 989,
"text": "Table 2",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "Alignment with lexical semantic features",
"sec_num": "4.2"
},
{
"text": "Our final evaluation is on the downstream task of part-of-speech tagging, using the Penn Treebank. We build a simple classification-based tagger, using a feedforward neural network. (This is not intended as an alternative to state-of-the-art tagging algorithms, but as a comparison of the syntactic utility of the information encoded in the word embeddings.) The inputs to the network are the concatenated embeddings of the five word neighborhood",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Part-of-speech tagging",
"sec_num": "4.3"
},
{
"text": "(x t\u22122 , x t\u22121 , x t , x t+1 , x t+2 )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Part-of-speech tagging",
"sec_num": "4.3"
},
{
"text": "; as in all evaluations, 128-dimensional embeddings are used, so the total size of the input is 640. This input is fed into a network with two hidden layers of size 625, and a softmax output layer over all tags. We train using RMSProp (Tieleman and Hinton, 2012) . Results are shown in at p < .05. Figure 2 breaks down the errors by word frequency. As shown in the figure, the tagger based on WORD2VEC performs poorly for rare words, which is expected because these embeddings are estimated from sparse distributional statistics. SUMEMBED is slightly better on the rarest words (the 0 \u2212 100 group accounts for roughly 10% of all tokens). In this case, it appears that this simple additive model is better, since the distributional statistics are too sparse to offer much improvement. The probabilistic VAREMBED embeddings are best for all other frequency groups, showing that it effectively combines morphology and distributional statistics.",
"cite_spans": [
{
"start": 235,
"end": 262,
"text": "(Tieleman and Hinton, 2012)",
"ref_id": "BIBREF35"
}
],
"ref_spans": [
{
"start": 298,
"end": 306,
"text": "Figure 2",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Part-of-speech tagging",
"sec_num": "4.3"
},
{
"text": "Adding side information to word embeddings An alternative approach to incorporating additional information into word embeddings is to constrain the embeddings of semantically-related words to be similar. Such work typically draws on existing lexical semantic resources such as WordNet. For example, Yu and Dredze (2014) define a joint training objective, in which the word embedding must predict not only neighboring word tokens in a corpus, but also related word types in a semantic resource; a similar approach is taken by Bian et al. (2014) . Alternatively, propose to \"retrofit\" pre-trained word embeddings over a semantic network. Both retrofitting and our own approach treat the true word embeddings as latent variables, from which the pretrained word embeddings are stochastically emitted. However, a key difference from our approach is that the underlying representation in these prior works is relational, and not generative. These methods can capture similarity between words in a relational lexicon such as WordNet, but they do not offer a generative account of how (approximate) meaning is constructed from orthography or morphology.",
"cite_spans": [
{
"start": 525,
"end": 543,
"text": "Bian et al. (2014)",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related work",
"sec_num": "5"
},
{
"text": "Word embeddings and morphology The SUMEMBED baseline is based on the work of Botha and Blunsom 2014, in which words are segmented into morphemes using MORFESSOR (Creutz and Lagus, 2002) , and then word representations are computed through addition of morpheme representations. A key modeling difference from this prior work is that rather than computing word embeddings directly and deterministically from subcomponent embeddings (morphemes or characters, as in Kim et al., 2016) ), we use these subcomponents to define a prior distribution, which can be overridden by distributional statistics for common words. Other work exploits morphology by training word embeddings to optimize a joint objective over distributional statistics and rich, morphologically-augmented part of speech tags (Cotterell and Sch\u00fctze, 2015) . This can yield better word embeddings, but does not provide a way to compute embeddings for unseen words, as our approach does. Recent work by Cotterell et al. (2016) extends the idea of retrofitting, which was based on semantic similarity, to a morphological framework. In this model, embeddings are learned for morphemes as well as for words, and each word embedding is conditioned on the sum of the morpheme embeddings, using a multivariate Gaussian. The covariance of this Gaussian prior is set to the inverse of the number of examples in the training corpus, which has the effect of letting the morphology play a larger role for rare or unseen words. Like all retrofitting approaches, this method is applied in a pipeline fashion after training word embeddings on a large corpus; in contrast, our approach is a joint model over the morphology and corpus. Another practical difference is that Cotterell et al. (2016) use gold morphological features, while we use an automated morphological segmentation.",
"cite_spans": [
{
"start": 161,
"end": 185,
"text": "(Creutz and Lagus, 2002)",
"ref_id": "BIBREF11"
},
{
"start": 462,
"end": 479,
"text": "Kim et al., 2016)",
"ref_id": "BIBREF21"
},
{
"start": 789,
"end": 818,
"text": "(Cotterell and Sch\u00fctze, 2015)",
"ref_id": "BIBREF9"
},
{
"start": 964,
"end": 987,
"text": "Cotterell et al. (2016)",
"ref_id": "BIBREF10"
},
{
"start": 1718,
"end": 1741,
"text": "Cotterell et al. (2016)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related work",
"sec_num": "5"
},
{
"text": "Latent word embeddings Word embeddings are typically treated as a parameter, and are optimized through point estimation (Bengio et al., 2003; Collobert and Weston, 2008; Mikolov et al., 2010) . Current models use word embeddings with hundreds or even thousands of parameters per word, yet many words are observed only a handful of times. It is therefore natural to consider whether it might be beneficial to model uncertainty over word embeddings. Vilnis and McCallum (2014) propose to model Gaussian densities over dense vector word embeddings. They estimate the parameters of the Gaussian directly, and, unlike our work, do not consider using orthographic information as a prior distribution. This is easy to do in the latent binary framework proposed here, which is also a better fit for some theoretical models of lexical semantics (Katz and Fodor, 1963; Reisinger et al., 2015) . This view is shared by Kruszewski et al. (2015) , who induce binary word representations using labeled data of lexical semantic entailment relations, and by Henderson and Popa (2016) , who take a mean field approximation over binary representations of lexical semantic features to induce hyponymy relations.",
"cite_spans": [
{
"start": 120,
"end": 141,
"text": "(Bengio et al., 2003;",
"ref_id": "BIBREF0"
},
{
"start": 142,
"end": 169,
"text": "Collobert and Weston, 2008;",
"ref_id": "BIBREF8"
},
{
"start": 170,
"end": 191,
"text": "Mikolov et al., 2010)",
"ref_id": "BIBREF27"
},
{
"start": 448,
"end": 474,
"text": "Vilnis and McCallum (2014)",
"ref_id": "BIBREF37"
},
{
"start": 836,
"end": 858,
"text": "(Katz and Fodor, 1963;",
"ref_id": "BIBREF20"
},
{
"start": 859,
"end": 882,
"text": "Reisinger et al., 2015)",
"ref_id": "BIBREF32"
},
{
"start": 908,
"end": 932,
"text": "Kruszewski et al. (2015)",
"ref_id": "BIBREF23"
},
{
"start": 1042,
"end": 1067,
"text": "Henderson and Popa (2016)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related work",
"sec_num": "5"
},
{
"text": "More broadly, our work is inspired by recent efforts to combine directed graphical models with discriminatively trained \"deep learning\" architectures. The variational autoencoder (Kingma and Welling, 2014), neural variational inference (Mnih and Gregor, 2014; Miao et al., 2016) , and black box variational inference (Ranganath et al., 2014) all propose to use a neural network to compute the variational approximation. These ideas are employed by Chung et al. (2015) in the variational recurrent neural network, which places a latent continuous variable at each time step. In contrast, we have a dictionary of latent vari-ables -the word embeddings -which introduce uncertainty over the hidden state h t in a standard recurrent neural network or LSTM. We train this model by employing a mean field approximation, but these more recent techniques for neural variational inference may also be applicable. We plan to explore this possibility in future work.",
"cite_spans": [
{
"start": 236,
"end": 259,
"text": "(Mnih and Gregor, 2014;",
"ref_id": "BIBREF29"
},
{
"start": 260,
"end": 278,
"text": "Miao et al., 2016)",
"ref_id": "BIBREF26"
},
{
"start": 317,
"end": 341,
"text": "(Ranganath et al., 2014)",
"ref_id": "BIBREF31"
},
{
"start": 448,
"end": 467,
"text": "Chung et al. (2015)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related work",
"sec_num": "5"
},
{
"text": "We present a model that unifies compositional and distributional perspectives on lexical semantics, through the machinery of Bayesian latent variable models. In this framework, our prior expectations of word meaning are based on internal structure, but these expectations can be overridden by distributional statistics. The model is based on the very successful long-short term memory (LSTM) for sequence modeling, and while it employs a Bayesian justification, its inference and estimation are little more complicated than a standard LSTM. This demonstrates the advantages of reasoning about uncertainty even when working in a \"neural\" paradigm.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion and future work",
"sec_num": "6"
},
{
"text": "This work represents a first step, and we see many possibilities for improving performance by extending it. Clearly we would expect this model to be more effective in languages with richer morphological structure than English, and we plan to explore this possibility in future work. From a modeling perspective, our prior distribution merely sums the morpheme embeddings, but a more accurate model might account for sequential or combinatorial structure, through a recurrent , recursive (Luong et al., 2013) , or convolutional architecture (Kim et al., 2016 ). There appears to be no technical obstacle to imposing such structure in the prior distribution. Furthermore, while we build the prior distribution from morphemes, it is natural to ask whether characters might be a better underlying representation: character-based models may generalize well to nonword tokens such as names and abbreviations, they do not require morphological segmentation, and they require a much smaller number of underlying embeddings. On the other hand, morphemes encode rich regularities across words, which may make a morphologically-informed prior easier to learn than a prior which works directly at the character level. It is possible that this tradeoff could be transcended by combining characters and morphemes in a single model.",
"cite_spans": [
{
"start": 487,
"end": 507,
"text": "(Luong et al., 2013)",
"ref_id": "BIBREF25"
},
{
"start": 540,
"end": 557,
"text": "(Kim et al., 2016",
"ref_id": "BIBREF21"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion and future work",
"sec_num": "6"
},
{
"text": "Another advantage of latent variable models is that they admit partial supervision. If we follow Tsvetkov et al. (2015) in the argument that word embeddings should correspond to lexical semantic features, then an inventory of such features could be used as a source of partial supervision, thus locking dimensions of the word embeddings to specific semantic properties. This would complement the graph-based \"retrofitting\" supervision proposed by , by instead placing supervision at the level of individual words.",
"cite_spans": [
{
"start": 97,
"end": 119,
"text": "Tsvetkov et al. (2015)",
"ref_id": "BIBREF36"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion and future work",
"sec_num": "6"
},
{
"text": "The confusion is resolved by morphologically analyzing the second example as (in+flame)+able, but this requires hierarchical morphological parsing, not just segmentation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "https://github.com/ytsvetko/qvec",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "Thanks to Erica Briscoe, Martin Hyatt, Yangfeng Ji, Bryan Leslie Lee, and Yi Yang for helpful discussion of this work. Thanks also the EMNLP reviewers for constructive feedback. This research is supported by the Defense Threat Reduction Agency under award HDTRA1-15-1-0019.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgments",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "A neural probabilistic language model",
"authors": [
{
"first": "Yoshua",
"middle": [],
"last": "Bengio",
"suffix": ""
},
{
"first": "R\u00e9jean",
"middle": [],
"last": "Ducharme",
"suffix": ""
},
{
"first": "Pascal",
"middle": [],
"last": "Vincent",
"suffix": ""
},
{
"first": "Christian",
"middle": [],
"last": "Janvin",
"suffix": ""
}
],
"year": 2003,
"venue": "The Journal of Machine Learning Research",
"volume": "3",
"issue": "",
"pages": "1137--1155",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yoshua Bengio, R\u00e9jean Ducharme, Pascal Vincent, and Christian Janvin. 2003. A neural probabilistic language model. The Journal of Machine Learning Research, 3:1137-1155.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Representation learning: A review and new perspectives",
"authors": [
{
"first": "Yoshua",
"middle": [],
"last": "Bengio",
"suffix": ""
},
{
"first": "Aaron",
"middle": [],
"last": "Courville",
"suffix": ""
},
{
"first": "Pascal",
"middle": [],
"last": "Vincent",
"suffix": ""
}
],
"year": 2013,
"venue": "IEEE Transactions on Pattern Analysis and Machine Intelligence",
"volume": "35",
"issue": "8",
"pages": "1798--1828",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yoshua Bengio, Aaron Courville, and Pascal Vincent. 2013. Representation learning: A review and new per- spectives. IEEE Transactions on Pattern Analysis and Machine Intelligence, 35(8):1798-1828.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Knowledgepowered deep learning for word embedding",
"authors": [
{
"first": "Jiang",
"middle": [],
"last": "Bian",
"suffix": ""
},
{
"first": "Bin",
"middle": [],
"last": "Gao",
"suffix": ""
},
{
"first": "Tie-Yan",
"middle": [],
"last": "Liu",
"suffix": ""
}
],
"year": 2014,
"venue": "Machine Learning and Knowledge Discovery in Databases",
"volume": "",
"issue": "",
"pages": "132--148",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jiang Bian, Bin Gao, and Tie-Yan Liu. 2014. Knowledge- powered deep learning for word embedding. In Machine Learning and Knowledge Discovery in Databases, pages 132-148. Springer.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Compositional morphology for word representations and language modelling",
"authors": [
{
"first": "A",
"middle": [],
"last": "Jan",
"suffix": ""
},
{
"first": "Phil",
"middle": [],
"last": "Botha",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Blunsom",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of the International Conference on Machine Learning (ICML)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jan A Botha and Phil Blunsom. 2014. Compositional mor- phology for word representations and language mod- elling. In Proceedings of the International Conference on Machine Learning (ICML).",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Classbased n-gram models of natural language",
"authors": [
{
"first": "",
"middle": [],
"last": "Peter F Brown",
"suffix": ""
},
{
"first": "V",
"middle": [],
"last": "Peter",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Desouza",
"suffix": ""
},
{
"first": "L",
"middle": [],
"last": "Robert",
"suffix": ""
},
{
"first": "Vincent J Della",
"middle": [],
"last": "Mercer",
"suffix": ""
},
{
"first": "Jenifer C",
"middle": [],
"last": "Pietra",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Lai",
"suffix": ""
}
],
"year": 1992,
"venue": "Computational linguistics",
"volume": "18",
"issue": "4",
"pages": "467--479",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Peter F Brown, Peter V Desouza, Robert L Mercer, Vin- cent J Della Pietra, and Jenifer C Lai. 1992. Class- based n-gram models of natural language. Computa- tional linguistics, 18(4):467-479.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "A fast and accurate dependency parser using neural networks",
"authors": [
{
"first": "Danqi",
"middle": [],
"last": "Chen",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Christopher",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Manning",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of Empirical Methods for Natural Language Processing (EMNLP)",
"volume": "",
"issue": "",
"pages": "740--750",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Danqi Chen and Christopher D Manning. 2014. A fast and accurate dependency parser using neural networks. In Proceedings of Empirical Methods for Natural Lan- guage Processing (EMNLP), pages 740-750.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Learning phrase representations using rnn encoder-decoder for statistical machine translation",
"authors": [
{
"first": "Kyunghyun",
"middle": [],
"last": "Cho",
"suffix": ""
},
{
"first": "Bart",
"middle": [],
"last": "Van Merri\u00ebnboer",
"suffix": ""
},
{
"first": "Caglar",
"middle": [],
"last": "Gulcehre",
"suffix": ""
},
{
"first": "Dzmitry",
"middle": [],
"last": "Bahdanau",
"suffix": ""
},
{
"first": "Fethi",
"middle": [],
"last": "Bougares",
"suffix": ""
},
{
"first": "Holger",
"middle": [],
"last": "Schwenk",
"suffix": ""
},
{
"first": "Yoshua",
"middle": [],
"last": "Bengio",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of Empirical Methods for Natural Language Processing",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kyunghyun Cho, Bart Van Merri\u00ebnboer, Caglar Gulcehre, Dzmitry Bahdanau, Fethi Bougares, Holger Schwenk, and Yoshua Bengio. 2014. Learning phrase representa- tions using rnn encoder-decoder for statistical machine translation. In Proceedings of Empirical Methods for Natural Language Processing (EMNLP).",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "A recurrent latent variable model for sequential data",
"authors": [
{
"first": "Junyoung",
"middle": [],
"last": "Chung",
"suffix": ""
},
{
"first": "Kyle",
"middle": [],
"last": "Kastner",
"suffix": ""
},
{
"first": "Laurent",
"middle": [],
"last": "Dinh",
"suffix": ""
},
{
"first": "Kratarth",
"middle": [],
"last": "Goel",
"suffix": ""
},
{
"first": "Aaron",
"middle": [],
"last": "Courville",
"suffix": ""
},
{
"first": "Yoshua",
"middle": [],
"last": "Bengio",
"suffix": ""
}
],
"year": 2015,
"venue": "Neural Information Processing Systems (NIPS)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Junyoung Chung, Kyle Kastner, Laurent Dinh, Kratarth Goel, Aaron Courville, and Yoshua Bengio. 2015. A recurrent latent variable model for sequential data. In Neural Information Processing Systems (NIPS), Montr\u00e9al.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "A unified architecture for natural language processing: Deep neural networks with multitask learning",
"authors": [
{
"first": "Ronan",
"middle": [],
"last": "Collobert",
"suffix": ""
},
{
"first": "Jason",
"middle": [],
"last": "Weston",
"suffix": ""
}
],
"year": 2008,
"venue": "Proceedings of the International Conference on Machine Learning (ICML)",
"volume": "",
"issue": "",
"pages": "160--167",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ronan Collobert and Jason Weston. 2008. A unified architecture for natural language processing: Deep neu- ral networks with multitask learning. In Proceedings of the International Conference on Machine Learning (ICML), pages 160-167.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Morphological word-embeddings",
"authors": [
{
"first": "Ryan",
"middle": [],
"last": "Cotterell",
"suffix": ""
},
{
"first": "Hinrich",
"middle": [],
"last": "Sch\u00fctze",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of the North American Chapter of the Association for Computational Linguistics (NAACL)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ryan Cotterell and Hinrich Sch\u00fctze. 2015. Morpho- logical word-embeddings. In Proceedings of the North American Chapter of the Association for Computational Linguistics (NAACL), Denver, CO, May.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Morphological smoothing and extrapolation of word embeddings",
"authors": [
{
"first": "Ryan",
"middle": [],
"last": "Cotterell",
"suffix": ""
},
{
"first": "Hinrich",
"middle": [],
"last": "Sch\u00fctze",
"suffix": ""
},
{
"first": "Jason",
"middle": [],
"last": "Eisner",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of the Association for Computational Linguistics (ACL)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ryan Cotterell, Hinrich Sch\u00fctze, and Jason Eisner. 2016. Morphological smoothing and extrapolation of word embeddings. In Proceedings of the Association for Computational Linguistics (ACL), Berlin, August.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Unsupervised discovery of morphemes",
"authors": [
{
"first": "Mathias",
"middle": [],
"last": "Creutz",
"suffix": ""
},
{
"first": "Krista",
"middle": [],
"last": "Lagus",
"suffix": ""
}
],
"year": 2002,
"venue": "Proceedings of the ACL-02 workshop on Morphological and phonological learning",
"volume": "6",
"issue": "",
"pages": "21--30",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mathias Creutz and Krista Lagus. 2002. Unsuper- vised discovery of morphemes. In Proceedings of the ACL-02 workshop on Morphological and phonologi- cal learning-Volume 6, pages 21-30. Association for Computational Linguistics.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Sequential monte carlo methods to train neural network models",
"authors": [
{
"first": "Mahesan",
"middle": [],
"last": "Jo\u00e3o Fg De Freitas",
"suffix": ""
},
{
"first": "Andrew",
"middle": [
"H"
],
"last": "Niranjan",
"suffix": ""
},
{
"first": "Arnaud",
"middle": [],
"last": "Gee",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Doucet",
"suffix": ""
}
],
"year": 2000,
"venue": "Neural computation",
"volume": "12",
"issue": "4",
"pages": "955--993",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jo\u00e3o FG de Freitas, Mahesan Niranjan, Andrew H. Gee, and Arnaud Doucet. 2000. Sequential monte carlo methods to train neural network models. Neural com- putation, 12(4):955-993.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Thematic proto-roles and argument selection. Language",
"authors": [
{
"first": "David",
"middle": [],
"last": "Dowty",
"suffix": ""
}
],
"year": 1991,
"venue": "",
"volume": "",
"issue": "",
"pages": "547--619",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "David Dowty. 1991. Thematic proto-roles and argument selection. Language, pages 547-619.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Retrofitting word vectors to semantic lexicons",
"authors": [
{
"first": "Manaal",
"middle": [],
"last": "Faruqui",
"suffix": ""
},
{
"first": "Jesse",
"middle": [],
"last": "Dodge",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Sujay",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Jauhar",
"suffix": ""
},
{
"first": "Eduard",
"middle": [],
"last": "Dyer",
"suffix": ""
},
{
"first": "Noah A",
"middle": [],
"last": "Hovy",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Smith",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of the North American Chapter of the Association for Computational Linguistics (NAACL)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Manaal Faruqui, Jesse Dodge, Sujay K Jauhar, Chris Dyer, Eduard Hovy, and Noah A Smith. 2015. Retrofitting word vectors to semantic lexicons. In Proceedings of the North American Chapter of the Association for Computational Linguistics (NAACL), Denver, CO, May.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Problems with evaluation of word embeddings using word similarity tasks",
"authors": [
{
"first": "Manaal",
"middle": [],
"last": "Faruqui",
"suffix": ""
},
{
"first": "Yulia",
"middle": [],
"last": "Tsvetkov",
"suffix": ""
},
{
"first": "Pushpendre",
"middle": [],
"last": "Rastogi",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Dyer",
"suffix": ""
}
],
"year": 2016,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Manaal Faruqui, Yulia Tsvetkov, Pushpendre Rastogi, and Chris Dyer. 2016. Problems with evaluation of word embeddings using word similarity tasks. arxiv, 1605.02276.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Placing search in context: The concept revisited",
"authors": [
{
"first": "Lev",
"middle": [],
"last": "Finkelstein",
"suffix": ""
},
{
"first": "Evgeniy",
"middle": [],
"last": "Gabrilovich",
"suffix": ""
},
{
"first": "Yossi",
"middle": [],
"last": "Matias",
"suffix": ""
},
{
"first": "Ehud",
"middle": [],
"last": "Rivlin",
"suffix": ""
},
{
"first": "Zach",
"middle": [],
"last": "Solan",
"suffix": ""
},
{
"first": "Gadi",
"middle": [],
"last": "Wolfman",
"suffix": ""
},
{
"first": "Eytan",
"middle": [],
"last": "Ruppin",
"suffix": ""
}
],
"year": 2001,
"venue": "WWW",
"volume": "",
"issue": "",
"pages": "406--414",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Lev Finkelstein, Evgeniy Gabrilovich, Yossi Matias, Ehud Rivlin, Zach Solan, Gadi Wolfman, and Eytan Ruppin. 2001. Placing search in context: The concept revisited. In WWW, pages 406-414. ACM.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Distributed morphology and the pieces of inflection",
"authors": [
{
"first": "Morris",
"middle": [],
"last": "Halle",
"suffix": ""
},
{
"first": "Alec",
"middle": [],
"last": "Marantz",
"suffix": ""
}
],
"year": 1993,
"venue": "The view from building 20",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Morris Halle and Alec Marantz. 1993. Distributed mor- phology and the pieces of inflection. In Kenneth L. Hale and Samuel J. Keyser, editors, The view from building 20. MIT Press, Cambridge, MA.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "A vector space for distributional semantics for entailment",
"authors": [
{
"first": "James",
"middle": [],
"last": "Henderson",
"suffix": ""
},
{
"first": "Diana",
"middle": [
"Nicoleta"
],
"last": "Popa",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of the Association for Computational Linguistics (ACL)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "James Henderson and Diana Nicoleta Popa. 2016. A vector space for distributional semantics for entailment. In Proceedings of the Association for Computational Linguistics (ACL), Berlin, August.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "The structure of a semantic theory",
"authors": [
{
"first": "J",
"middle": [],
"last": "Jerrold",
"suffix": ""
},
{
"first": "Jerry",
"middle": [
"A"
],
"last": "Katz",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Fodor",
"suffix": ""
}
],
"year": 1963,
"venue": "Language",
"volume": "",
"issue": "",
"pages": "170--210",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jerrold J Katz and Jerry A Fodor. 1963. The structure of a semantic theory. Language, pages 170-210.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Character-aware neural language models",
"authors": [
{
"first": "Yoon",
"middle": [],
"last": "Kim",
"suffix": ""
},
{
"first": "Yacine",
"middle": [],
"last": "Jernite",
"suffix": ""
},
{
"first": "David",
"middle": [],
"last": "Sontag",
"suffix": ""
},
{
"first": "Alexander M",
"middle": [],
"last": "Rush",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of the National Conference on Artificial Intelligence (AAAI)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yoon Kim, Yacine Jernite, David Sontag, and Alexan- der M Rush. 2016. Character-aware neural language models. In Proceedings of the National Conference on Artificial Intelligence (AAAI).",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Autoencoding variational bayes",
"authors": [
{
"first": "P",
"middle": [],
"last": "Diederik",
"suffix": ""
},
{
"first": "Max",
"middle": [],
"last": "Kingma",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Welling",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of the International Conference on Learning Representations (ICLR",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Diederik P Kingma and Max Welling. 2014. Auto- encoding variational bayes. In Proceedings of the In- ternational Conference on Learning Representations (ICLR).",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Deriving boolean structures from distributional vectors",
"authors": [
{
"first": "German",
"middle": [],
"last": "Kruszewski",
"suffix": ""
},
{
"first": "Denis",
"middle": [],
"last": "Paperno",
"suffix": ""
},
{
"first": "Marco",
"middle": [],
"last": "Baroni",
"suffix": ""
}
],
"year": 2015,
"venue": "Transactions of the Association for Computational Linguistics",
"volume": "3",
"issue": "",
"pages": "375--388",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "German Kruszewski, Denis Paperno, and Marco Baroni. 2015. Deriving boolean structures from distributional vectors. Transactions of the Association for Computa- tional Linguistics, 3:375-388.",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "Finding function in form: Compositional character models for open vocabulary word representation",
"authors": [
{
"first": "Wang",
"middle": [],
"last": "Ling",
"suffix": ""
},
{
"first": "Tiago",
"middle": [],
"last": "Lu\u00eds",
"suffix": ""
},
{
"first": "Lu\u00eds",
"middle": [],
"last": "Marujo",
"suffix": ""
},
{
"first": "Ram\u00f3n",
"middle": [],
"last": "Fernandez Astudillo",
"suffix": ""
},
{
"first": "Silvio",
"middle": [],
"last": "Amir",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Dyer",
"suffix": ""
},
{
"first": "Alan",
"middle": [
"W"
],
"last": "Black",
"suffix": ""
},
{
"first": "Isabel",
"middle": [],
"last": "Trancoso",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of Empirical Methods for Natural Language Processing",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Wang Ling, Tiago Lu\u00eds, Lu\u00eds Marujo, Ram\u00f3n Fernandez Astudillo, Silvio Amir, Chris Dyer, Alan W Black, and Isabel Trancoso. 2015. Finding function in form: Com- positional character models for open vocabulary word representation. In Proceedings of Empirical Methods for Natural Language Processing (EMNLP), Lisbon, September.",
"links": null
},
"BIBREF25": {
"ref_id": "b25",
"title": "Better word representations with recursive neural networks for morphology",
"authors": [
{
"first": "Minh-Thang",
"middle": [],
"last": "Luong",
"suffix": ""
},
{
"first": "Richard",
"middle": [],
"last": "Socher",
"suffix": ""
},
{
"first": "Christopher D",
"middle": [],
"last": "Manning",
"suffix": ""
}
],
"year": 2013,
"venue": "Proceedings of the Conference on Computational Natural Language Learning (CoNLL)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Minh-Thang Luong, Richard Socher, and Christopher D Manning. 2013. Better word representations with recursive neural networks for morphology. In Pro- ceedings of the Conference on Computational Natural Language Learning (CoNLL).",
"links": null
},
"BIBREF26": {
"ref_id": "b26",
"title": "Neural variational inference for text processing",
"authors": [
{
"first": "Yishu",
"middle": [],
"last": "Miao",
"suffix": ""
},
{
"first": "Lei",
"middle": [],
"last": "Yu",
"suffix": ""
},
{
"first": "Phil",
"middle": [],
"last": "Blunsom",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of the International Conference on Machine Learning (ICML)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yishu Miao, Lei Yu, and Phil Blunsom. 2016. Neural vari- ational inference for text processing. In Proceedings of the International Conference on Machine Learning (ICML).",
"links": null
},
"BIBREF27": {
"ref_id": "b27",
"title": "Recurrent neural network based language model",
"authors": [
{
"first": "Tomas",
"middle": [],
"last": "Mikolov",
"suffix": ""
},
{
"first": "Martin",
"middle": [],
"last": "Karafi\u00e1t",
"suffix": ""
},
{
"first": "Lukas",
"middle": [],
"last": "Burget",
"suffix": ""
}
],
"year": 2010,
"venue": "INTERSPEECH",
"volume": "",
"issue": "",
"pages": "1045--1048",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tomas Mikolov, Martin Karafi\u00e1t, Lukas Burget, Jan Cer- nock\u1ef3, and Sanjeev Khudanpur. 2010. Recurrent neu- ral network based language model. In INTERSPEECH, pages 1045-1048.",
"links": null
},
"BIBREF28": {
"ref_id": "b28",
"title": "Distributed representations of words and phrases and their compositionality",
"authors": [
{
"first": "Tomas",
"middle": [],
"last": "Mikolov",
"suffix": ""
},
{
"first": "Ilya",
"middle": [],
"last": "Sutskever",
"suffix": ""
},
{
"first": "Kai",
"middle": [],
"last": "Chen",
"suffix": ""
},
{
"first": "Greg",
"middle": [
"S"
],
"last": "Corrado",
"suffix": ""
},
{
"first": "Jeff",
"middle": [],
"last": "Dean",
"suffix": ""
}
],
"year": 2013,
"venue": "Advances in Neural Information Processing Systems",
"volume": "",
"issue": "",
"pages": "3111--3119",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg S Cor- rado, and Jeff Dean. 2013. Distributed representations of words and phrases and their compositionality. In Advances in Neural Information Processing Systems, pages 3111-3119.",
"links": null
},
"BIBREF29": {
"ref_id": "b29",
"title": "Neural variational inference and learning in belief networks",
"authors": [
{
"first": "Andriy",
"middle": [],
"last": "Mnih",
"suffix": ""
},
{
"first": "Karol",
"middle": [],
"last": "Gregor",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of the International Conference on Machine Learning (ICML)",
"volume": "",
"issue": "",
"pages": "1791--1799",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Andriy Mnih and Karol Gregor. 2014. Neural varia- tional inference and learning in belief networks. In Proceedings of the International Conference on Ma- chine Learning (ICML), pages 1791-1799.",
"links": null
},
"BIBREF30": {
"ref_id": "b30",
"title": "Three new graphical models for statistical language modelling",
"authors": [
{
"first": "Andriy",
"middle": [],
"last": "Mnih",
"suffix": ""
},
{
"first": "Geoffrey",
"middle": [],
"last": "Hinton",
"suffix": ""
}
],
"year": 2007,
"venue": "Proceedings of the International Conference on Machine Learning (ICML)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Andriy Mnih and Geoffrey Hinton. 2007. Three new graphical models for statistical language modelling. In Proceedings of the International Conference on Ma- chine Learning (ICML).",
"links": null
},
"BIBREF31": {
"ref_id": "b31",
"title": "Black box variational inference",
"authors": [
{
"first": "Rajesh",
"middle": [],
"last": "Ranganath",
"suffix": ""
},
{
"first": "Sean",
"middle": [],
"last": "Gerrish",
"suffix": ""
},
{
"first": "David",
"middle": [],
"last": "Blei",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of the Seventeenth International Conference on Artificial Intelligence and Statistics",
"volume": "",
"issue": "",
"pages": "814--822",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rajesh Ranganath, Sean Gerrish, and David Blei. 2014. Black box variational inference. In Proceedings of the Seventeenth International Conference on Artificial Intelligence and Statistics, pages 814-822.",
"links": null
},
"BIBREF32": {
"ref_id": "b32",
"title": "Semantic proto-roles",
"authors": [
{
"first": "Drew",
"middle": [],
"last": "Reisinger",
"suffix": ""
},
{
"first": "Rachel",
"middle": [],
"last": "Rudinger",
"suffix": ""
},
{
"first": "Francis",
"middle": [],
"last": "Ferraro",
"suffix": ""
},
{
"first": "Craig",
"middle": [],
"last": "Harman",
"suffix": ""
},
{
"first": "Kyle",
"middle": [],
"last": "Rawlins",
"suffix": ""
},
{
"first": "Benjamin",
"middle": [],
"last": "Van Durme",
"suffix": ""
}
],
"year": 2015,
"venue": "Transactions of the Association for Computational Linguistics",
"volume": "3",
"issue": "",
"pages": "475--488",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Drew Reisinger, Rachel Rudinger, Francis Ferraro, Craig Harman, Kyle Rawlins, and Benjamin Van Durme. 2015. Semantic proto-roles. Transactions of the Asso- ciation for Computational Linguistics, 3:475-488.",
"links": null
},
"BIBREF33": {
"ref_id": "b33",
"title": "Learning character-level representations for part-of-speech tagging",
"authors": [
{
"first": "D",
"middle": [],
"last": "Cicero",
"suffix": ""
},
{
"first": "Bianca",
"middle": [],
"last": "Santos",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Zadrozny",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of the International Conference on Machine Learning (ICML)",
"volume": "",
"issue": "",
"pages": "1818--1826",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Cicero D. Santos and Bianca Zadrozny. 2014. Learning character-level representations for part-of-speech tag- ging. In Proceedings of the International Conference on Machine Learning (ICML), pages 1818-1826.",
"links": null
},
"BIBREF34": {
"ref_id": "b34",
"title": "LSTM neural networks for language modeling",
"authors": [
{
"first": "Martin",
"middle": [],
"last": "Sundermeyer",
"suffix": ""
},
{
"first": "Ralf",
"middle": [],
"last": "Schl\u00fcter",
"suffix": ""
},
{
"first": "Hermann",
"middle": [],
"last": "Ney",
"suffix": ""
}
],
"year": 2012,
"venue": "Proceedings of INTERSPEECH",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Martin Sundermeyer, Ralf Schl\u00fcter, and Hermann Ney. 2012. LSTM neural networks for language modeling. In Proceedings of INTERSPEECH.",
"links": null
},
"BIBREF35": {
"ref_id": "b35",
"title": "Lecture 6.5: Rmsprop",
"authors": [
{
"first": "Tijman",
"middle": [],
"last": "Tieleman",
"suffix": ""
},
{
"first": "Geoffrey",
"middle": [],
"last": "Hinton",
"suffix": ""
}
],
"year": 2012,
"venue": "Coursera Neural Networks for Machine Learning",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tijman Tieleman and Geoffrey Hinton. 2012. Lecture 6.5: Rmsprop. Technical report, Coursera Neural Networks for Machine Learning.",
"links": null
},
"BIBREF36": {
"ref_id": "b36",
"title": "Evaluation of word vector representations by subspace alignment",
"authors": [
{
"first": "Yulia",
"middle": [],
"last": "Tsvetkov",
"suffix": ""
},
{
"first": "Manaal",
"middle": [],
"last": "Faruqui",
"suffix": ""
},
{
"first": "Wang",
"middle": [],
"last": "Ling",
"suffix": ""
},
{
"first": "Guillaume",
"middle": [],
"last": "Lample",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Dyer",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of Empirical Methods for Natural Language Processing",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yulia Tsvetkov, Manaal Faruqui, Wang Ling, Guillaume Lample, and Chris Dyer. 2015. Evaluation of word vector representations by subspace alignment. In Pro- ceedings of Empirical Methods for Natural Language Processing (EMNLP), Lisbon, September. Bart van Merri\u00ebnboer, Dzmitry Bahdanau, Vincent Du- moulin, Dmitriy Serdyuk, David Warde-Farley, Jan Chorowski, and Yoshua Bengio. 2015. Blocks and fuel: Frameworks for deep learning. CoRR, abs/1506.00619.",
"links": null
},
"BIBREF37": {
"ref_id": "b37",
"title": "Word representations via gaussian embedding",
"authors": [
{
"first": "Luke",
"middle": [],
"last": "Vilnis",
"suffix": ""
},
{
"first": "Andrew",
"middle": [],
"last": "Mccallum",
"suffix": ""
}
],
"year": 2014,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Luke Vilnis and Andrew McCallum. 2014. Word representations via gaussian embedding. CoRR, abs/1412.6623.",
"links": null
},
"BIBREF38": {
"ref_id": "b38",
"title": "Graphical models, exponential families, and variational inference. Foundations and Trends in Machine Learning",
"authors": [
{
"first": "J",
"middle": [],
"last": "Martin",
"suffix": ""
},
{
"first": "Michael",
"middle": [
"I"
],
"last": "Wainwright",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Jordan",
"suffix": ""
}
],
"year": 2008,
"venue": "",
"volume": "1",
"issue": "",
"pages": "1--305",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Martin J. Wainwright and Michael I. Jordan. 2008. Graph- ical models, exponential families, and variational infer- ence. Foundations and Trends in Machine Learning, 1(1-2):1-305.",
"links": null
},
"BIBREF39": {
"ref_id": "b39",
"title": "Improving lexical embeddings with semantic knowledge",
"authors": [
{
"first": "Mo",
"middle": [],
"last": "Yu",
"suffix": ""
},
{
"first": "Mark",
"middle": [],
"last": "Dredze",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of the Association for Computational Linguistics (ACL)",
"volume": "",
"issue": "",
"pages": "545--550",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mo Yu and Mark Dredze. 2014. Improving lexical em- beddings with semantic knowledge. In Proceedings of the Association for Computational Linguistics (ACL), pages 545-550, Baltimore, MD.",
"links": null
},
"BIBREF40": {
"ref_id": "b40",
"title": "Recurrent neural network regularization",
"authors": [
{
"first": "Wojciech",
"middle": [],
"last": "Zaremba",
"suffix": ""
},
{
"first": "Ilya",
"middle": [],
"last": "Sutskever",
"suffix": ""
},
{
"first": "Oriol",
"middle": [],
"last": "Vinyals",
"suffix": ""
}
],
"year": 2014,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:1409.2329"
]
},
"num": null,
"urls": [],
"raw_text": "Wojciech Zaremba, Ilya Sutskever, and Oriol Vinyals. 2014. Recurrent neural network regularization. arXiv preprint arXiv:1409.2329.",
"links": null
},
"BIBREF41": {
"ref_id": "b41",
"title": "Human behavior and the principle of least effort",
"authors": [
{
"first": "George",
"middle": [],
"last": "Kingsley",
"suffix": ""
},
{
"first": "Zipf",
"middle": [],
"last": "",
"suffix": ""
}
],
"year": 1949,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "George Kingsley Zipf. 1949. Human behavior and the principle of least effort. Addison-Wesley.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"uris": null,
"text": "Model architecture, applied to the example sequence . . . plagued by sesquipedalianism . . . . Blue solid arrows indicate direct computation, red dashed arrows indicate probabilistic dependency. For simplicity, we present our models as recurrent neural networks rather than long short-term memories (LSTMs).",
"type_str": "figure",
"num": null
},
"FIGREF1": {
"uris": null,
"text": "Error rates by word frequency.",
"type_str": "figure",
"num": null
},
"TABREF0": {
"num": null,
"content": "<table><tr><td/><td/><td/><td colspan=\"2\">WORD2VEC SUMEMBED VAREMBED</td></tr><tr><td/><td>Wordsim353</td><td/><td/></tr><tr><td/><td colspan=\"2\">all words (353) in-vocab (348)</td><td>n/a 51.4</td><td>42.9 45.9</td><td>48.8 51.3</td></tr><tr><td/><td colspan=\"2\">rare words (rw)</td><td/></tr><tr><td/><td colspan=\"3\">all words (2034) n/a in-vocab (715) 33.6</td><td>23.0 37.3</td><td>24.0 44.1</td></tr><tr><td>parentheses.</td><td/><td/><td/></tr><tr><td/><td>all words</td><td colspan=\"2\">in vocab</td></tr><tr><td/><td>(4199)</td><td colspan=\"2\">(3997)</td></tr><tr><td>WORD2VEC SUMEMBED</td><td>n/a 32.8</td><td>34.8 33.5</td><td/></tr><tr><td>VAREMBED</td><td>33.6</td><td>34.7</td><td/></tr><tr><td>morphemes only</td><td/><td/><td/></tr><tr><td>SUMEMBED</td><td>24.7</td><td>25.1</td><td/></tr><tr><td>VAREMBED</td><td>30.2</td><td>31.0</td><td/></tr></table>",
"type_str": "table",
"text": "Word similarity evaluation results, as measured by Spearmann's \u03c1 \u00d7 100. WORD2VEC cannot be evaluated on all words, because embeddings are not available for out-of-vocabulary words. The total number of words in each dataset is indicated in",
"html": null
},
"TABREF1": {
"num": null,
"content": "<table/>",
"type_str": "table",
"text": "Alignment with lexical semantic features, as measured by QVEC. Higher scores are better, with a maximum possible score of 100.",
"html": null
},
"TABREF2": {
"num": null,
"content": "<table><tr><td/><td>.</td><td>Both</td></tr><tr><td>morphologically-informed</td><td>embeddings</td><td>are</td></tr><tr><td colspan=\"3\">significantly better to WORD2VEC (p &lt; .01,</td></tr><tr><td colspan=\"3\">two-tailed binomial test), but the difference between</td></tr><tr><td colspan=\"3\">SUMEMBED and VAREMBED is not significant</td></tr></table>",
"type_str": "table",
"text": "",
"html": null
},
"TABREF3": {
"num": null,
"content": "<table><tr><td/><td>0.35</td><td/></tr><tr><td/><td>0.30</td><td/><td>embedding</td></tr><tr><td>error rate</td><td>0.10 0.15 0.20 0.25</td><td/><td>VarEmbed SumEmbed Word2Vec</td></tr><tr><td/><td>0.05</td><td/></tr><tr><td/><td>0.00</td><td>0-100</td><td>100-1000 word frequency in NANT 1000-10000 10000-100000</td></tr></table>",
"type_str": "table",
"text": "Part-of-speech tagging accuracies",
"html": null
}
}
}
}