Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -143,7 +143,9 @@ with gr.Blocks(theme=get_theme(), title="DeepFakeAI 1.0.0") as ui:
|
|
| 143 |
target_image = gr.Image(type="filepath", label="TARGET IMAGE")
|
| 144 |
image_button = gr.Button("START")
|
| 145 |
clear_button = gr.ClearButton(value="CLEAR")
|
| 146 |
-
|
|
|
|
|
|
|
| 147 |
clear_button.add(image_output)
|
| 148 |
|
| 149 |
image_button.click(
|
|
|
|
| 143 |
target_image = gr.Image(type="filepath", label="TARGET IMAGE")
|
| 144 |
image_button = gr.Button("START")
|
| 145 |
clear_button = gr.ClearButton(value="CLEAR")
|
| 146 |
+
with gr.Row():
|
| 147 |
+
with gr.Column():
|
| 148 |
+
image_output = gr.Image(elem_id="image_output_i", label="OUTPUT")
|
| 149 |
clear_button.add(image_output)
|
| 150 |
|
| 151 |
image_button.click(
|