Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
P3ngLiu
/
SAM3_VLM-FO1
like
32
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
P3ngLiu
commited on
23 days ago
Commit
6f3d38f
Β·
verified
Β·
1 Parent(s):
7fd363a
Create app.py
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
+
import spaces
3
+
4
+
@spaces.GPU
5
+
def greet(name):
6
+
return "Hello " + name + "!!"
7
+
8
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+
demo.launch()