CodeRic28 commited on
Commit
cc0ce6c
·
1 Parent(s): 79aeaa6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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','king_peng.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
 
 
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