11 lines
162 B
Python
11 lines
162 B
Python
|
|
||
|
def get_sentiment(c,text):
|
||
|
try:
|
||
|
return c.predict(text)
|
||
|
except BaseException as e:
|
||
|
print("请稍后")
|
||
|
print(e)
|
||
|
|
||
|
|
||
|
|