lucasgbezerra commited on
Commit
c484867
1 Parent(s): 616c2ec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ def classify_image(img):
9
  return {labels[i]: float(probs[i]) for i in range(len(labels))}
10
 
11
  title = "Planets Classifier"
12
- examples = ['mars.jpg', 'earth.jpg', 'sun.jpg', 'pluto.jpg']
13
 
14
  iface = gr.Interface(
15
  fn=classify_image,
 
9
  return {labels[i]: float(probs[i]) for i in range(len(labels))}
10
 
11
  title = "Planets Classifier"
12
+ examples = ['./imgs/mars.jpg', './imgs/earth.jpg', './imgs/sun.jpg', './imgs/pluto.jpg']
13
 
14
  iface = gr.Interface(
15
  fn=classify_image,