Update app.py
Browse files
app.py
CHANGED
@@ -49,6 +49,6 @@ description = " Thesis Title: The Development of a
|
|
49 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/1807.11164'>ShuffleNet V2: Practical Guidelines for Efficient CNN Architecture Design</a> | <a href='https://github.com/pytorch/vision/blob/master/torchvision/models/shufflenetv2.py'>Github Repo</a></p>"
|
50 |
|
51 |
examples = [
|
52 |
-
['dog.jpg','pizza.jpeg']
|
53 |
]
|
54 |
gr.Interface(inference, inputs, outputs, title=title, description=description, article=article, examples=examples, analytics_enabled=False).launch()
|
|
|
49 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/1807.11164'>ShuffleNet V2: Practical Guidelines for Efficient CNN Architecture Design</a> | <a href='https://github.com/pytorch/vision/blob/master/torchvision/models/shufflenetv2.py'>Github Repo</a></p>"
|
50 |
|
51 |
examples = [
|
52 |
+
['dog.jpg'],['pizza.jpeg'],['mushroom.jpeg']
|
53 |
]
|
54 |
gr.Interface(inference, inputs, outputs, title=title, description=description, article=article, examples=examples, analytics_enabled=False).launch()
|