Spacy 模型下载问题

Spacy model download issue

我正在使用 Spacy 1.3

不过,我现在好像无法下载模型。

20/29 : RUN python -m spacy.en.download all
The command '/bin/sh -c python -m spacy.en.download all' returned a non-zero code: 1

下载服务器似乎有问题 – 这将尽快修复。 (顺便说一句,我是 spaCy 的维护者之一。对于给您带来的不便,我们深表歉意。)

所有模型也作为存档附加 to the v1.6 release – 因此在此期间,您始终可以从那里手动下载它们,解压缩存档并将包含的文件夹放在 spacy/data 中。

如果您不必使用 v1.3,我还建议您检查更新的版本并升级到 spaCy v1.7+。模型现在 hosted on GitHub, which makes the downloading process more transparent and doesn't rely on a separate download server. They're also wrapped as native Python packages, which lets you install them via pip, add them to your project's requirements.txt and even import them as a module at the top of your file. You can read more about this in the models documentation.

这使得管理模型依赖关系变得更加容易,尤其是在有更多模型可用时。如果您使用的是 spaCy 1.8+,您将能够使用英语、德语、法语和西班牙语模型。如果您已经训练了自己的模型并决定升级,请注意您将必须使用新版本的输入重新训练您的模型。在 spaCy