BERT-Squad / app.py
akhaliq's picture
akhaliq HF staff
Create app.py
53868aa
raw
history blame
No virus
309 Bytes
import gradio as gr
title="T5"
description="Gradio demo for T5"
examples=[["London, the capital of England and the United Kingdom, is a 21st-century city with history stretching back to Roman times."]]
gr.Interface.load("huggingface/t5-small",title=title,description=description,examples=examples).launch()