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
ddfcbfd
·
1 Parent(s):
e80d282
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-1
app.py
CHANGED
Viewed
@@ -1,2 +1,8 @@
1
-
print("hello
world")
2
1
+
import
gradio as gr
2
+
3
+
def greet(name):
4
+
return f"Hello, {name}!"
5
+
6
+
iface = gr.Interface(greet, "text", "text")
7
+
iface.launch()
8