Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ title = "Penguin Classifier"
|
|
23 |
description = "A Penguin breed classifier fine tuned on resnet18 architecture with fastai"
|
24 |
article="<p style='text-align: center'><a href='https://github.com/CodeRic28/penguin_classifier_fine_tune' target='_blank'>Blog post</a></p>"
|
25 |
|
26 |
-
examples = ['gentoo1.jpg','
|
27 |
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(512, 512)), outputs=gr.outputs.Label(num_top_classes=3),examples=examples,title=title,description=description,article=article).launch(share=True)
|
28 |
|
29 |
|
|
|
23 |
description = "A Penguin breed classifier fine tuned on resnet18 architecture with fastai"
|
24 |
article="<p style='text-align: center'><a href='https://github.com/CodeRic28/penguin_classifier_fine_tune' target='_blank'>Blog post</a></p>"
|
25 |
|
26 |
+
examples = ['gentoo1.jpg','chin.jpeg','adelie.jpg']
|
27 |
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(512, 512)), outputs=gr.outputs.Label(num_top_classes=3),examples=examples,title=title,description=description,article=article).launch(share=True)
|
28 |
|
29 |
|