Spaces:
Runtime error
Runtime error
Don't accept inputs in output image (#1)
Browse files- Don't accept inputs in output image (fd0e0130c6ea1a1d1aca618baa52b2fdfa939a2d)
Co-authored-by: Pedro Cuenca <pcuenq@users.noreply.huggingface.co>
app.py
CHANGED
|
@@ -82,7 +82,7 @@ with gr.Blocks() as demo:
|
|
| 82 |
|
| 83 |
# Output section: Display the Zero123++ output image
|
| 84 |
with gr.Column():
|
| 85 |
-
output_img = gr.Image(label='Zero123++ Output')
|
| 86 |
|
| 87 |
# Submit button to initiate the inference
|
| 88 |
btn = gr.Button('Submit')
|
|
|
|
| 82 |
|
| 83 |
# Output section: Display the Zero123++ output image
|
| 84 |
with gr.Column():
|
| 85 |
+
output_img = gr.Image(label='Zero123++ Output', interactive=False)
|
| 86 |
|
| 87 |
# Submit button to initiate the inference
|
| 88 |
btn = gr.Button('Submit')
|