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

Update app.py

Browse files

Updated to newer gradio

Files changed (1) hide show
  1. app.py +2 -6
app.py CHANGED
@@ -20,15 +20,11 @@ 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,
32
- examples=examples,
33
- interpretation=interpretation,
34
- enable_queue=enable_queue).launch()
 
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
 
24
  gr.Interface(fn=predict,
25
+ inputs=gr.Image(),
26
  outputs=gr.Label(num_top_classes=3),
27
  title=title,
28
  description=description,
29
  article=article,
30
+ examples=examples).launch()