amildravid4292 commited on
Commit
59610cc
Β·
verified Β·
1 Parent(s): bb98691

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -465,17 +465,17 @@ with gr.Blocks(css="style.css") as demo:
465
  net = gr.State()
466
  gr.HTML(intro)
467
 
468
- gr.Markdown(""" **Getting Started:** Sample a random identity or invert to get an identity-encoding model πŸ‘©πŸ»β€πŸŽ¨(or - Upload a previously downloaded model using the `Uploading a model` option in `Advanced Options`).
469
- **What Can You Do?** Generate new images & edit the encoded identity πŸ‘©πŸ»->πŸ‘©πŸ»β€πŸ¦±. See further instructions and tips at the bottom of the page πŸ€—.""")
470
  with gr.Column():
471
  with gr.Row():
472
  with gr.Column():
473
- gr.Markdown(""" ❢ sample a face -or- upload an image (optional - draw a mask over the head) and invert""")
474
  input_image = gr.ImageEditor(elem_id="image_upload", type='pil', label="Reference Identity",
475
  width=512, height=512)
476
 
477
  with gr.Row():
478
- sample = gr.Button("🎲 Sample random face")
479
  invert_button = gr.Button("⬆️ Invert")
480
 
481
 
 
465
  net = gr.State()
466
  gr.HTML(intro)
467
 
468
+ gr.Markdown(""" **Getting Started:** Sample a random identity or invert an image to get an identity-encoding model (or - upload a previously downloaded model using the `Uploading a model` option in `Advanced Options`).
469
+ **What Can You Do?** Generate new images of the identity & edit the encoded identity πŸ‘©->πŸ§‘β€πŸ¦³. See further instructions and tips at the bottom of the page.""")
470
  with gr.Column():
471
  with gr.Row():
472
  with gr.Column():
473
+ gr.Markdown(""" ❢ Either a) sample a random identity by clicking `🎲 Sample random identity` **or** b) upload an image (optional - draw a mask over the head) then click `⬆️ Invert`""")
474
  input_image = gr.ImageEditor(elem_id="image_upload", type='pil', label="Reference Identity",
475
  width=512, height=512)
476
 
477
  with gr.Row():
478
+ sample = gr.Button("🎲 Sample random identity")
479
  invert_button = gr.Button("⬆️ Invert")
480
 
481