英文

lm_qg/mt5-small-itquad-ae的模型卡片

该模型是 google/mt5-small 的细调版本,通过 lmqg lmqg/qg_itquad (dataset_name: default)进行答案提取。

概述

用法

from lmqg import TransformersQG

# initialize model
model = TransformersQG(language="it", model="lmqg/mt5-small-itquad-ae")

# model prediction
answers = model.generate_a("Dopo il 1971 , l' OPEC ha tardato ad adeguare i prezzi per riflettere tale deprezzamento.")
  • 使用transformers
from transformers import pipeline

pipe = pipeline("text2text-generation", "lmqg/mt5-small-itquad-ae")
output = pipe("<hl> Il 6 ottobre 1973 , la Siria e l' Egitto, con il sostegno di altre nazioni arabe, lanciarono un attacco a sorpresa su Israele, su Yom Kippur. <hl> Questo rinnovo delle ostilità nel conflitto arabo-israeliano ha liberato la pressione economica sottostante sui prezzi del petrolio. All' epoca, l' Iran era il secondo esportatore mondiale di petrolio e un vicino alleato degli Stati Uniti. Settimane più tardi, lo scià d' Iran ha detto in un' intervista: Naturalmente[il prezzo del petrolio] sta andando a salire Certamente! E come! Avete[Paesi occidentali] aumentato il prezzo del grano che ci vendete del 300 per cento, e lo stesso per zucchero e cemento.")

评估

Score Type Dataset
AnswerExactMatch 55.07 default 12313321
AnswerF1Score 70.41 default 12313321
BERTScore 90.01 default 12313321
Bleu_1 38.56 default 12313321
Bleu_2 32.74 default 12313321
Bleu_3 28.58 default 12313321
Bleu_4 24.72 default 12313321
METEOR 40.39 default 12313321
MoverScore 80.28 default 12313321
ROUGE_L 43.93 default 12313321

训练超参数

在微调期间使用了以下超参数:

  • 数据集路径:lm_qg/qg_itquad
  • 数据集名称:默认
  • 输入类型:['paragraph_sentence']
  • 输出类型:['answer']
  • 前缀类型:无
  • 模型:google/mt5-small
  • 最大长度:512
  • 最大输出长度:32
  • 轮数:17
  • 批次:32
  • 学习率:0.0005
  • fp16:False
  • 随机种子:1
  • 梯度累积步数:2
  • 标签平滑:0.15

完整的配置可在 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",
}