Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -69,6 +69,7 @@ im = gr.inputs.Image(shape=(512, 512), image_mode='RGB',
|
|
69 |
title = "CatsVsDogs Classifier"
|
70 |
description = "Playground: Inferernce of Object Classification (Binary) using ResNet model and CatsVsDogs dataset. Tools: Pytorch, Gradio."
|
71 |
examples = [['./cat.jpg'],['./dog.jpg']]
|
|
|
72 |
iface = gr.Interface(
|
73 |
do_inference,
|
74 |
im,
|
@@ -77,6 +78,7 @@ iface = gr.Interface(
|
|
77 |
interpretation=None,
|
78 |
title=title,
|
79 |
description=description,
|
|
|
80 |
examples=examples
|
81 |
)
|
82 |
|
|
|
69 |
title = "CatsVsDogs Classifier"
|
70 |
description = "Playground: Inferernce of Object Classification (Binary) using ResNet model and CatsVsDogs dataset. Tools: Pytorch, Gradio."
|
71 |
examples = [['./cat.jpg'],['./dog.jpg']]
|
72 |
+
article="<p style='text-align: center'><a href='https://github.com/mawady/colab-recipes-cv' target='_blank'>Colab recipes for computer vision - Dr. Mohamed Elawady</a></p>"
|
73 |
iface = gr.Interface(
|
74 |
do_inference,
|
75 |
im,
|
|
|
78 |
interpretation=None,
|
79 |
title=title,
|
80 |
description=description,
|
81 |
+
article=article,
|
82 |
examples=examples
|
83 |
)
|
84 |
|