Views
No views yet
lmqg/bart-base-subjqa-restaurants-qglmqg.lmqg1from lmqg import TransformersQG
2
3# initialize model
4model = TransformersQG(language="en", model="lmqg/bart-base-subjqa-restaurants-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/bart-base-subjqa-restaurants-qg")
4output = pipe("<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 | 93.23 | restaurants | lmqg/qg_subjqa |
| Bleu_1 | 22.9 | restaurants | lmqg/qg_subjqa |
| Bleu_2 | 14.6 | restaurants | lmqg/qg_subjqa |
| Bleu_3 | 6.11 | restaurants | lmqg/qg_subjqa |
| Bleu_4 | 3.43 | restaurants | lmqg/qg_subjqa |
| METEOR | 21.35 | restaurants | lmqg/qg_subjqa |
| MoverScore | 62.67 | restaurants | lmqg/qg_subjqa |
| ROUGE_L | 24.26 | restaurants | 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",
}