add more info on duplication prerequisites
Browse files
app.py
CHANGED
@@ -48,6 +48,10 @@ with gr.Blocks(css=css) as demo:
|
|
48 |
with gr.Column(elem_id="col-container"):
|
49 |
gr.HTML("""
|
50 |
<h2 style="text-align: center;">SDXL Auto FaceSwap</h2>
|
|
|
|
|
|
|
|
|
51 |
""")
|
52 |
with gr.Row():
|
53 |
portrait_in = gr.Image(label="Your source portrait", type="filepath")
|
|
|
48 |
with gr.Column(elem_id="col-container"):
|
49 |
gr.HTML("""
|
50 |
<h2 style="text-align: center;">SDXL Auto FaceSwap</h2>
|
51 |
+
<p style="text-align: center;">
|
52 |
+
This idea relies to <a href="https://huggingface.co/spaces/fffiloni/sdxl-dpo" target="_blank">SDXL DPO</a> + <a href="https://huggingface.co/spaces/imseldrith/DeepFakeAI" target="_blank">DeepFakeAI</a> spaces chained together thanks to the gradio API. <br />
|
53 |
+
If you want to duplicate this space, you'll need to duplicate both of these privately too in order to make your copy work properly.
|
54 |
+
</p>
|
55 |
""")
|
56 |
with gr.Row():
|
57 |
portrait_in = gr.Image(label="Your source portrait", type="filepath")
|