Spaces:
Runtime error
Runtime error
File size: 628 Bytes
920b32a 6b3284e 920b32a 5a13fe2 920b32a 5a13fe2 |
1 2 3 4 5 6 7 8 9 |
import gradio as gr
title = "bart-large"
description = "Gradio Demo for bart-large, 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/facebook/bart-large-mnli' target='_blank'>Huggingface Model Page</a></p>"
examples = [
["I have a problem with my iphone that needs to be resolved asap!!","urgent, not urgent, phone, tablet, computer"]
]
gr.Interface.load("huggingface/facebook/bart-large-mnli",title=title,description=description,article=article, examples=examples,enable_queue=True).launch()
|