Views
No views yet
research-backup/bart-base-squadshifts-vanilla-reddit-qglmqg.lmqg1from lmqg import TransformersQG
2
3# initialize model
4model = TransformersQG(language="en", model="research-backup/bart-base-squadshifts-vanilla-reddit-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", "research-backup/bart-base-squadshifts-vanilla-reddit-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 | 91.89 | lmqg/qg_squadshifts | |
| Bleu_1 | 25.35 | lmqg/qg_squadshifts | |
| Bleu_2 | 16.53 | lmqg/qg_squadshifts | |
| Bleu_3 | 10.97 | lmqg/qg_squadshifts | |
| Bleu_4 | 7.52 | lmqg/qg_squadshifts | |
| METEOR | 21.32 | lmqg/qg_squadshifts | |
| MoverScore | 61.44 | lmqg/qg_squadshifts | |
| ROUGE_L | 24.67 | lmqg/qg_squadshifts |
@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",
}