fix layout
Browse files- recipe_lora.py +4 -2
recipe_lora.py
CHANGED
@@ -90,14 +90,16 @@ def app():
|
|
90 |
add_button = gr.Button("Add Ingredient", interactive=False)
|
91 |
output = gr.Textbox(label="Ingredients List", lines=10, interactive=False)
|
92 |
|
93 |
-
submit_button = gr.Button("Give me a meal!")
|
94 |
-
|
95 |
with gr.Row():
|
|
|
96 |
model_dropdown = gr.Dropdown(
|
97 |
label="Choose Model",
|
98 |
choices=["Recipe Model", "LoRA Model"],
|
99 |
value="Recipe Model"
|
100 |
)
|
|
|
|
|
|
|
101 |
model_output = gr.Textbox(
|
102 |
label="Recipe Suggestion", lines=10, interactive=False
|
103 |
)
|
|
|
90 |
add_button = gr.Button("Add Ingredient", interactive=False)
|
91 |
output = gr.Textbox(label="Ingredients List", lines=10, interactive=False)
|
92 |
|
|
|
|
|
93 |
with gr.Row():
|
94 |
+
submit_button = gr.Button("Give me a meal!")
|
95 |
model_dropdown = gr.Dropdown(
|
96 |
label="Choose Model",
|
97 |
choices=["Recipe Model", "LoRA Model"],
|
98 |
value="Recipe Model"
|
99 |
)
|
100 |
+
|
101 |
+
with gr.Row():
|
102 |
+
|
103 |
model_output = gr.Textbox(
|
104 |
label="Recipe Suggestion", lines=10, interactive=False
|
105 |
)
|