Ahsen Khaliq
Update app.py
f0b4c1c
raw
history blame contribute delete
No virus
505 Bytes
import gradio as gr
title = "T5"
description = "Gradio Demo for T5, Read more at the links below."
article = "<p style='text-align: center'><a href='https://huggingface.co/google/t5-base-lm-adapt' target='_blank'>Hugging face model page</a></p>"
examples = [
['Sevilla is a city in Spain']
]
gr.Interface.load("huggingface/google/t5-base-lm-adapt", inputs=gr.inputs.Textbox(lines=5, label="Input Text"),title=title,description=description,article=article, examples=examples,enable_queue=True).launch()