Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
smartfeed
/
image_fe
like
0
Running
on
Zero
App
Files
Files
Community
bd5747f
image_fe
/
app.py
zhiweili
inital
4743900
7 days ago
raw
Copy download link
history
blame
Safe
216 Bytes
import
gradio
as
gr
from
app_base
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()