Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
opencompass
/
medbench_llm_leaderboard
like
4
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
16b4657
medbench_llm_leaderboard
/
app.py
34siqi
Upload 2 files
aa1fbb5
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
229 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"
)