File size: 220 Bytes
a1553b6
 
fc1393b
a1553b6
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr

from app_tensorrt 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()