Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hwberry2
/
TensorFlowProject
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ddfcbfd
TensorFlowProject
/
app.py
hwberry2
Update app.py
ddfcbfd
almost 2 years ago
raw
Copy download link
history
blame
Safe
128 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello,
{name}
!"
iface = gr.Interface(greet,
"text"
,
"text"
)
iface.launch()