Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
CatoEr
/
Profiling-Social-Media-Users
like
0
Running
App
Files
Files
Community
3aa75e6
Profiling-Social-Media-Users
/
app.py
CatoEr
Update app.py
3aa75e6
verified
6 months 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()