Spaces:
No application file
No application file
Update app.py
Browse files
app.py
CHANGED
|
@@ -18,4 +18,7 @@ import gradio as gr
|
|
| 18 |
image = gr.inputs.Image(shape=(img_height, img_width))
|
| 19 |
label = gr.outputs.Label(num_top_classes=num_classes)
|
| 20 |
|
| 21 |
-
gr.Interface(fn=predict_image, inputs=image, outputs=label,
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
image = gr.inputs.Image(shape=(img_height, img_width))
|
| 19 |
label = gr.outputs.Label(num_top_classes=num_classes)
|
| 20 |
|
| 21 |
+
gr.Interface(fn=predict_image, inputs=image, outputs=label,
|
| 22 |
+
title="Flower Classification using InceptionV3",
|
| 23 |
+
description="A flower classification app built using python and deployed using gradio",
|
| 24 |
+
interpretation='default').launch()
|