Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Zery
/
Alpha_CLIP_ImgVar
like
13
Runtime error
App
Files
Files
Community
f82dd29
Alpha_CLIP_ImgVar
/
app.py
Zery
Add application file
c8dd6ee
12 months ago
raw
Copy download link
history
blame
Safe
216 Bytes
from
flask
import
Flask, render_template
app = Flask(__name__)
@app.route(
"/"
)
def
index
():
return
render_template(
"index.html"
)
if
__name__ ==
"__main__"
:
app.run(debug=
False
, port=
7860
, host=
"0.0.0.0"
)