Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
amaye15
/
segment-anything-2-point-prompt-app
like
8
Running
App
Files
Files
Community
amaye15
commited on
Aug 17
Commit
f3004ad
•
1 Parent(s):
edb68dc
app added
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
4
+
def greet(name):
5
+
return "Hello " + name + "!!"
6
+
7
+
8
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+
demo.launch()