Skip to content

Releases: awslabs/gluonts

0.11.7

03 Jan 08:51
d9d2fc7
Compare
Choose a tag to compare

Backporting fixes:

  • Make serde.dataclass always kw-only. (#2428 by @jaheba)
  • Fix serde.dataclass inheritance handling. (#2512 by @jaheba)
  • Fix QuantileForecast.quantile in case only mean is stored (#2513 by @lostella)
  • Remove mypy plugin for dataclass. (#2514 by @jaheba)
  • GH Actions: Use authenticated requests for just. (#2522 by @jaheba)
  • Fix aggregate_valid for non-numerical columns (#2526 by @lostella)

0.11.6

20 Dec 09:08
65dc5be
Compare
Choose a tag to compare

Backporting fixes:

0.11.5

13 Dec 13:29
d38ee93
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.11.4...v0.11.5

0.11.4

05 Dec 13:55
332b3e4
Compare
Choose a tag to compare

Backports:

  • Fix pandas issue with inferring start of X frequency. (#2462 by @jaheba)

0.11.3

24 Nov 11:28
4abf07a
Compare
Choose a tag to compare

Backporting fixes:

0.11.3 rc1

24 Nov 11:18
4abf07a
Compare
Choose a tag to compare
0.11.3 rc1 Pre-release
Pre-release

Backporting fixes:

0.11.2

21 Nov 10:44
49e55ce
Compare
Choose a tag to compare

Backporting fixes:

0.11.1

28 Oct 18:19
ca6e4f2
Compare
Choose a tag to compare

Backporting fixes:

0.10.8

28 Oct 17:57
be1a39e
Compare
Choose a tag to compare

Backporting fixes:

0.11.0

10 Oct 12:18
a5ba84a
Compare
Choose a tag to compare

Overview

Incremental training

Estimators are now re-trainable on new data, using the train_from method. This accepts a previously trained model (predictor), and new data to train on, and can greatly reduce training time if combined with early stopping. The feature is integrated with gluonts.shell-based SageMaker containers, and can be used by specifying the additional model channel to point to the output of a previous training job. More info in #2249.

New models

Two models are added in this release:

  • DeepVARHierarchicalEstimator, a hierarchical extension to DeepVAREstimator; learn more about how to use this in this tutorial.
  • DeepNPTSEstimator, a global extension to NPTS, where sampling probabilities are learned from data; learn more on how to use this estimator here.

Deprecated import paths and options

This release moves MXNet-based models from gluonts.model to gluonts.mx.model; the old import paths continue working in this release, but are deprecated and will be removed in the next release. For example, now the MXNet-based DeepAREstimator should be imported from gluonts.mx (or gluonts.mx.model.deepar).

We also removed deprecated options for learning rate reduction in the gluonts.mx.Trainer class: these can now be controlled via the LearningRateReduction callback.

Dataset splitting functionality (experimental)

We updated the functionality to split time series datasets (along the time axis) for training/validation/test purposes. Now this functionality can be easily accessed via the split function (from gluonts.dataset.split import split); learn more about this here.

This feature is experimental and subject to future changes.

Changelog

Breaking changes

New features / major improvements

Bug fixes / minor improvements

Documentation

Test / setup changes