Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sutmo
/
sam2_demo_test_final
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
sutmo
commited on
Mar 15
Commit
da61a4f
·
verified
·
1 Parent(s):
99cec1f
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
from flask import Flask
2
+
3
+
app = Flask(__name__)
4
+
5
+
@app.route("/")
6
+
def home():
7
+
return "SAM 2 is running on Hugging Face Spaces!"
8
+
9
+
if __name__ == "__main__":
10
+
app.run(host="0.0.0.0", port=7860)