Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
opencompass
/
MMBench
like
20
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
f37024d
MMBench
/
app.py
vansin
Init
ee614c2
over 1 year ago
raw
Copy download link
history
blame
Safe
217 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"
)