M3-Bench / app.py
FredericFan's picture
v1
bf70dba
raw
history blame contribute delete
303 Bytes
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
M3-Bench Leaderboard – HF Space entry point
"""
from __future__ import annotations
from create_leaderboard import demo
if __name__ == "__main__":
demo.launch(
server_name="0.0.0.0",
server_port=7860,
share=False,
)