LexVec, a word embedding model written in Go that outperforms word2vec
1–10 of 45 posts
Re: LexVec, a word embedding model written in Go that outperforms word2vec
#2Re: LexVec, a word embedding model written in Go that outperforms word2vec
#3Re: LexVec, a word embedding model written in Go that outperforms word2vec
#4This fact is hard to publicize because somehow the luminaries of the field decided that they didn't care about these evaluations anymore, back when RW performance was around 0.4. I have had reviewers dismiss it as "incremental improvements" to improve Rare Words from 0.4 to 0.6 and to improve MEN-3000 to be as good as a high estimate of inter-annotator agreement.
It is possible to do much, much better than Google News skip-grams ("word2vec"), and one thing that helps get there is lexical knowledge of the kind that's in ConceptNet.
[1] https://blog.conceptnet.io/2016/05/25/conceptnet-numberbatch...
[2] https://blog.luminoso.com/2016/04/06/an-introduction-to-the-...
Re: LexVec, a word embedding model written in Go that outperforms word2vec
#5Re: LexVec, a word embedding model written in Go that outperforms word2vec
#6As pre-built word vectors go, Conceptnet Numberbatch [1], introduced less flippantly as the ConceptNet Vector Ensemble [2], already outperforms this on all the measures evaluated in its paper: Rare Words, MEN-3000, and WordSim-353. This fact is hard to publicize because somehow the luminaries of the field decided that they didn't care about these evaluations anymore, back when RW performance was around 0.4. I have ha…
Re: LexVec, a word embedding model written in Go that outperforms word2vec
#7Re: LexVec, a word embedding model written in Go that outperforms word2vec
#8Are there IP considerations? Word2vec is patented.
Re: LexVec, a word embedding model written in Go that outperforms word2vec
#9It feels weird how word embedding models have come to refer to both the underlying model, as well as the implementation. word2vec is the implementation of two models: the continuous bag-of-word and the skipgram models by Mikolov, while LexVec implements a version of the PPMI weighted count matrix as referenced in the README file. But the papers also discuss implementation details of LexVec that has no bearing on the…
https://papers.nips.cc/paper/5477-neural-word-embedding-as-i....
Re: LexVec, a word embedding model written in Go that outperforms word2vec
#10Has anyone done any work on handing words that have overloading meanings? Something like 'lead' has two really distinct uses. It's really multiple words that happened to be spelt the same.