想要使用allennlp工具对句子单词词性进行标注,需要下载预训练的模型使用
predictor = Predictor.from_path("https://storage.googleapis.com/allennlp-public-models/bert-base-srl-2020.03.24.tar.gz")
但是总是下载不下来,出现该错误
ValueError: Connection error, and we cannot find the requested files in the cached path. Please try again or make sure your Internet connection is on.
手动点击该path的网址下载了bert-base-srl-2020.03.24.tar.gz这个文件,但是本地导入仍旧出现一样的报错,应该怎么解决呢?
相似问题