Mars-Board / run.py
gremlin97's picture
gremlin97: hf setup
ed881c4
raw
history blame contribute delete
266 Bytes
"""Entry point for the Mars Vision Leaderboard application."""
from app.app import create_interface
def main():
"""Run the Mars Vision Leaderboard application."""
demo = create_interface()
demo.launch()
if __name__ == "__main__":
main()