Update app.py
Browse files
app.py
CHANGED
@@ -57,11 +57,11 @@ with gr.Blocks(css=css) as demo:
|
|
57 |
<h2 style="text-align: center;">SDXL Auto FaceSwap</h2>
|
58 |
""")
|
59 |
with gr.Row():
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
with gr.Column():
|
66 |
result = gr.Image(label="Result")
|
67 |
gr.Examples(
|
|
|
57 |
<h2 style="text-align: center;">SDXL Auto FaceSwap</h2>
|
58 |
""")
|
59 |
with gr.Row():
|
60 |
+
|
61 |
+
with gr.Column():
|
62 |
+
portrait_in = gr.Image(label="Your face portrait", type="filepath")
|
63 |
+
prompt_in = gr.Textbox(label="Prompt to desired portrait using your own face")
|
64 |
+
submit_btn = gr.Button("Submit")
|
65 |
with gr.Column():
|
66 |
result = gr.Image(label="Result")
|
67 |
gr.Examples(
|