Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
mikeee
/
emb384
like
1
Sleeping
App
Files
Files
Community
e7f1e5f
emb384
/
app.py
ffreemt
Add app.py
816c0f6
8 months ago
raw
Copy download link
history
blame
Safe
212 Bytes
import
gradio
def
my_inference_function
(
name
):
return
"Hello "
+ name +
"!"
gradio_interface = gradio.Interface(
fn = my_inference_function,
inputs =
"text"
,
outputs =
"text"
)
gradio_interface.launch()