模型:
valhalla/t5-base-qg-hl
这是用于回答感知问句生成任务的 t5-base 模型。答案范围在文本中用特殊的高亮标记符号标出。
您可以使用推理 API 与该模型进行互动,只需用<hl>标记符号将答案范围突出显示,并以</s>结束文本。例如
<hl>42<hl>是生命、宇宙和万物的答案。</s>
更多详情请参阅 this 存储库。
您需要克隆 repo 。
from pipelines import pipeline nlp = pipeline("question-generation", model="valhalla/t5-base-qg-hl") nlp("42 is the answer to life, universe and everything.") => [{'answer': '42', 'question': 'What is the answer to life, universe and everything?'}]