import gradio as gr title = "t5-base-fine-tuned-on-jfleg" description = "Gradio Demo for T5-base model fine-tuned on the JFLEG dataset with the objective of text2text-generation. To use it, simply add your text, or click one of the examples to load them. Read more at the links below." article = "

Huggingface Model

" examples = [ ['I am write on AI'] ] gr.Interface.load("huggingface/Modfiededition/t5-base-fine-tuned-on-jfleg", inputs=gr.inputs.Textbox(lines=5, label="Input Text"),title=title,description=description,article=article, examples=examples,enable_queue=True).launch()