image2image / app.py
zhiweili
add app_haircolor_pix2pix_sdxl
518257b
raw
history blame
250 Bytes
import gradio as gr
from app_haircolor_pix2pix_sdxl import create_demo as create_demo_haircolor
with gr.Blocks(css="style.css") as demo:
with gr.Tabs():
with gr.Tab(label="Hair Color"):
create_demo_haircolor()
demo.launch()