Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
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
|
469 |
-
**What Can You Do?** Generate new images & edit the encoded identity
|
470 |
with gr.Column():
|
471 |
with gr.Row():
|
472 |
with gr.Column():
|
473 |
-
gr.Markdown(""" βΆ sample a
|
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
|
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 |
|