File size: 1,000 Bytes
eb8267f 18a3564 eb8267f 18a3564 eb8267f 393f9c5 eb8267f 393f9c5 eb8267f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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)
|