Ilde commited on
Commit
6fe2844
1 Parent(s): ffe36a0

porfabor señor jesus

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ categories = ("Marth", "Sheik")
13
 
14
  def classify_images(img):
15
  pred, idx, probs = learn.predict(img)
16
- return dict(zip(catogories, map(float, probs)))
17
 
18
  image = gr.inputs.Image(shape = (192, 192))
19
  label = gr.outputs.Label()
 
13
 
14
  def classify_images(img):
15
  pred, idx, probs = learn.predict(img)
16
+ return dict(zip(categories, map(float, probs)))
17
 
18
  image = gr.inputs.Image(shape = (192, 192))
19
  label = gr.outputs.Label()