Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
turtlegraphics
/
image-recognition
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
turtlegraphics
commited on
Mar 25
Commit
804d2ec
·
verified
·
1 Parent(s):
07010e2
Hello demo from NLP course
Browse files
Files changed (1)
hide
show
app.py
+11
-0
app.py
ADDED
Viewed
@@ -0,0 +1,11 @@
1
+
#
2
+
# gradio demo
3
+
#
4
+
import gradio as gr
5
+
6
+
def greet(name):
7
+
return "Hello " + name
8
+
9
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
10
+
11
+
demo.launch()