image2image / app.py
zhiweili
init commit
8ae56d4
raw
history blame
219 Bytes
import gradio as gr
from app_img2img import create_demo as create_demo_face
with gr.Blocks(css="style.css") as demo:
with gr.Tabs():
with gr.Tab(label="Face"):
create_demo_face()
demo.launch()