Fasttext error while loading wiki pre-trained data
I am loading the model using gensim package this way:
from gensim.models import FastText
model = FastText.load_fasttext_format('wiki-news-300d-1M-subword.bin')
as stated here.
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe6 in position 57: unexpected end of data
The .bin file is downloaded from this source.
How to load the model correctly?
Category Data Science