T0pp / app.py
Ahsen Khaliq
Create app.py
8d812a0
raw
history blame
657 Bytes
import gradio as gr
title = "T0pp-11B"
description = "Gradio Demo for T0pp-11B. To use it, simply add your text, or click one of the examples to load them. Read more at the links below."
article = "<p style='text-align: center'><a href='https://huggingface.co/bigscience/T0pp_11B' target='_blank'>Hugging face model page</a></p>"
examples = [
['Is this review positive or negative? Review: this is the best cast iron skillet you will ever buy'],
]
gr.Interface.load("huggingface/bigscience/T0pp_11B", inputs=gr.inputs.Textbox(lines=5, label="Input Text"),title=title,description=description,article=article, examples=examples,enable_queue=True).launch()