我想用allennlp构建一个问答机器人。我已经找到了它的代码和一个英语模型-我想将该机器人与德语一起使用。我已经搜索过了,但是很遗憾,我只发现了this模型,该模型与allennlp不兼容。您是否知道任何兼容的德国elmo模型,或者有具有更多兼容模型的allennlp替代品吗?
这是我找到的代码:
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="Steve Jobs died in 2011. He was born in 1955. He has multiple children.",
question="When did Steve Jobs die?"
)
print(result['best_span_str'])
答案 0 :(得分:0)
经过更多研究,我发现 TensorFlow 提供了一个 multilingual sentence encoder,它也可用于问答。训练我自己的 Elmo 模型不是一种选择,因为它的计算成本太高。