Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Zery
/
MV_LLaVA_demo
like
1
Runtime error
App
Files
Files
Community
1b2ec58
MV_LLaVA_demo
/
app.py
Zery
Create app.py
56462e2
verified
8 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"
)