image2image / app.py
zhiweili
chnage to adapter
963fadc
raw
history blame
256 Bytes
import gradio as gr
from app_haircolor_inpaint_adapter_15 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()