Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aadd77551
/
AI-detect
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
AI-detect
/
app.py
aadd77551
Update app.py
3c6b3dc
verified
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
149 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"image"
, outputs=
"text"
)
demo.launch()