Update app.py
Browse files
app.py
CHANGED
@@ -59,8 +59,6 @@ description = "Gradio demo for SimpleNet network pre-trained on ImageNet. This d
|
|
59 |
|
60 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/1608.06037' target='_blank'>Lets Keep it simple, Using simple architectures to outperform deeper and more complex architectures</a> | <a href='https://github.com/Coderx7/SimpleNet_Pytorch/blob/master/imagenet/simplenet.py' target='_blank'>Github Repo</a></p>"
|
61 |
|
62 |
-
examples = [
|
63 |
-
['dog.jpg']
|
64 |
-
]
|
65 |
|
66 |
gr.Interface(inference, inputs, outputs, title=title, description=description, article=article, examples=examples, analytics_enabled=False).launch()
|
|
|
59 |
|
60 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/1608.06037' target='_blank'>Lets Keep it simple, Using simple architectures to outperform deeper and more complex architectures</a> | <a href='https://github.com/Coderx7/SimpleNet_Pytorch/blob/master/imagenet/simplenet.py' target='_blank'>Github Repo</a></p>"
|
61 |
|
62 |
+
examples = [['dog.jpg']]
|
|
|
|
|
63 |
|
64 |
gr.Interface(inference, inputs, outputs, title=title, description=description, article=article, examples=examples, analytics_enabled=False).launch()
|