Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import json
|
|
2 |
import gradio as gr
|
3 |
from textblob import TextBlob
|
4 |
|
5 |
-
def
|
6 |
"""
|
7 |
|
8 |
Analyze the sentiment of given sentence or text.
|
|
|
2 |
import gradio as gr
|
3 |
from textblob import TextBlob
|
4 |
|
5 |
+
def sentiment_analysis(text:str) -> str:
|
6 |
"""
|
7 |
|
8 |
Analyze the sentiment of given sentence or text.
|