Fix restore_information
Browse files- gradio_demo.py +1 -0
gradio_demo.py
CHANGED
|
@@ -585,6 +585,7 @@ with gr.Blocks(title="SUPIR") as interface:
|
|
| 585 |
with gr.Group():
|
| 586 |
diffusion_button = gr.Button(value="🚀 Upscale/Restore", variant = "primary", elem_id="process_button")
|
| 587 |
|
|
|
|
| 588 |
result_slider = ImageSlider(label='Output', show_label=True, elem_id="slider1")
|
| 589 |
result_gallery = gr.Gallery(label='Output', show_label=True, elem_id="gallery1")
|
| 590 |
|
|
|
|
| 585 |
with gr.Group():
|
| 586 |
diffusion_button = gr.Button(value="🚀 Upscale/Restore", variant = "primary", elem_id="process_button")
|
| 587 |
|
| 588 |
+
restore_information = gr.HTML(value="Restart the process to get another result.", visible = False)
|
| 589 |
result_slider = ImageSlider(label='Output', show_label=True, elem_id="slider1")
|
| 590 |
result_gallery = gr.Gallery(label='Output', show_label=True, elem_id="gallery1")
|
| 591 |
|