Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
vlf2444
/
practice
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
vlf2444
commited on
Dec 22, 2023
Commit
2c8c5b6
·
1 Parent(s):
cdd5592
'add'
Browse files
Files changed (1)
hide
show
app.py
+0
-9
app.py
DELETED
Viewed
@@ -1,9 +0,0 @@
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
-
if __name__ == "__main__":
9
-
demo.launch(share = True)