image2image / app.py
zhiweili
change app
2a3a686
raw
history blame
236 Bytes
import gradio as gr
from app_text2img 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()