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...
hwberry2
commited on
Mar 15, 2023
Commit
fea1e17
·
1 Parent(s):
ddfcbfd
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+2
-0
app.py
CHANGED
Viewed
@@ -1,4 +1,6 @@
1
import gradio as gr
2
3
def greet(name):
4
return f"Hello, {name}!"
1
import gradio as gr
2
+
import tensorflow as tf
3
+
print("TensorFlow version:", tf.__version__)
4
5
def greet(name):
6
return f"Hello, {name}!"