Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -135,10 +135,11 @@ with gr.Blocks(theme=get_theme(), title="DeepFakeAI 1.0.0") as ui:
|
|
| 135 |
)
|
| 136 |
unique_id = gr.Textbox(value=str(uuid.uuid4()), visible=False)
|
| 137 |
with gr.Tab("Image: "):
|
| 138 |
-
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
|
|
|
| 142 |
image_button = gr.Button("START")
|
| 143 |
clear_button = gr.ClearButton(value="CLEAR")
|
| 144 |
image_output = gr.Image(elem_id="image_output", label="OUTPUT")
|
|
|
|
| 135 |
)
|
| 136 |
unique_id = gr.Textbox(value=str(uuid.uuid4()), visible=False)
|
| 137 |
with gr.Tab("Image: "):
|
| 138 |
+
wiht gr.Row():
|
| 139 |
+
with gr.Column():
|
| 140 |
+
source_image = gr.Image(type="filepath", label="SOURCE IMAGE")
|
| 141 |
+
with gr.Column():
|
| 142 |
+
target_image = gr.Image(type="filepath", label="TARGET IMAGE")
|
| 143 |
image_button = gr.Button("START")
|
| 144 |
clear_button = gr.ClearButton(value="CLEAR")
|
| 145 |
image_output = gr.Image(elem_id="image_output", label="OUTPUT")
|