0

我正在尝试使用 fair nlp 框架,

https://github.com/flairNLP/flair

但出现错误

# load the NER tagger
tagger = SequenceTagger.load('ner')

在本地、远程和其他机器上试过。所有失败,因为它无法从 s3 .google colab 下载模型也给出了同样的错误。

都给出错误信息:

OSError: HEAD request failed for url https://s3.eu-central-1.amazonaws.com/alan-nlp/resources/models-v0.4/NER-conll03-english/en-ner-conll03-v0.4.pt with status code 301.

.

4

1 回答 1

0

我遇到了同样的问题,我不知道链接会发生什么,但我找到了另一个。

您可以 在 def _fetch_model(model_name) 行 971 上查看 fair master repo https://github.com/flairNLP/flair/blob/master/flair/models/sequence_tagger_model.py 。已经在使用另一个路径“https:// nlp.informatik.hu-berlin.de/resources/models”,因此它们更改为该路径而不是 alan-nlp。

所以你可以在这里找到你的模型https://nlp.informatik.hu-berlin.de/resources/models/ner/

于 2020-09-03T05:07:47.477 回答