模型:
lmqg/t5-large-squad-qag
该模型是在 t5-large 的基础上对问题和答案生成任务进行微调的版本,使用 lmqg 进行训练,数据集为 lmqg/qag_squad (数据集名称:default)。
from lmqg import TransformersQG # initialize model model = TransformersQG(language="en", model="lmqg/t5-large-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-large-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.45 | default | 12313321 |
QAAlignedF1Score (MoverScore) | 66.05 | default | 12313321 |
QAAlignedPrecision (BERTScore) | 93.34 | default | 12313321 |
QAAlignedPrecision (MoverScore) | 66.34 | default | 12313321 |
QAAlignedRecall (BERTScore) | 93.57 | default | 12313321 |
QAAlignedRecall (MoverScore) | 65.84 | 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", }