CoolFace
Modelpublic

lmqg/mt5-small-itquad-qag

sourceHugging Facecc-by-4.0updated 4y agoView on Hugging Face
0likes24downloads
Model Card

license: cc-by-4.0 metrics:

  • —bleu4
  • —meteor
  • —rouge-l
  • —bertscore
  • —moverscore language: it datasets:
  • —lmqg/qagitquad pipelinetag: text2text-generation tags:
  • —questions and answers generation widget:
  • —text: "Dopo il 1971 , l' OPEC ha tardato ad adeguare i prezzi per riflettere tale deprezzamento." example_title: "Questions & Answers Generation Example 1" model-index:
  • —name: lmqg/mt5-small-itquad-qag results:
  • —task: name: Text2text Generation type: text2text-generation dataset: name: lmqg/qag_itquad type: default args: default metrics:
  • —name: QAAlignedF1Score-BERTScore (Question & Answer Generation) type: qaalignedf1scorebertscorequestionanswer_generation value: 79.41
  • —name: QAAlignedRecall-BERTScore (Question & Answer Generation) type: qaalignedrecallbertscorequestionanswergeneration value: 77.79
  • —name: QAAlignedPrecision-BERTScore (Question & Answer Generation) type: qaalignedprecisionbertscorequestionanswergeneration value: 81.16
  • —name: QAAlignedF1Score-MoverScore (Question & Answer Generation) type: qaalignedf1scoremoverscorequestionanswer_generation value: 54.15
  • —name: QAAlignedRecall-MoverScore (Question & Answer Generation) type: qaalignedrecallmoverscorequestionanswergeneration value: 52.94
  • —name: QAAlignedPrecision-MoverScore (Question & Answer Generation) type: qaalignedprecisionmoverscorequestionanswergeneration value: 55.49 ---

Model Card of lmqg/mt5-small-itquad-qag

This model is fine-tuned version of google/mt5-small for question & answer pair generation task on the lmqg/qag_itquad (dataset_name: default) via `lmqg`.

Overview

Usage

python
from lmqg import TransformersQG

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

# model prediction
question_answer_pairs = model.generate_qa("Dopo il 1971 , l' OPEC ha tardato ad adeguare i prezzi per riflettere tale deprezzamento.")
  • —With transformers
python
from transformers import pipeline

pipe = pipeline("text2text-generation", "lmqg/mt5-small-itquad-qag")
output = pipe("Dopo il 1971 , l' OPEC ha tardato ad adeguare i prezzi per riflettere tale deprezzamento.")

Evaluation

ScoreTypeDataset
QAAlignedF1Score (BERTScore)79.41defaultlmqg/qag_itquad
QAAlignedF1Score (MoverScore)54.15defaultlmqg/qag_itquad
QAAlignedPrecision (BERTScore)81.16defaultlmqg/qag_itquad
QAAlignedPrecision (MoverScore)55.49defaultlmqg/qag_itquad
QAAlignedRecall (BERTScore)77.79defaultlmqg/qag_itquad
QAAlignedRecall (MoverScore)52.94defaultlmqg/qag_itquad

Training hyperparameters

The following hyperparameters were used during fine-tuning:

  • —datasetpath: lmqg/qagitquad
  • —dataset_name: default
  • —input_types: ['paragraph']
  • —outputtypes: ['questionsanswers']
  • —prefix_types: None
  • —model: google/mt5-small
  • —max_length: 512
  • —maxlengthoutput: 256
  • —epoch: 17
  • —batch: 8
  • —lr: 0.001
  • —fp16: False
  • —random_seed: 1
  • —gradientaccumulationsteps: 8
  • —label_smoothing: 0.0

The full configuration can be found at fine-tuning config file.

Citation

@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",
}