zhiweili
commited on
Commit
·
9a3b4c6
1
Parent(s):
5fbf40f
just test makeup
Browse files
app.py
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
from app_base import create_demo as create_demo_face
|
4 |
from app_makeup import create_demo as create_demo_makeup
|
5 |
|
6 |
with gr.Blocks(css="style.css") as demo:
|
7 |
with gr.Tabs():
|
8 |
-
with gr.Tab(label="Face"):
|
9 |
-
|
10 |
with gr.Tab(label="Makeup"):
|
11 |
create_demo_makeup()
|
12 |
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
# from app_base import create_demo as create_demo_face
|
4 |
from app_makeup import create_demo as create_demo_makeup
|
5 |
|
6 |
with gr.Blocks(css="style.css") as demo:
|
7 |
with gr.Tabs():
|
8 |
+
# with gr.Tab(label="Face"):
|
9 |
+
# create_demo_face()
|
10 |
with gr.Tab(label="Makeup"):
|
11 |
create_demo_makeup()
|
12 |
|