Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jeang
/
test
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
Jean Garcia-Gathright
commited on
Jan 30, 2022
Commit
db0835e
·
1 Parent(s):
5a58ca8
initial commit
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
import tensorflow
3
+
import transformers
4
+
5
+
def greet(name):
6
+
return "Hello " + name + "!!"
7
+
8
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+
iface.launch()