Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -8,7 +8,10 @@ def get_sentiment(input):
|
|
| 8 |
|
| 9 |
demo = gr.Interface(fn=get_sentiment,
|
| 10 |
inputs="text",
|
| 11 |
-
outputs=["text"]
|
|
|
|
|
|
|
|
|
|
| 12 |
demo.launch()
|
| 13 |
|
| 14 |
|
|
|
|
| 8 |
|
| 9 |
demo = gr.Interface(fn=get_sentiment,
|
| 10 |
inputs="text",
|
| 11 |
+
outputs=["text"],
|
| 12 |
+
title="AI workshop",
|
| 13 |
+
description="input a text to get postive or negative "
|
| 14 |
+
)
|
| 15 |
demo.launch()
|
| 16 |
|
| 17 |
|