shchuro's picture
Update strings
393f9c5
raw
history blame
1 kB
import streamlit as st
ABOUT_LEADERBOARD = """
## About
[**fev**](https://github.com/autogluon/fev) is a lightweight wrapper around the πŸ€— [datasets](https://huggingface.co/docs/datasets/en/index) library designed to streamline
benchmarking of time series forecasting models.
### πŸ“š Resources
- **Documentation**: [Official docs](https://autogluon.github.io/fev/latest/)
- **Publication**: ["fev-bench: A Realistic Benchmark for Time Series Forecasting"](https://arxiv.org/abs/2509.26468)
- **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/05-add-your-model/) 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)