https://github.com/asahi417/lm-question-generation
Multilingual/multidomain question generation datasets, models, and python library for question generation.
https://github.com/asahi417/lm-question-generation
bart nlp pytorch question-answering question-generation t5
Last synced: 7 months ago
JSON representation
Multilingual/multidomain question generation datasets, models, and python library for question generation.
- Host: GitHub
- URL: https://github.com/asahi417/lm-question-generation
- Owner: asahi417
- License: mit
- Created: 2021-07-03T07:36:22.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-20T14:00:54.000Z (about 1 year ago)
- Last Synced: 2025-03-30T04:08:20.495Z (7 months ago)
- Topics: bart, nlp, pytorch, question-answering, question-generation, t5
- Language: Python
- Homepage: https://www.autoqg.net
- Size: 86.4 MB
- Stars: 347
- Watchers: 2
- Forks: 36
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- StarryDivineSky - asahi417/lm-question-generation
README
[](https://github.com/asahi417/lmqg/blob/master/LICENSE)
[](https://badge.fury.io/py/lmqg)
[](https://pypi.python.org/pypi/lmqg/)
[](https://pypi.python.org/pypi/lmqg/)# Question and Answer Generation with Language Models
![]()
Figure 1: Three distinct QAG approaches.The `lmqg` is a python library for question and answer generation (QAG) with language models (LMs). Here, we consider
paragraph-level QAG, where user will provide a context (paragraph or document), and the model will generate a list of
question and answer pairs on the context. With `lmqg`, you can do following things:
- [***Generation in One Line of Code:***](https://github.com/asahi417/lm-question-generation#generate-question--answer) Generate questions and answers in *9* languages (en/fr/ja/ko/ru/it/es/de/zh).
- [***Model Training/Evaluation:***](https://github.com/asahi417/lm-question-generation#model-development) Train & evaluate your own QG/QAG models.
- [***QAG & QG Model Hosting:***](https://github.com/asahi417/lm-question-generation#rest-api-with-huggingface-inference-api) Host your QAG models on a web application or a restAPI server.
- [***AutoQG:***](https://github.com/asahi417/lm-question-generation/tree/master#autoqg) Online web service to generate questions and answers with our models.
***Update Nov 2023:*** *Chinese QAG* models are now availble on both of `lmqg` and [AutoQG](https://autoqg.net)! \
***Update May 2023:*** Two papers got accepted by ACL 2023 ([QAG at finding](https://arxiv.org/abs/2305.17002), [LMQG at system demonstration](https://arxiv.org/abs/2305.17416)). \
***Update Oct 2022:*** Our [QG paper](https://aclanthology.org/2022.emnlp-main.42/) got accepted by EMNLP main 2022.### A bit more about QAG models 📝
Our QAG models can be grouped into three types: **Pipeline**, **Multitask**,
and **End2end** (see Figure 1). The **Pipeline** consists of question generation (QG) and answer extraction (AE) models independently,
where AE will parse all the sentences in the context to extract answers, and QG will generate questions on the answers.
The **Multitask** follows same architecture as the **Pipeline**, but the QG and AE models are shared model fine-tuned jointly.
Finally, **End2end** model will generate a list of question and answer pairs in an end-to-end manner.
In practice, **Pipeline** and **Multitask** generate more question and answer pairs, while **End2end** generates less but a few times faster,
and the quality of the generated question and answer pairs depend on language.
All types are available in the *9* diverse languages (en/fr/ja/ko/ru/it/es/de/zh) via `lmqg`, and the models are all shared on HuggingFace (see the [model card](https://github.com/asahi417/lm-question-generation/blob/master/MODEL_CARD.md)).
To know more about QAG, please check [our ACL 2023 paper](https://arxiv.org/abs/2305.17002) that describes the QAG models and reports a complete performance comparison of each QAG models in every language.### Is QAG different from Question Generation (QG)? 🤔
![]()
Figure 2: An example of QAG (a) and QG (b).All the functionalities support question generation as well. Our QG model assumes user to specify an answer in addition to a context,
and the QG model will generate a question that is answerable by the answer given the context (see Figure 2 for a comparison of QAG and QG).
To know more about QG, please check [our EMNLP 2022 paper](https://aclanthology.org/2022.emnlp-main.42/) that describes the QG models more in detail.## Get Started 🚀
Let's install `lmqg` via pip first.
```shell
pip install lmqg
```Generate question & answer pairs in a few lines.
```python
from lmqg import TransformersQGmodel = TransformersQG(language="en")
context = "William Turner was an English painter who specialised in watercolour landscapes. He is often known " \
"as William Turner of Oxford or just Turner of Oxford to distinguish him from his contemporary, " \
"J. M. W. Turner. Many of Turner's paintings depicted the countryside around Oxford. One of his " \
"best known pictures is a view of the city of Oxford from Hinksey Hill."
qa = model.generate_qa(context)
print(qa)
[
('Who was an English painter who specialised in watercolour landscapes?', 'William Turner'),
('What is William Turner often known as?', 'William Turner of Oxford or just Turner of Oxford'),
("What did many of Turner's paintings depict?", 'the countryside around Oxford'),
("What is one of Turner's best known pictures?", 'a view of the city of Oxford from Hinksey Hill')
]
```In addition to English `en`, we support Italian `it`, Spanish `es`, Russian `ru`, Korean `ko`, Japanese `ja`, German `de`, French `fr`, and Chinese `zh`. You can switch the language by specifying the language id at loading model (eg. `TransformersQG(language="es")` for Spanish). For more detailed usage, please read next section.
## Generate Question & Answer
[](https://colab.research.google.com/drive/13izkdp2l7G2oeh_fwL7xJdR_67HMK_hQ?usp=sharing)The main functionality of `lmqg` is to generate question and answer pairs on a given context with a handy api.
The available models for each QAG class can be found at [model card](https://github.com/asahi417/lm-question-generation/blob/master/MODEL_CARD.md#qag).- ***QAG with End2end or Multitask Models:*** The end2end QAG models are fine-tuned to generate a list of QA pairs with a single inference,
so it is the fastest class among our QAG models. Meanwhile, multitask QAG models breakdown the QAG task into QG and AE, where they
parse each sentence to get the answer with AE, and generate question on each answer with QG. Multitask QAG potentially generate more QA pairs than end2end QAG, but
inference takes a few times more than end2end models. Both models can be used as following
```python
from pprint import pprint
from lmqg import TransformersQG# initialize model
model = TransformersQG('lmqg/t5-base-squad-qag') # or TransformersQG(model='lmqg/t5-base-squad-qg-ae')
# paragraph to generate pairs of question and answer
context = "William Turner was an English painter who specialised in watercolour landscapes. He is often known " \
"as William Turner of Oxford or just Turner of Oxford to distinguish him from his contemporary, " \
"J. M. W. Turner. Many of Turner's paintings depicted the countryside around Oxford. One of his " \
"best known pictures is a view of the city of Oxford from Hinksey Hill."
# model prediction
question_answer = model.generate_qa(context)
# the output is a list of tuple (question, answer)
pprint(question_answer)
[
('Who was an English painter who specialised in watercolour landscapes?', 'William Turner'),
('What is William Turner often known as?', 'William Turner of Oxford or just Turner of Oxford'),
("What did many of Turner's paintings depict?", 'the countryside around Oxford'),
("What is one of Turner's best known pictures?", 'a view of the city of Oxford from Hinksey Hill')
]
```- ***QAG with Pipeline Models:*** The pipeline QAG is similar to multitask QAG, but the QG and AE models are independently fine-tuned, unlike
multitask QAG that fine-tunes QG and AE jointly. Pipeline QAG can improve the performance in some cases, but it is as heavy as multitask QAG with
more storage consuming due to the two models loaded. The pipeline QAG can be used as following. The `model` and `model_ae` are the QG and AE models respectively.
```python
from pprint import pprint
from lmqg import TransformersQG# initialize model
model = TransformersQG(model='lmqg/t5-base-squad-qg', model_ae='lmqg/t5-base-squad-ae')
# paragraph to generate pairs of question and answer
context = "William Turner was an English painter who specialised in watercolour landscapes. He is often known " \
"as William Turner of Oxford or just Turner of Oxford to distinguish him from his contemporary, " \
"J. M. W. Turner. Many of Turner's paintings depicted the countryside around Oxford. One of his " \
"best known pictures is a view of the city of Oxford from Hinksey Hill."
# model prediction
question_answer = model.generate_qa(context)
# the output is a list of tuple (question, answer)
pprint(question_answer)
[
('Who was an English painter who specialised in watercolour landscapes?', 'William Turner'),
('What is another name for William Turner?', 'William Turner of Oxford'),
("What did many of William Turner's paintings depict around Oxford?", 'the countryside'),
('From what hill is a view of the city of Oxford taken?', 'Hinksey Hill.')
]
```- ***QG only:*** The QG model can be used as following. The `model` is the QG model. See the [QG-Bench](https://github.com/asahi417/lm-question-generation/blob/master/QG_BENCH.md),
a multilingual QG benchmark, for the list of available QG models.
```python
from pprint import pprint
from lmqg import TransformersQG# initialize model
model = TransformersQG(model='lmqg/t5-base-squad-qg')# a list of paragraph
context = [
"William Turner was an English painter who specialised in watercolour landscapes",
"William Turner was an English painter who specialised in watercolour landscapes"
]
# a list of answer (same size as the context)
answer = [
"William Turner",
"English"
]
# model prediction
question = model.generate_q(list_context=context, list_answer=answer)
pprint(question)
[
'Who was an English painter who specialised in watercolour landscapes?',
'What nationality was William Turner?'
]
```- ***AE only:*** The QG model can be used as following. The `model` is the QG model.
```python
from pprint import pprint
from lmqg import TransformersQG# initialize model
model = TransformersQG(model='lmqg/t5-base-squad-ae')
# model prediction
answer = model.generate_a("William Turner was an English painter who specialised in watercolour landscapes")
pprint(answer)
['William Turner']
```## AutoQG
![]()
***AutoQG ([https://autoqg.net](https://autoqg.net/))*** is a free web application hosting our QAG models.
## Model Development
The `lmqg` also provides a command line interface to fine-tune and evaluate QG, AE, and QAG models.### Model Training
![]()
To fine-tune QG (or AE, QAG) model, we employ a two-stage hyper-parameter optimization, described as above diagram.
Following command is to run the fine-tuning with parameter optimization.
```shell
lmqg-train-search -c "tmp_ckpt" -d "lmqg/qg_squad" -m "t5-small" -b 64 --epoch-partial 5 -e 15 --language "en" --n-max-config 1 \
-g 2 4 --lr 1e-04 5e-04 1e-03 --label-smoothing 0 0.15
```
Check `lmqg-train-search -h` to display all the options.Fine-tuning models in python follows below.
```python
from lmqg import GridSearcher
trainer = GridSearcher(
checkpoint_dir='tmp_ckpt',
dataset_path='lmqg/qg_squad',
model='t5-small',
epoch=15,
epoch_partial=5,
batch=64,
n_max_config=5,
gradient_accumulation_steps=[2, 4],
lr=[1e-04, 5e-04, 1e-03],
label_smoothing=[0, 0.15]
)
trainer.run()
```### Model Evaluation
The evaluation tool reports `BLEU4`, `ROUGE-L`, `METEOR`, `BERTScore`, and `MoverScore` following [QG-Bench](https://github.com/asahi417/lm-question-generation/blob/master/QG_BENCH.md).
From command line, run following command
```shell
lmqg-eval -m "lmqg/t5-large-squad-qg" -e "./eval_metrics" -d "lmqg/qg_squad" -l "en"
```
where `-m` is a model alias on huggingface or path to local checkpoint, `-e` is the directly to export the metric file, `-d` is the dataset to evaluate, and `-l` is the language of the test set.
Instead of running model prediction, you can provide a prediction file instead to avoid computing it each time.
```shell
lmqg-eval --hyp-test '{your prediction file}' -e "./eval_metrics" -d "lmqg/qg_squad" -l "en"
```
The prediction file should be a text file of model generation in each line in the order of `test` split in the target dataset
([sample](https://huggingface.co/lmqg/t5-large-squad/raw/main/eval/samples.validation.hyp.paragraph_sentence.question.lmqg_qg_squad.default.txt)).
Check `lmqg-eval -h` to display all the options.## Rest API with huggingface inference API
Finally, `lmqg` provides a rest API which hosts the model inference through huggingface inference API. You need huggingface API token to run your own API and install dependencies as below.
```shell
pip install lmqg[api]
```
Swagger UI is available at [`http://127.0.0.1:8088/docs`](http://127.0.0.1:8088/docs), when you run the app locally (replace the address by your server address).### Build
- Build/Run Local (command line):
```shell
export API_TOKEN={Your Huggingface API Token}
uvicorn app:app --host 0.0.0.0 --port 8088
```- Build/Run Local (docker):
```shell
docker build -t lmqg/app:latest . --build-arg api_token={Your Huggingface API Token}
docker run -p 8080:8080 lmqg/app:latest
```- Run API with loading model locally (instead of HuggingFace):
```shell
uvicorn app_local:app --host 0.0.0.0 --port 8088
```### API Description
You must pass the huggingface api token via the environmental variable `API_TOKEN`.
The main endpoint is `question_generation`, which has following parameters,| Parameter | Description |
| ---------------- | ----------------------------------------------------------------------------------- |
| **input_text** | input text, a paragraph or a sentence to generate question |
| **language** | language |
| **qg_model** | question generation model |
| **answer_model** | answer extraction model |and return a list of dictionaries with `question` and `answer`.
```shell
{
"qa": [
{"question": "Who founded Nintendo Karuta?", "answer": "Fusajiro Yamauchi"},
{"question": "When did Nintendo distribute its first video game console, the Color TV-Game?", "answer": "1977"}
]
}
```## Citation
Please cite following paper if you use any resource and see the code to reproduce the model if needed.- [***Generative Language Models for Paragraph-Level Question Generation, EMNLP 2022 Main***](https://aclanthology.org/2022.emnlp-main.42/): The QG models ([code to reproduce experiments](https://github.com/asahi417/lm-question-generation/tree/master/misc/2022_emnlp_qg)).
```
@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",
}
```- [***An Empirical Comparison of LM-based Question and Answer Generation Methods, ACL 2023, Finding***](https://arxiv.org/abs/2305.17002): The QAG models ([code to reproduce experiments](https://github.com/asahi417/lm-question-generation/tree/master/misc/2023_acl_qag)).
```
@inproceedings{ushio-etal-2023-an-empirical,
title = "An Empirical Comparison of LM-based Question and Answer Generation Methods",
author = "Ushio, Asahi and
Alva-Manchego, Fernando and
Camacho-Collados, Jose",
booktitle = "Proceedings of the 61th Annual Meeting of the Association for Computational Linguistics: Findings",
month = Jul,
year = "2023",
address = "Toronto, Canada",
publisher = "Association for Computational Linguistics",
}
```- [***A Practical Toolkit for Multilingual Question and Answer Generation, ACL 2023, System Demonstration***](https://arxiv.org/abs/2305.17416): The library and demo ([code to reproduce experiments](https://github.com/asahi417/lm-question-generation/tree/master/misc/2023_acl_qag)).
```
@inproceedings{ushio-etal-2023-a-practical-toolkit,
title = "A Practical Toolkit for Multilingual Question and Answer Generation",
author = "Ushio, Asahi and
Alva-Manchego, Fernando and
Camacho-Collados, Jose",
booktitle = "Proceedings of the 61th Annual Meeting of the Association for Computational Linguistics: System Demonstrations",
month = Jul,
year = "2023",
address = "Toronto, Canada",
publisher = "Association for Computational Linguistics",
}
```