Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
CatoEr
/
Profiling-Social-Media-Users
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3aa75e6
Profiling-Social-Media-Users
/
app.py
CatoEr
Update app.py
3aa75e6
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
130 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
name
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()