Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hwberry2
/
testingGround3
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
9e8bd57
testingGround3
/
app.py
hwberry2
changed output in the app.py file
9e8bd57
over 2 years ago
raw
Copy download link
history
blame
188 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello there "
+ name +
"! You Look Marvelous!!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch(share=
"true"
)