Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -89,12 +89,12 @@ with gr.Blocks() as demo:
|
|
89 |
Currently running on {power_device}.
|
90 |
""")
|
91 |
|
92 |
-
prompt_part1 = gr.Textbox(value="a single", label="Prompt Part 1")
|
93 |
prompt_part2 = gr.Textbox(label="color", placeholder="color (e.g., red, blue)")
|
94 |
prompt_part3 = gr.Textbox(label="dress_type", placeholder="dress_type (e.g., t-shirt, hoodie)")
|
95 |
prompt_part4_front = gr.Textbox(label="front design", placeholder="front design")
|
96 |
prompt_part4_back = gr.Textbox(label="back design", placeholder="back design")
|
97 |
-
prompt_part5 = gr.Textbox(value="hanging on the plain wall", label="Prompt Part 5")
|
98 |
|
99 |
run_button = gr.Button("Generate Designs")
|
100 |
|
|
|
89 |
Currently running on {power_device}.
|
90 |
""")
|
91 |
|
92 |
+
prompt_part1 = gr.Textbox(value="a single", label="Prompt Part 1", visible=False)
|
93 |
prompt_part2 = gr.Textbox(label="color", placeholder="color (e.g., red, blue)")
|
94 |
prompt_part3 = gr.Textbox(label="dress_type", placeholder="dress_type (e.g., t-shirt, hoodie)")
|
95 |
prompt_part4_front = gr.Textbox(label="front design", placeholder="front design")
|
96 |
prompt_part4_back = gr.Textbox(label="back design", placeholder="back design")
|
97 |
+
prompt_part5 = gr.Textbox(value="hanging on the plain wall", label="Prompt Part 5", visible=False)
|
98 |
|
99 |
run_button = gr.Button("Generate Designs")
|
100 |
|