Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tonyassi
/
IP-Adapter-Playground
like
23
Running
on
Zero
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d8ca99b
IP-Adapter-Playground
/
app.py
tonyassi
Create app.py
d8ca99b
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
235 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
demo:
with
gr.Tab(
"Text-to-Image"
):
gr.Image(
"lion.jpg"
)
gr.Button(
"New Lion"
)
with
gr.Tab(
"Image-to-Image"
):
gr.Image(
"tiger.jpg"
)
gr.Button(
"New Tiger"
)