fev-leaderboard / fev-leaderboard-app.py
shchuro's picture
Add tables
18a3564
raw
history blame contribute delete
226 Bytes
import streamlit as st
pages = [
st.Page("pages/fev_bench.py", title="fev-bench", icon=":material/trophy:"),
st.Page("pages/about.py", title="About", icon=":material/info:"),
]
page = st.navigation(pages)
page.run()