Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yeq6x
/
Image2Body_gradio
like
114
Running
on
Zero
App
Files
Files
Community
4ae6aa0
Image2Body_gradio
/
app.py
yeq6x
test
ca91cce
16 days ago
raw
Copy download link
history
blame
Safe
239 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
demo:
# title
gr.HTML(
"<h1>Image2Body demo</h1>"
)
# description
gr.HTML(
"<p>Upload an image and select processing options to generate body and sketch images.</p>"
)
demo.launch()