CodeRic28 commited on
Commit
e06d931
·
1 Parent(s): 98ad43a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ def predict(img):
21
 
22
  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','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()
 
21
 
22
  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'>Github Repository</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()