lucasgbezerra commited on
Commit
15ff97f
1 Parent(s): 6c19634

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -1,3 +1,7 @@
1
  import gradio as gr
2
 
3
- gr.Interface.load("models/lucasgbezerra/classification_text_model").launch()
 
 
 
 
 
1
  import gradio as gr
2
 
3
+ description = "Classificador de sentimento (Positivo, Negativo) de textos de avaliações de filmes"
4
+ examples = [["It was Epic no doubt every character was well utilised well introduced thank you Marvel Studios for this Epic Movie"],
5
+ [" The pacing was terrible with most of the action scenes being not only already in the trailers but over before you can actually enjoy them. The dialog was bland boring and downright embarrassing. The back and forth between Eddie and venom was like a neanderthal talking to a 10 year old."]]
6
+
7
+ gr.Interface.load("models/lucasgbezerra/classification_text_model", description=description, examples=examples).launch()