curtpond commited on
Commit
5c6ac7a
·
1 Parent(s): 9fbed41

Debugging app.py.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -40,7 +40,7 @@ def vectorize_text(text):
40
 
41
  def predict(text):
42
  text = vectorize_text(text)
43
- prediction = model.predict(text)
44
  return prediction
45
 
46
 
 
40
 
41
  def predict(text):
42
  text = vectorize_text(text)
43
+ prediction = model.predict(text).tostring()
44
  return prediction
45
 
46