Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -153,6 +153,6 @@ model = keras.models.load_model("twitter_sentiment.keras",
|
|
153 |
# Load tokenizer
|
154 |
tokenizer = load_tokenizer('tokenizer.pkl')
|
155 |
|
156 |
-
interface = gr.Interface(fn=analyze_text, inputs=
|
157 |
outputs='text',title='Twitter Sentimental Analysis', theme='darkhuggingface')
|
158 |
interface.launch(inline=False)
|
|
|
153 |
# Load tokenizer
|
154 |
tokenizer = load_tokenizer('tokenizer.pkl')
|
155 |
|
156 |
+
interface = gr.Interface(fn=analyze_text, inputs='text',
|
157 |
outputs='text',title='Twitter Sentimental Analysis', theme='darkhuggingface')
|
158 |
interface.launch(inline=False)
|