chore: replace shape=INPUT_SHAPE by height=256, width=256
Browse files
app.py
CHANGED
@@ -388,7 +388,8 @@ with demo:
|
|
388 |
)
|
389 |
with gr.Row():
|
390 |
input_image = gr.Image(
|
391 |
-
value=None, label="Upload an image here.",
|
|
|
392 |
)
|
393 |
|
394 |
examples = gr.Examples(
|
|
|
388 |
)
|
389 |
with gr.Row():
|
390 |
input_image = gr.Image(
|
391 |
+
value=None, label="Upload an image here.", height=256,
|
392 |
+
width=256, source="upload", interactive=True,
|
393 |
)
|
394 |
|
395 |
examples = gr.Examples(
|