Skip to content

Releases: SalesforceAIResearch/uni2ts

1.2.0

28 Nov 09:00
fdcb656
Compare
Choose a tag to compare

Version 1.2.0

We are happy to announce the Uni2TS 1.2.0 release. In this version, we provide the code for Moirai-MoE which is our latest model. The model weights can be downloaded from huggingface: small and base.

Besides Moirai-MoE, we also provide more evaluation files to facilite the evaluation for some foundation models (e.g., Chronos, TimesFM, VisionTS). Meanwhile, of course, some enhancements and fixes (e.g., save huggingface checkpoint, training resume) are contained in this version :)

What's Changed in the Codebase

Moirai-MoE

More Evaluation files

Enhancements and Fixes

New Contributors

Full Changelog: 1.1.0...1.2.0

1.1.0

14 Jun 10:19
adf7206
Compare
Choose a tag to compare

New features

Add hparams context manager, allowing for adjusting hparams of MoiraiForecast without reloading the model (#20) by @gorold
Update MoiraiModule to subclass PyTorchModelHubMixin, enabling download stats tracking (#39) by @gorold

Fixes

Fix bug in MultiOutSizeLinear which masked certain outputs, impacting predictions of patch size 8 and 16 in the current pre-trained model (#46) by @gorold
Fix the handling of offset for long dataframes (#48) by @gorold
Fix mask_length argument for MoiraiFinetune (#49) by @gorold

Other Changes

Updated cli.eval script to be more similar with training script (#4) by @gorold
Added a Project Page for Moirai-1.0-R with instructions to reproduce paper results (#17) by @gorold
Update example notebooks with instructions for forecasting with exogenous variables (#35) by @chenghaoliu89