Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rafat0421
/
titanic
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
titanic
/
app.py
rafat0421
test
247f73c
about 3 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
195 Bytes
import
gradio
as
gr
import
hopsworks
project = hopsworks.login()
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()