Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
xinchen9
/
SD_Offense
like
0
License:
apache-2.0
Model card
Files
Files and versions
xet
Community
e73baef
SD_Offense
/
app.py
xinchen9
Upload folder using huggingface_hub
e73baef
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
147 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()