Top "Fasttext" questions

fastText is a library for efficient learning of word representations and sentence classification.

Process finished with exit code -1073740791 (0xC0000409) pycharm error

I am trying to use fastText with PyCharm. Whenever I run below code: import fastText model=fastText.train_unsupervised("data_…

python pycharm fasttext
How to find similar words with FastText?

I am playing around with FastText, https://pypi.python.org/pypi/fasttext,which is quite similar to Word2Vec. Since …

python nlp word2vec fasttext
Fasttext for Python - module 'fasttext' has no attribute 'load_model'

Please forgive my newbness here, but fasttext is not working for me on python. I am using anaconda running python 3.6. …

python fasttext
How to vectorize whole text using fasttext?

To get vector of a word, I can use: model["word"] but if I want to get the vector of …

facebook nlp fasttext
Difference between Fasttext .vec and .bin file

I recently downloaded fasttext pretrained model for english. I got two files: wiki.en.vec wiki.en.bin I am …

python nlp deep-learning word2vec fasttext
FastText using pre-trained word vector for text classification

I am working on a text classification problem, that is, given some text, I need to assign to it certain …

nlp word2vec text-classification fasttext
Use of fasttext Pre-trained word vector as embedding in tensorflow script

Can I use fasttext word vector like the ones here: https://github.com/facebookresearch/fastText/blob/master/pretrained-vectors.md in …

python tensorflow word2vec fasttext
How does the Gensim Fasttext pre-trained model get vectors for out-of-vocabulary words?

I am using gensim to load pre-trained fasttext model. I downloaded the English wikipedia trained model from fasttext website. here …

python nlp gensim fasttext
fastText embeddings sentence vectors?

I wanted to understand the way fastText vectors for sentences are created. According to this issue 309, the vectors for sentences …

python fasttext