Spaces:
Configuration error
Configuration error
change default config
Browse files
app.py
CHANGED
@@ -155,9 +155,9 @@ with gr.Blocks(css="styles.css") as demo:
|
|
155 |
gr.Markdown(value="""## ✍️ Prompt Editing
|
156 |
See readme for a prompting guide. Use the '|' symbol to separate prompts. Use the "Add mask" section to make local edits (Remember to click Set Mask!). Negative prompts are highly recommended""", show_label=False)
|
157 |
positive_prompts = gr.Textbox(label="Positive prompts",
|
158 |
-
value="
|
159 |
negative_prompts = gr.Textbox(label="Negative prompts",
|
160 |
-
value="a picture of a
|
161 |
gen_prompts = gr.Button(value="🎲 Random prompts")
|
162 |
gen_prompts.click(get_random_prompts, outputs=[positive_prompts, negative_prompts])
|
163 |
with gr.Row():
|
|
|
155 |
gr.Markdown(value="""## ✍️ Prompt Editing
|
156 |
See readme for a prompting guide. Use the '|' symbol to separate prompts. Use the "Add mask" section to make local edits (Remember to click Set Mask!). Negative prompts are highly recommended""", show_label=False)
|
157 |
positive_prompts = gr.Textbox(label="Positive prompts",
|
158 |
+
value="A picture of a handsome man | a picture of a masculine man",)
|
159 |
negative_prompts = gr.Textbox(label="Negative prompts",
|
160 |
+
value="a picture of a woman | a picture of a feminine person")
|
161 |
gen_prompts = gr.Button(value="🎲 Random prompts")
|
162 |
gen_prompts.click(get_random_prompts, outputs=[positive_prompts, negative_prompts])
|
163 |
with gr.Row():
|