Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -59,7 +59,7 @@ with gr.Blocks() as interface:
|
|
59 |
with gr.Column():
|
60 |
input_file = gr.File(label="Watchface file", file_count='single', file_types=['watchface'])
|
61 |
|
62 |
-
single_button = gr.Button(
|
63 |
|
64 |
with gr.Column():
|
65 |
output_1 = gr.Image(label='Bordered Output', type='filepath')
|
@@ -70,7 +70,7 @@ with gr.Blocks() as interface:
|
|
70 |
input_files = gr.File(label="Watchface file", file_count='multiple', file_types=['watchface'])
|
71 |
output_kind_choice = gr.Dropdown(choices=output_kind, value=output_kind[0], label="Output kind for Watchface")
|
72 |
|
73 |
-
button = gr.Button(
|
74 |
|
75 |
output_gallery = gr.Gallery(label='Output Images')
|
76 |
|
|
|
59 |
with gr.Column():
|
60 |
input_file = gr.File(label="Watchface file", file_count='single', file_types=['watchface'])
|
61 |
|
62 |
+
single_button = gr.Button("Extract", variant="primary")
|
63 |
|
64 |
with gr.Column():
|
65 |
output_1 = gr.Image(label='Bordered Output', type='filepath')
|
|
|
70 |
input_files = gr.File(label="Watchface file", file_count='multiple', file_types=['watchface'])
|
71 |
output_kind_choice = gr.Dropdown(choices=output_kind, value=output_kind[0], label="Output kind for Watchface")
|
72 |
|
73 |
+
button = gr.Button("Extract", variant="primary")
|
74 |
|
75 |
output_gallery = gr.Gallery(label='Output Images')
|
76 |
|