Update app.py
Browse files
app.py
CHANGED
@@ -102,11 +102,13 @@ def sentence_prediction(sentence):
|
|
102 |
|
103 |
|
104 |
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
|
|
|
|
109 |
)
|
110 |
|
111 |
-
|
112 |
|
|
|
102 |
|
103 |
|
104 |
|
105 |
+
interface = gr.Interface(
|
106 |
+
fn=predict_sentiment,
|
107 |
+
inputs='text',
|
108 |
+
outputs=['label'],
|
109 |
+
title='Latvian Twitter Sentiment Analysis',
|
110 |
+
description='Get the positive/neutral/negative sentiment for the given input.'
|
111 |
)
|
112 |
|
113 |
+
interface.launch(inline = False)
|
114 |
|