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_gradient
parameter tolinear_model.LinearRegression
andlinear_model.LogisticRegression
. Gradient clipping was already implemented, but the maximum absolute value can now be set by the user. - The
intercept_lr
parameter oflinear_model.LinearRegression
andlinear_model.LogisticRegression
can now be passed an instance ofoptim.schedulers.Scheduler
as well as afloat
.
metrics¶
- Fixed
metrics.SMAPE
, the implementation was missing a multiplication by 2.
optim¶
- Added
optim.schedulers.Optimal
produces results that are identical tosklearn.linear_model.SGDRegressor
andsklearn.linear_model.SGDClassifier
when setting theirlearning_rate
parameter to'optimal'
.
time_series¶
- Added
time_series.SNARIMAX
, a generic model which encompasses well-known time series models such as ARIMA and NARX.