模型:
lmqg/t5-small-squad-qag
这个模型是基于 t5-small 进行微调的,用于 lmqg 上的问答对生成任务(数据集名称:默认)。
from lmqg import TransformersQG
# initialize model
model = TransformersQG(language="en", model="lmqg/t5-small-squad-qag")
# model prediction
question_answer_pairs = model.generate_qa("William Turner was an English painter who specialised in watercolour landscapes")
from transformers import pipeline
pipe = pipeline("text2text-generation", "lmqg/t5-small-squad-qag")
output = pipe("generate question and answer: Beyonce further expanded her acting career, starring as blues singer Etta James in the 2008 musical biopic, Cadillac Records.")
| Score | Type | Dataset | |
|---|---|---|---|
| QAAlignedF1Score (BERTScore) | 92.76 | default | 12313321 |
| QAAlignedF1Score (MoverScore) | 64.59 | default | 12313321 |
| QAAlignedPrecision (BERTScore) | 92.87 | default | 12313321 |
| QAAlignedPrecision (MoverScore) | 65.3 | default | 12313321 |
| QAAlignedRecall (BERTScore) | 92.68 | default | 12313321 |
| QAAlignedRecall (MoverScore) | 63.99 | default | 12313321 |
在微调过程中使用了以下超参数:
详细配置信息可在 fine-tuning config file 中找到。
@inproceedings{ushio-etal-2022-generative,
title = "{G}enerative {L}anguage {M}odels for {P}aragraph-{L}evel {Q}uestion {G}eneration",
author = "Ushio, Asahi and
Alva-Manchego, Fernando and
Camacho-Collados, Jose",
booktitle = "Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing",
month = dec,
year = "2022",
address = "Abu Dhabi, U.A.E.",
publisher = "Association for Computational Linguistics",
}