Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Zery
/
Alpha-CLIP_LLaVA-1.5
like
11
Running
App
Files
Files
Community
1
e9f84ce
Alpha-CLIP_LLaVA-1.5
/
app.py
Zery
finish
e9f84ce
11 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"
)