0.4.4 - 2019-11-11¶
This release was mainly made to provide access to wheels <https://pythonwheels.com/>_ for Windows and MacOS.
ensemble¶
- Added
ensemble.AdaBoostClassifier.
linear_model¶
- Added a
clip_gradientparameter tolinear_model.LinearRegressionandlinear_model.LogisticRegression. Gradient clipping was already implemented, but the maximum absolute value can now be set by the user. - The
intercept_lrparameter oflinear_model.LinearRegressionandlinear_model.LogisticRegressioncan now be passed an instance ofoptim.schedulers.Scheduleras well as afloat.
metrics¶
- Fixed
metrics.SMAPE, the implementation was missing a multiplication by 2.
optim¶
- Added
optim.schedulers.Optimalproduces results that are identical tosklearn.linear_model.SGDRegressorandsklearn.linear_model.SGDClassifierwhen setting theirlearning_rateparameter to'optimal'.
time_series¶
- Added
time_series.SNARIMAX, a generic model which encompasses well-known time series models such as ARIMA and NARX.