CoolFace
Modelpublic

consciousAI/question-generation-auto-t5-v1-base-s

sourceHugging Faceupdated 4y agoView on Hugging Face
3likes9downloads
Model Card

Auto Question Generation

The model is intended to be used for Auto Question Generation task i.e. no hint are required as input. The model is expected to produce one or possibly more than one question from the provided context.

Live Demo: Question Generation

Including this there are five models trained with different training sets, demo provide comparison to all in one go. However, you can reach individual projects at below links:

Auto Question Generation v2

Auto Question Generation v3

Auto/Hints based Question Generation v1

Auto/Hints based Question Generation v2

This model can be used as below:

from transformers import (
    AutoModelForSeq2SeqLM,
    AutoTokenizer
)

model_checkpoint = "consciousAI/question-generation-auto-t5-v1-base-s"

model = AutoModelForSeq2SeqLM.from_pretrained(model_checkpoint)
tokenizer = AutoTokenizer.from_pretrained(model_checkpoint)

## Input with prompt
context="question_context: <context>"
encodings = tokenizer.encode(context, return_tensors='pt', truncation=True, padding='max_length').to(device)

## You can play with many hyperparams to condition the output, look at demo
output = model.generate(encodings, 
                        #max_length=300, 
                        #min_length=20, 
                        #length_penalty=2.0, 
                        num_beams=4,
                        #early_stopping=True,
                        #do_sample=True,
                        #temperature=1.1
                       )

## Multiple questions are expected to be delimited by '?' You can write a small wrapper to elegantly format. Look at the demo.
questions = [tokenizer.decode(id, clean_up_tokenization_spaces=False, skip_special_tokens=False) for id in output]

Training and evaluation data

SQUAD split.

Training hyperparameters

The following hyperparameters were used during training:

  • —learning_rate: 0.0003
  • —trainbatchsize: 2
  • —evalbatchsize: 2
  • —optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
  • —lrschedulertype: linear
  • —num_epochs: 10

Training results

Rouge metrics is heavily penalized because of multiple questions in target sample space,

Training LossEpochStepValidation LossRouge1Rouge2RougelRougelsum
2.01461.047581.69800.1430.07050.12570.1384

... | 1.1733 | 9.0 | 23790 | 1.6319 | 0.1404 | 0.0718 | 0.1239 | 0.1351 | | 1.1225 | 10.0 | 28548 | 1.6476 | 0.1407 | 0.0716 | 0.1245 | 0.1356 |

Framework versions

  • —Transformers 4.23.0.dev0
  • —Pytorch 1.12.1+cu113
  • —Datasets 2.5.2
  • —Tokenizers 0.13.0