MLRC_Bench / app.py
Armeddinosaur's picture
Adding MLRC Bench
ed2eb44
raw
history blame
216 Bytes
"""
Entry point for the Model Capability Leaderboard application.
This file serves as a simple wrapper for the main application code in src/app.py.
"""
from src.app import main
if __name__ == "__main__":
main()