Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
mankalmadhu
/
pettrainer
like
0
License:
apache-2.0
Model card
Files
Files and versions
xet
Community
mankalmadhu
commited on
Aug 13, 2022
Commit
ddc42e2
·
1 Parent(s):
bbb077c
Add application file
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import gradio as gr
2
+
3
+
def greet(name):
4
+
return f"Hello {name} !!"
5
+
6
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")