Update apps/gradio_app.py
Browse files- apps/gradio_app.py +2 -1
apps/gradio_app.py
CHANGED
@@ -77,6 +77,7 @@ def create_gui():
|
|
77 |
inputs=[input_image, outer_scale],
|
78 |
label="Example Inputs",
|
79 |
examples_per_page=4,
|
|
|
80 |
fn=select_example,
|
81 |
outputs=[input_image, outer_scale, output_image, output_text]
|
82 |
)
|
@@ -87,7 +88,7 @@ def create_gui():
|
|
87 |
outputs=[output_image, output_text]
|
88 |
)
|
89 |
gr.HTML(CONTENT_OUT_1)
|
90 |
-
gr.
|
91 |
|
92 |
return demo
|
93 |
|
|
|
77 |
inputs=[input_image, outer_scale],
|
78 |
label="Example Inputs",
|
79 |
examples_per_page=4,
|
80 |
+
cache_examples=False,
|
81 |
fn=select_example,
|
82 |
outputs=[input_image, outer_scale, output_image, output_text]
|
83 |
)
|
|
|
88 |
outputs=[output_image, output_text]
|
89 |
)
|
90 |
gr.HTML(CONTENT_OUT_1)
|
91 |
+
gr.HTML(CONTENT_OUT_2)
|
92 |
|
93 |
return demo
|
94 |
|