Spaces:
Runtime error
Runtime error
Commit
·
85c4ea5
1
Parent(s):
6715a95
Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ def predict_sentiment(text):
|
|
21 |
text=padded_test
|
22 |
model = from_pretrained_keras("keras-io/bidirectional-lstm-imdb")
|
23 |
X = [text for _ in range(len(model.input))]
|
24 |
-
a=model.predict(X
|
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 |
|
|
|
21 |
text=padded_test
|
22 |
model = from_pretrained_keras("keras-io/bidirectional-lstm-imdb")
|
23 |
X = [text for _ in range(len(model.input))]
|
24 |
+
a=model.predict(X)
|
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 |
|