Update face_fix_next.py
Browse files- face_fix_next.py +4 -4
face_fix_next.py
CHANGED
|
@@ -15,7 +15,7 @@ def pre_render() -> bool:
|
|
| 15 |
def render() -> gradio.Blocks:
|
| 16 |
with gradio.Blocks() as layout:
|
| 17 |
with gradio.Row():
|
| 18 |
-
with gradio.Column(scale =
|
| 19 |
with gradio.Blocks():
|
| 20 |
about.render()
|
| 21 |
with gradio.Blocks():
|
|
@@ -48,7 +48,7 @@ def render() -> gradio.Blocks:
|
|
| 48 |
temp_frame.render()
|
| 49 |
with gradio.Blocks():
|
| 50 |
output_options.render()
|
| 51 |
-
with gradio.Column(scale =
|
| 52 |
with gradio.Blocks():
|
| 53 |
source.render()
|
| 54 |
with gradio.Blocks():
|
|
@@ -62,7 +62,7 @@ def render() -> gradio.Blocks:
|
|
| 62 |
instant_runner.render()
|
| 63 |
job_runner.render()
|
| 64 |
job_manager.render()
|
| 65 |
-
with gradio.Column(scale =
|
| 66 |
with gradio.Blocks():
|
| 67 |
preview.render()
|
| 68 |
with gradio.Blocks():
|
|
@@ -114,4 +114,4 @@ def listen() -> None:
|
|
| 114 |
|
| 115 |
|
| 116 |
def run(ui : gradio.Blocks) -> None:
|
| 117 |
-
ui.launch(
|
|
|
|
| 15 |
def render() -> gradio.Blocks:
|
| 16 |
with gradio.Blocks() as layout:
|
| 17 |
with gradio.Row():
|
| 18 |
+
with gradio.Column(scale = 4):
|
| 19 |
with gradio.Blocks():
|
| 20 |
about.render()
|
| 21 |
with gradio.Blocks():
|
|
|
|
| 48 |
temp_frame.render()
|
| 49 |
with gradio.Blocks():
|
| 50 |
output_options.render()
|
| 51 |
+
with gradio.Column(scale = 4):
|
| 52 |
with gradio.Blocks():
|
| 53 |
source.render()
|
| 54 |
with gradio.Blocks():
|
|
|
|
| 62 |
instant_runner.render()
|
| 63 |
job_runner.render()
|
| 64 |
job_manager.render()
|
| 65 |
+
with gradio.Column(scale = 7):
|
| 66 |
with gradio.Blocks():
|
| 67 |
preview.render()
|
| 68 |
with gradio.Blocks():
|
|
|
|
| 114 |
|
| 115 |
|
| 116 |
def run(ui : gradio.Blocks) -> None:
|
| 117 |
+
ui.launch(favicon_path = 'facefusion.ico', inbrowser = True, share=True)
|