Views
No views yet
lmqg/t5-large-subjqa-grocery-qglmqg.lmqg1from lmqg import TransformersQG
2
3# initialize model
4model = TransformersQG(language="en", model="lmqg/t5-large-subjqa-grocery-qg")
5
6# model prediction
7questions = model.generate_q(list_context="William Turner was an English painter who specialised in watercolour landscapes", list_answer="William Turner")
8transformers1from transformers import pipeline
2
3pipe = pipeline("text2text-generation", "lmqg/t5-large-subjqa-grocery-qg")
4output = pipe("generate question: <hl> Beyonce <hl> further expanded her acting career, starring as blues singer Etta James in the 2008 musical biopic, Cadillac Records.")
5| Score | Type | Dataset | |
|---|---|---|---|
| BERTScore | 91.39 | grocery | lmqg/qg_subjqa |
| Bleu_1 | 14.13 | grocery | lmqg/qg_subjqa |
| Bleu_2 | 7.78 | grocery | lmqg/qg_subjqa |
| Bleu_3 | 2.94 | grocery | lmqg/qg_subjqa |
| Bleu_4 | 1.13 | grocery | lmqg/qg_subjqa |
| METEOR | 20.64 | grocery | lmqg/qg_subjqa |
| MoverScore | 63.41 | grocery | lmqg/qg_subjqa |
| ROUGE_L | 17.4 | grocery | lmqg/qg_subjqa |
@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",
}