异常:无法加载 model.bin

Exception: Cannot load model.bin

我在尝试 运行 模型时收到以下错误消息:

Exception: fastText: Cannot load model.bin due to C++ extension failed to allocate the memory

我使用的代码如下:

import wget
from fasttext import load_model

wget.download("https://dl.fbaipublicfiles.com/fasttext/supervised-models/amazon_review_polarity.bin", 'model.bin')

model = load_model("model.bin")

我已尝试遵循此答案:FastText - Cannot load model.bin due to C++ extension failed to allocate the memory 但可能我做错了什么,因为错误仍然存​​在。 知道如何解决吗?

按照以下步骤安装最新版本的 fasttext (0.9.2):

git clone https://github.com/facebookresearch/fastText.git
cd fastText
pip install .

然后尝试执行您的代码。应该可以。