erwann commited on
Commit
1c7d5d7
1 Parent(s): 0f149e3

change default config

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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="a picture of a woman with a very big nose | a picture of a woman with a large wide nose | a woman with an extremely prominent nose")
159
  negative_prompts = gr.Textbox(label="Negative prompts",
160
- value="a picture of a person with a tiny nose | a picture of a person with a very thin nose")
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():