fev-bench / pages /about.py
shchuro's picture
Add new leaderboard
eb8267f
raw
history blame
840 Bytes
import streamlit as st
ABOUT_LEADERBOARD = """
## About `fev`
**fev** is a lightweight wrapper around the πŸ€— [datasets](https://huggingface.co/docs/datasets/en/index) library designed to streamline
time series forecasting model benchmarking.
### πŸ“š Resources
- **Documentation**: [Official docs](https://autogluon.github.io/fev/latest/)
- **Source Code**: [GitHub repository](https://github.com/autogluon/fev)
- **Issues & Questions**: [GitHub Issues](https://github.com/autogluon/fev/issues)
### πŸš€ Submit Your Model
Ready to add your model to the leaderboard? Follow this [tutorial](https://autogluon.github.io/fev/latest/tutorials/04-models/) to evaluate your model with fev and contribute your results.
"""
st.set_page_config(layout="wide", page_title="About FEV", page_icon=":material/info:")
st.markdown(ABOUT_LEADERBOARD)