Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hohonu-vicml
/
DirectedDiffusion
like
11
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
65f6c54
DirectedDiffusion
/
app.py
eggarsway
add DD
b0369c2
about 2 years ago
raw
Copy download link
history
blame
Safe
216 Bytes
import
DirectedDiffusion
import
gradio
as
gr
def
greet
(
name
):
text =
str
(DirectedDiffusion)
return
"Hello "
+ name +
"!!"
+ text
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()