Allennlp ConfigurationError: key "matrix_attention" is required at location "model."
Allennlp ConfigurationError: key "matrix_attention" is required at location "model."
我是 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。我真的不知道现在该怎么办,所以我真的需要你的帮助。提前致谢!
问题已解决:好像我的代码已经过时了,所以我更新了它。首先,我需要安装以下依赖项:
!pip install allennlp
!pip install --pre allennlp-models
这是我的代码:
from allennlp.predictors.predictor import Predictor
import allennlp_models.rc
predictor = Predictor.from_path("https://storage.googleapis.com/allennlp-public-models/bidaf-elmo-model-2020.03.19.tar.gz")
result = predictor.predict(
passage="Apple was founded by Steve Jobs, Steve Wozniak, and Ronald Wayne in April 1976 to develop and sell Wozniak\'s Apple I personal computer, though Wayne sold his share back within 12 days. It was incorporated as Apple Computer, Inc., in January 1977, and sales of its computers, including the Apple II, grew quickly.",
question="Who founded Apple?"
)
result['best_span_str']
另外,如果有人感兴趣的话,我在 Google Colab 上使用了这段代码,尽管这在其他地方也应该可以正常工作。
我是 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。我真的不知道现在该怎么办,所以我真的需要你的帮助。提前致谢!
问题已解决:好像我的代码已经过时了,所以我更新了它。首先,我需要安装以下依赖项:
!pip install allennlp
!pip install --pre allennlp-models
这是我的代码:
from allennlp.predictors.predictor import Predictor
import allennlp_models.rc
predictor = Predictor.from_path("https://storage.googleapis.com/allennlp-public-models/bidaf-elmo-model-2020.03.19.tar.gz")
result = predictor.predict(
passage="Apple was founded by Steve Jobs, Steve Wozniak, and Ronald Wayne in April 1976 to develop and sell Wozniak\'s Apple I personal computer, though Wayne sold his share back within 12 days. It was incorporated as Apple Computer, Inc., in January 1977, and sales of its computers, including the Apple II, grew quickly.",
question="Who founded Apple?"
)
result['best_span_str']
另外,如果有人感兴趣的话,我在 Google Colab 上使用了这段代码,尽管这在其他地方也应该可以正常工作。