Update app.py
Browse files
app.py
CHANGED
@@ -32,7 +32,7 @@ with gr.Blocks() as demo:
|
|
32 |
input_img = gr.Image()
|
33 |
num_copies = gr.Number(label="Number of Copies", value=1)
|
34 |
gallery = gr.Gallery(label="Sepia Images")
|
35 |
-
|
36 |
|
37 |
input_img.change(fn=lambda x: x, inputs=input_img, outputs=gallery)
|
38 |
num_copies.change(fn=lambda x: x, inputs=num_copies, outputs=gallery)
|
|
|
32 |
input_img = gr.Image()
|
33 |
num_copies = gr.Number(label="Number of Copies", value=1)
|
34 |
gallery = gr.Gallery(label="Sepia Images")
|
35 |
+
download_btn = gr.File(label="Download ZIP", visible=True)
|
36 |
|
37 |
input_img.change(fn=lambda x: x, inputs=input_img, outputs=gallery)
|
38 |
num_copies.change(fn=lambda x: x, inputs=num_copies, outputs=gallery)
|