muddokon commited on
Commit
95d80ff
·
verified ·
1 Parent(s): ef447ac

Update app.py

Browse files

Updated gradio classes

Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -17,15 +17,15 @@ def predict(img):
17
  return {labels[i]: float(probs[i]) for i in range(len(labels))}
18
 
19
  title = "Pet Breed Classifier"
20
- description = "A pet breed classifier trained on the Oxford Pets dataset with fastai. Created as a demo from the course by Jeremy Howard."
21
  article="<p style='text-align: center'><a href='https://course.fast.ai/' target='_blank'>Go to course</a></p>"
22
  examples = ['siamese.jpg','pug.jpg']
23
  interpretation='default'
24
  enable_queue=True
25
 
26
  gr.Interface(fn=predict,
27
- inputs=gr.inputs.Image(shape=(512, 512)),
28
- outputs=gr.outputs.Label(num_top_classes=3),
29
  title=title,
30
  description=description,
31
  article=article,
 
17
  return {labels[i]: float(probs[i]) for i in range(len(labels))}
18
 
19
  title = "Pet Breed Classifier"
20
+ description = "A pet breed classifier trained on the Oxford Pets dataset using fastai. Created as a demo from the course by Jeremy Howard."
21
  article="<p style='text-align: center'><a href='https://course.fast.ai/' target='_blank'>Go to course</a></p>"
22
  examples = ['siamese.jpg','pug.jpg']
23
  interpretation='default'
24
  enable_queue=True
25
 
26
  gr.Interface(fn=predict,
27
+ inputs=gr.Image(shape=(512, 512)),
28
+ outputs=gr.Label(num_top_classes=3),
29
  title=title,
30
  description=description,
31
  article=article,