Spaces:
Sleeping
Sleeping
Fix image dimensions
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ def classify_image(img):
|
|
14 |
|
15 |
examples = ['handbag.jpg', 'shoes.png']
|
16 |
|
17 |
-
image = gr.Image(
|
18 |
label = gr.Label()
|
19 |
|
20 |
interface =gr.Interface(fn = classify_image,
|
|
|
14 |
|
15 |
examples = ['handbag.jpg', 'shoes.png']
|
16 |
|
17 |
+
image = gr.Image(height=200,width=200)
|
18 |
label = gr.Label()
|
19 |
|
20 |
interface =gr.Interface(fn = classify_image,
|