image_hd / app.py
zhiweili
add app_upscale
3f85c56
raw
history blame
228 Bytes
import gradio as gr
from app_upscale import create_demo as create_demo_enhance
with gr.Blocks(css="style.css") as demo:
with gr.Tabs():
with gr.Tab(label="Enhance"):
create_demo_enhance()
demo.launch()