Wootang01 commited on
Commit
aa54e08
·
1 Parent(s): bcb68bb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,3 +1,4 @@
1
  import gradio as gr
2
  title = "Text Classifier 2 - BART-Large-MNLI"
3
- gr.Interface.load("huggingface/facebook/bart-large-mnli", title=title).launch()
 
 
1
  import gradio as gr
2
  title = "Text Classifier 2 - BART-Large-MNLI"
3
+ description = "Input text. Then list possible categories for the text. Submit. The machine will assign probabilities to the text belonging to each category."
4
+ gr.Interface.load("huggingface/facebook/bart-large-mnli", title=title, description=description).launch()