Gensim加载FastText模型 Posted on 2018-12-18 | Edited on 2018-12-30 | In Python Package Usage 123456from gensim.models.wrappers import FastText# for *.binmodel = FastText.load_fasttext_format('sample.bin')# for *.vecmodel = FastText.load_word2vec_format('sample.vec') 参考-How do I load FastText pretrained model with Gensim?