DrishtiSharma commited on
Commit
0b38e46
1 Parent(s): 93b4a68

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -23,7 +23,7 @@ def predict_sentiment(text):
23
  X = [text for _ in range(len(model.input))]
24
  a=model.predict(X, verbose=0)
25
  return sentiment[np.around(a, decimals=0).argmax(axis=1)[0]]
26
- description = "Provide an opinion regarding a movie and this app will suggest what the underlying sentiment is. "
27
 
28
 
29
  #Gradio app
 
23
  X = [text for _ in range(len(model.input))]
24
  a=model.predict(X, verbose=0)
25
  return sentiment[np.around(a, decimals=0).argmax(axis=1)[0]]
26
+ description = "Provide an opinion regarding a movie as input and this app will suggest what the underlying sentiment is. "
27
 
28
 
29
  #Gradio app