update layout
Browse files
app.py
CHANGED
@@ -83,10 +83,11 @@ with block:
|
|
83 |
"""
|
84 |
)
|
85 |
with gr.Row():
|
86 |
-
prompt_in = gr.Textbox(label="Type in a Prompt in front of the given text..", value="")
|
87 |
with gr.Column():
|
88 |
theme = gr.Radio(label="Pick a Theme",choices=["animal","science", "food", "landscape", "wildcard"] )
|
89 |
model_list = gr.Dropdown(label="Pick a Dreamboooth model", choices = []) # choices=
|
|
|
|
|
90 |
button_in = gr.Button(Value = "Generate Image")
|
91 |
image_out = gr.Image(label="Generated image with your choice of Dreambooth model")
|
92 |
with gr.Tabs():
|
|
|
83 |
"""
|
84 |
)
|
85 |
with gr.Row():
|
|
|
86 |
with gr.Column():
|
87 |
theme = gr.Radio(label="Pick a Theme",choices=["animal","science", "food", "landscape", "wildcard"] )
|
88 |
model_list = gr.Dropdown(label="Pick a Dreamboooth model", choices = []) # choices=
|
89 |
+
with gr.Column():
|
90 |
+
prompt_in = gr.Textbox(label="Type in a Prompt in front of the given text..", value="")
|
91 |
button_in = gr.Button(Value = "Generate Image")
|
92 |
image_out = gr.Image(label="Generated image with your choice of Dreambooth model")
|
93 |
with gr.Tabs():
|