Skip to content

v1.1.1

Latest
Compare
Choose a tag to compare
@Innixma Innixma released this 14 Jun 20:28
· 9 commits to master since this release
65d1430

Version 1.1.1

We're happy to announce the AutoGluon 1.1.1 release.

AutoGluon 1.1.1 contains bug fixes and logging improvements for Tabular, TimeSeries, and Multimodal modules, as well as support for PyTorch 2.2 and 2.3.

Join the community:
Get the latest updates: Twitter

This release supports Python versions 3.8, 3.9, 3.10, and 3.11. Loading models trained on older versions of AutoGluon is not supported. Please re-train models using AutoGluon 1.1.1.

This release contains 52 commits from 11 contributors!

General

Tabular

Note: Trying to load a TabularPredictor with a FastAI model trained on a previous AutoGluon release will raise an exception when calling predict due to a fix in the model-interals.pkl path. Please ensure matching versions.

  • Fix deadlock when num_gpus>0 and dynamic_stacking is enabled. @Innixma (#4208)
  • Improve decision threshold calibration. @Innixma (#4136, #4137)
  • Improve dynamic stacking logging. @Innixma (#4208, #4262)
  • Fix regression metrics (other than RMSE and MSE) being calculated incorrectly for LightGBM early stopping. @Innixma (#4174)
  • Fix custom multiclass metrics being calculated incorrectly for LightGBM early stopping. @Innixma (#4250)
  • Fix HPO crashing with NN_TORCH and FASTAI models. @Innixma (#4232)
  • Improve NN_TORCH runtime estimate. @Innixma (#4247)
  • Add infer throughput logging. @Innixma (#4200)
  • Disable sklearnex for linear models due to observed performance degradation. @Innixma (#4223)
  • Improve sklearnex logging verbosity in Kaggle. @Innixma (#4216)
  • Rename cached version file to version.txt. @Innixma (#4203)
  • Add refit_full support for Linear models. @Innixma (#4222)
  • Add AsTypeFeatureGenerator detailed exception logging. @Innixma (#4251, #4252)

TimeSeries

  • Ensure prediction_length is stored as an integer. @shchur (#4160)
  • Fix tabular model preprocessing failure edge-case. @shchur (#4175)
  • Fix loading of Tabular models failure if predictor moved to a different directory. @shchur (#4171)
  • Fix cached predictions error when predictor saved on-top of an existing predictor. @shchur (#4202)
  • Use AutoGluon forks of Chronos models. @shchur (#4198)
  • Fix off-by-one bug in Chronos inference. @canerturkmen (#4205)
  • Rename cached version file to version.txt. @Innixma (#4203)
  • Use correct target and quantile_levels in fallback model for MLForecast. @shchur (#4230)

Multimodal

Docs and CI

Contributors

Full Contributor List (ordered by # of commits):

@Innixma @shchur @Harry-zzh @suzhoum @zhiqiangdon @lovvge @rey-allan @prateekdesai04 @canerturkmen @FANGAreNotGnu @tonyhoo

New Contributors