Changelog
Source:NEWS.md
rules 1.0.0
CRAN release: 2022-06-23
tidy()
method for Cubist models now has an option for how many committees to tidy.Added a
tidy()
method for C5.0 rule-based models.The
mtry_prop
parameter was moved to the dials package and is now re-exported here for backward compatibility.A bug was fixed related to
multi_predict()
with C5.0 rule-based models (#49).The
mtry
argument is now mapped tocolsample_bynode
rather thancolsample_bytree
. This is consistent with parsnip’s interface toxgboost
as of parsnip 0.1.6.colsample_bytree
can still be optimized by passing it in as an engine argument toset_engine()
(#60).Introduced support for early stopping in
rule_fit()
via thestop_iter
argument. Seeparsnip::details_rule_fit_xrf
. Note that this is a main argument torule_fit()
requiring parsnip 1.0.0.
rules 0.2.0
CRAN release: 2022-03-14
- Model definition functions (e.g.
cubist_rules()
) were moved to the parsnip package.
rules 0.1.1
CRAN release: 2021-01-16
Added
tidy()
methods for cubist and RuleFit models to get back the rules and model coefficients.Clean up
tunable()
methods that define the default parameter ranges for the tuning parameters.Changes to test for cases when CRAN cannot get
xgboost
to work on their Solaris configuration.Case weights were enabled for [C5_rules()] and [cubist_rules()].
rules 0.1.0
CRAN release: 2020-10-28
- The default encoding methods were changed such that
parsnip
will respect the encoding that the underlying model uses.