Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
yqcyqc/Fruit-classification
DHEIVER
/
Fruit-classification
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
yqcyqc
commited on
Mar 25
Commit
fbafe35
·
verified
·
1 Parent(s):
f20747c
Upload test.py
Browse files
Files changed (1)
hide
show
test.py
+12
-0
test.py
ADDED
Viewed
@@ -0,0 +1,12 @@
1
+
import gradio as gr
2
+
def greet(name):
3
+
return "Hello " + name + "!"
4
+
5
+
6
+
demo = gr.Interface(
7
+
fn=greet,
8
+
inputs="textbox",
9
+
outputs="textbox"
10
+
)
11
+
12
+
demo.launch(share=True)