t5-base-e2e-qg / README.md
julien-c's picture
julien-c HF staff
Migrate model card from transformers-repo
56bdf6d
metadata
datasets:
  - squad
tags:
  - question-generation
widget:
  - text: >-
      Python is a programming language. It is developed by Guido Van Rossum and
      released in 1991. </s>
license: mit

T5 for question-generation

This is t5-base model trained for end-to-end question generation task. Simply input the text and the model will generate multile questions.

You can play with the model using the inference API, just put the text and see the results!

For more deatils see this repo.

Model in action πŸš€

You'll need to clone the repo.

Open In Colab

from pipelines import pipeline

text = "Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum \
and first released in 1991, Python's design philosophy emphasizes code \
readability with its notable use of significant whitespace."

nlp = pipeline("e2e-qg", model="valhalla/t5-base-e2e-qg")
nlp(text)
=> [
 'Who created Python?',
 'When was Python first released?',
 "What is Python's design philosophy?"
]