Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Tesneem
/
Netflix_Recommendation
like
28
Running
App
Files
Files
Community
36f7a46
Netflix_Recommendation
/
app.py
Tesneem
Create app.py
36f7a46
verified
9 days ago
raw
Copy download link
history
blame
Safe
148 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()