Spaces:
Sleeping
Sleeping
Update app.py
Browse filesUpdated gradio classes
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
|
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.
|
28 |
-
outputs=gr.
|
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,
|