File size: 349 Bytes
4743900 9a3b4c6 5fbf40f 4743900 9a3b4c6 5fbf40f 4743900 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import gradio as gr
# from app_base import create_demo as create_demo_face
from app_makeup import create_demo as create_demo_makeup
with gr.Blocks(css="style.css") as demo:
with gr.Tabs():
# with gr.Tab(label="Face"):
# create_demo_face()
with gr.Tab(label="Makeup"):
create_demo_makeup()
demo.launch() |