Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -297,7 +297,7 @@ with gr.Blocks(theme=theme, css=css) as app:
|
|
297 |
return prompt
|
298 |
|
299 |
io = gr.Interface(generate_caption,
|
300 |
-
inputs=[gr.Image(label="Input Image")],
|
301 |
outputs = [gr.Textbox(label="Output Prompt", lines=2, show_copy_button = True),
|
302 |
# gr.Image(label="Output Image")
|
303 |
]
|
@@ -325,7 +325,7 @@ with gr.Blocks(theme=theme, css=css) as app:
|
|
325 |
with gr.Tab("Image Filters"):
|
326 |
with gr.Row():
|
327 |
with gr.Column():
|
328 |
-
image_input = gr.Image(type="numpy", label="Upload Image")
|
329 |
with gr.Accordion("ℹ️ Filter Categories", open=True):
|
330 |
filter_type = gr.Dropdown(
|
331 |
[
|
|
|
297 |
return prompt
|
298 |
|
299 |
io = gr.Interface(generate_caption,
|
300 |
+
inputs=[gr.Image(label="Input Image"),height=320],
|
301 |
outputs = [gr.Textbox(label="Output Prompt", lines=2, show_copy_button = True),
|
302 |
# gr.Image(label="Output Image")
|
303 |
]
|
|
|
325 |
with gr.Tab("Image Filters"):
|
326 |
with gr.Row():
|
327 |
with gr.Column():
|
328 |
+
image_input = gr.Image(type="numpy", label="Upload Image", height=320)
|
329 |
with gr.Accordion("ℹ️ Filter Categories", open=True):
|
330 |
filter_type = gr.Dropdown(
|
331 |
[
|