首页 > 解决方案 > gensim - fasttext - 为什么`load_facebook_vectors` 不起作用?

问题描述

我尝试从fastext-wiki word vectors加载预训练的 FastText 向量。

我的代码在下面,它运行良好。

from gensim.models import FastText
model = FastText.load_fasttext_format('./wiki.en/wiki.en.bin')

但是,警告信息有点烦人。

gensim_fasttext_pretrained_vector.py:13: DeprecationWarning: Call to deprecated `load_fasttext_format` (use load_facebook_vectors (to use pretrained embeddings)

消息说,load_fasttext_format将被弃用,所以使用会更好load_facebook_vectors

所以我决定更改代码。我更改的代码如下所示。

from gensim.models import FastText
model = FastText.load_facebook_vectors('./wiki.en/wiki.en.bin')

但是,错误发生了,错误信息是这样的。

Traceback (most recent call last):
  File "gensim_fasttext_pretrained_vector.py", line 13, in <module>
    model = FastText.load_facebook_vectors('./wiki.en/wiki.en.bin')
AttributeError: type object 'FastText' has no attribute 'load_facebook_vectors'

我不明白为什么会发生这些事情。我只是改变消息所说的内容,但它不起作用。如果您对此有所了解,请告诉我。

总是,谢谢你们的帮助。

标签: pythongensimfasttext

解决方案


你快到了,你需要改变两件事:

  • 首先,fasttext都是小写字母,不是Fasttext.
  • 其次,要使用load_facebook_vectors,您需要先创建一个datapath对象,然后再使用它。

所以,你应该这样做:

from gensim.models import fasttext
from gensim.test.utils import datapath

wv = fasttext.load_facebook_vectors(datapath("./wiki.en/wiki.en.bin"))

推荐阅读