Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
snebae
/
catdogclassifier
like
0
License:
apache-2.0
Model card
Files
Files and versions
xet
Community
jph00
commited on
Jul 4, 2024
Commit
991987d
·
1 Parent(s):
cdcb025
add application file
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import gradio as gr
2
+
3
+
def greet(name):
4
+
return "Hello " + name + "!"
5
+
6
+
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
7
+
8
+
demo.launch(share=True)