여기 Fasttext model 에서 fastText pretrained 모델을로드하려고했습니다 . wiki.simple.en을 사용 하고 있습니다
from gensim.models.keyedvectors import KeyedVectors
word_vectors = KeyedVectors.load_word2vec_format('wiki.simple.bin', binary=True)
그러나 다음과 같은 오류가 표시됩니다.
Traceback (most recent call last):
File "nltk_check.py", line 28, in <module>
word_vectors = KeyedVectors.load_word2vec_format('wiki.simple.bin', binary=True)
File "P:\major_project\venv\lib\sitepackages\gensim\models\keyedvectors.py",line 206, in load_word2vec_format
header = utils.to_unicode(fin.readline(), encoding=encoding)
File "P:\major_project\venv\lib\site-packages\gensim\utils.py", line 235, in any2unicode
return unicode(text, encoding, errors=errors)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xba in position 0: invalid start byte
질문 1 Gensim으로 빠른 텍스트 모델을 어떻게로드합니까?
질문 2 또한 모델을로드 한 후 두 단어 사이의 유사성을 찾고 싶습니다.
model.find_similarity('teacher', 'teaches')
# Something like this
Output : 0.99
어떻게해야합니까?
DeprecationWarning: Call to deprecated `load_fasttext_format` (use load_facebook_vectors
. 그래서 나는 사용하고 있습니다from gensim.models.fasttext import load_facebook_model