模型:
lmqg/t5-base-squad-qag
该模型是针对问答对生成任务在 lmqg/qag_squad 数据集(dataset_name: default)上通过 lmqg 进行微调的 t5-base 的版本。
from lmqg import TransformersQG
# initialize model
model = TransformersQG(language="en", model="lmqg/t5-base-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-base-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) | 93.34 | default | 12313321 | 
| QAAlignedF1Score (MoverScore) | 65.78 | default | 12313321 | 
| QAAlignedPrecision (BERTScore) | 93.18 | default | 12313321 | 
| QAAlignedPrecision (MoverScore) | 65.96 | default | 12313321 | 
| QAAlignedRecall (BERTScore) | 93.51 | default | 12313321 | 
| QAAlignedRecall (MoverScore) | 65.68 | 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",
}