Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -41,7 +41,7 @@ def classify_image(inp):
|
|
| 41 |
return result
|
| 42 |
|
| 43 |
|
| 44 |
-
image = gr.Image(
|
| 45 |
label = gr.Label(num_top_classes=2)
|
| 46 |
|
| 47 |
gr.Interface(fn=classify_image, inputs=image, outputs=label, title='Smart Pet Classifier').launch(debug=False)
|
|
|
|
| 41 |
return result
|
| 42 |
|
| 43 |
|
| 44 |
+
image = gr.Image(height=HEIGHT,width=WIDTH,label='Input')
|
| 45 |
label = gr.Label(num_top_classes=2)
|
| 46 |
|
| 47 |
gr.Interface(fn=classify_image, inputs=image, outputs=label, title='Smart Pet Classifier').launch(debug=False)
|