Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -22,4 +22,4 @@ examples = ["sample_images/"+file for file in files]
|
|
22 |
article="<p style='text-align: center'><a href='https://dicksonneoh.com/portfolio/pytorch_at_the_edge_timm_torchscript_flutter/' target='_blank'>Blog post</a></p>"
|
23 |
enable_queue=True
|
24 |
|
25 |
-
gr.Interface(fn=predict,inputs=gr.inputs.Image(shape=(
|
|
|
22 |
article="<p style='text-align: center'><a href='https://dicksonneoh.com/portfolio/pytorch_at_the_edge_timm_torchscript_flutter/' target='_blank'>Blog post</a></p>"
|
23 |
enable_queue=True
|
24 |
|
25 |
+
gr.Interface(fn=predict,inputs=gr.inputs.Image(shape=(224, 224)),outputs=gr.outputs.Label(num_top_classes=3),title=title,description=description,article=article,examples=examples,interpretation=interpretation,enable_queue=enable_queue, theme="grass").launch()
|