-
I noticed that the library computes the similarity between vectors in a strange manner. The scores are not really cosine similarity but cross-products. @jwijffels , do you think it is intentional?
…
-
```
dataset = IterableWrapper(wiki)
model = Word2Vec(dataset, size=128, window=15, iter=50, sg=1, min_count=150)
```
TypeError: Word2Vec.__init__() got an unexpected keyword argument 'size'
-
Word models requested:
- [x] UK
- [x] Germany
- [x] France
- [x] Sweden
- [x] Netherlands
- [x] Finland
- [x] Ireland
- [x] Canada
- [ ] European Parliament
- [ ] Denmark -> check with Anne …
-
I'm getting errors when trying to load the model. Do you have any suggestions?
`model = Word2Vec.load('./models/complete.model')`
Traceback (most recent call last):
File "", line 1, in
Fi…
-
Construct word2vec model with tweets for groups of people (e.g. far right) and compare with models trained on the overall twitterverse (e.g. http://fredericgodin.com/papers/Named%20Entity%20Recognitio…
-
Hi
i am trying to run the mian.py but getting this error
FileNotFoundError: [Errno 2] No such file or directory: './data/google_chromium/word2vec.model'
Can you provide the word2vec.model file…
-
As stated in the paper the pre-trained models will be available from Oct 2017, but I could not find any of them in the repo. Can someone help me out it locating it.
-
**写在前面:** 感谢作者提供的文件。
琢磨了一上午,发现可以配合gensim进行微调,但是我最后一直保存不了模型。
不过我还是把这个方案贡献出来以供大家进行参考。
(ps:写的比较急,例子是从gensim文档里面抄来的,做了一些修改。我不是科班出身,不太能拿得准,但是有值我就默认正确了。欢迎讨论)
```Python
import gensim
from gensi…
-
Training any `word2vec()` model fails on Fedora 37 with the binary from the [`iucar/cran` COPR repository](https://copr.fedorainfracloud.org/coprs/iucar/cran/). I first [reported the problem there](ht…
-
Dear Kyubyong,
great work - thank you very much for proving these word vectors!
One question: Which model did you use to train your word vectors with word2vec? Skip-gram or cbow? Is this the standar…