ISYS commited on
Commit
22b4794
1 Parent(s): 8a24814
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ model = from_pretrained_keras("ISYS/MyNewModel")
8
  def greet(img):
9
  img = np.expand_dims(img, axis=0)
10
  #return np.argmax(model.predict(img)[0])
11
- numb = np.argmax(model.predict(img)[0]
12
  a = numb % 3
13
  return a, numb
14
 
 
8
  def greet(img):
9
  img = np.expand_dims(img, axis=0)
10
  #return np.argmax(model.predict(img)[0])
11
+ numb = np.argmax(model.predict(img)[0])
12
  a = numb % 3
13
  return a, numb
14