Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -32,10 +32,11 @@ iface = gr.Interface(
|
|
32 |
inputs='text',
|
33 |
outputs='text',
|
34 |
title='Tweet Sentiment Analyzer',
|
35 |
-
description='Enter a tweet and get the sentiment prediction.',
|
36 |
examples=[['I love this movie!', 'This weather is terrible.']],
|
37 |
-
theme='
|
|
|
38 |
)
|
39 |
|
40 |
# Launch the interface
|
41 |
-
iface.launch()
|
|
|
32 |
inputs='text',
|
33 |
outputs='text',
|
34 |
title='Tweet Sentiment Analyzer',
|
35 |
+
description='Enter a tweet with text or emoticon or both, and get the sentiment prediction.',
|
36 |
examples=[['I love this movie!', 'This weather is terrible.']],
|
37 |
+
theme='Soft'
|
38 |
+
|
39 |
)
|
40 |
|
41 |
# Launch the interface
|
42 |
+
iface.launch(share = True)
|