Views
No views yet

1from sktime.datasets import load_tecator
2from sktime.forecasting.moirai_forecaster import MOIRAIForecaster
3
4y, _ = load_tecator(return_X_y=True, return_type="pd-multiindex")
5
6moirai_forecaster = MOIRAIForecaster(
7 checkpoint_path=f"sktime/moirai-1.0-R-base",
8 broadcasting=False
9 )
10
11moirai_forecaster.fit(y)
12forecast = moirai_forecaster.predict(fh=range(1, 16))| # Model | # Parameters |
|---|---|
| Moirai-1.0-R-Small | 14m |
| Moirai-1.0-R-Base | 91m |
| Moirai-1.0-R-Large | 311m |
1@article{woo2024unified,
2 title={Unified Training of Universal Time Series Forecasting Transformers},
3 author={Woo, Gerald and Liu, Chenghao and Kumar, Akshat and Xiong, Caiming and Savarese, Silvio and Sahoo, Doyen},
4 journal={arXiv preprint arXiv:2402.02592},
5 year={2024}
6}