Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
smartfeed
/
turbo_fm
like
0
Running
on
Zero
App
Files
Files
Community
main
turbo_fm
/
app.py
zhiweili
add app_makeup
bc088da
about 2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
229 Bytes
import
gradio
as
gr
from
app_makeup
import
create_demo
as
create_demo_makeup
with
gr.Blocks(css=
"style.css"
)
as
demo:
with
gr.Tabs():
with
gr.Tab(label=
"Face Makeup"
):
create_demo_makeup()
demo.launch()