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...
fea1e17
TensorFlowProject
/
app.py
hwberry2
Update app.py
fea1e17
almost 2 years ago
raw
Copy download link
history
blame
Safe
197 Bytes
import
gradio
as
gr
import
tensorflow
as
tf
print
(
"TensorFlow version:"
, tf.__version__)
def
greet
(
name
):
return
f"Hello,
{name}
!"
iface = gr.Interface(greet,
"text"
,
"text"
)
iface.launch()