gensim - fasttext - 为什么 `load_facebook_vectors` 不起作用?
gensim - fasttext - Why `load_facebook_vectors` doesn't work?
我尝试从 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'
我不明白为什么会发生这些事情。
我只是改变了消息所说的内容,但它不起作用。
如果您对此有任何了解,请告诉我。
总是,谢谢你们的帮助。
你快完成了,你需要改变两件事:
- 首先是
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"))
我尝试从 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'
我不明白为什么会发生这些事情。 我只是改变了消息所说的内容,但它不起作用。 如果您对此有任何了解,请告诉我。
总是,谢谢你们的帮助。
你快完成了,你需要改变两件事:
- 首先是
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"))