我是 Allennlp 的新手,这是我第一次尝试它。我已经安装了所有必需的库!pip install allennlp !pip install --pre allennlp-models
,我的代码也应该没问题,但我仍然收到这条错误消息:ConfigurationError: key "matrix_attention" is required at location "model."
这是我的代码:
import sys
from allennlp.predictors.predictor import Predictor
import allennlp_models
predictor = Predictor.from_path(
"https://storage.googleapis.com/allennlp-public-models/bidaf-elmo-model-2018.11.30-charpad.tar.gz"
)
prediction = predictor.predict(
passage="Life expectancy in Asia is at 68 years", question="What is the life expectancy in Asia"
)
print(prediction["best_span_str"])
您知道如何解决此错误吗?我正在使用 macOS Catalina 和 Python 3.6。我现在真的不知道该怎么办,所以我真的需要你的帮助。提前致谢!