Releases: tidymodels/themis
Releases · tidymodels/themis
themis 1.0.2
Improvements
- Many internal changes to improve consistency and slight speed increases.
themis 1.0.1
Improvements
-
Fixed bug where some upsampling functions would error if no upsampling was needed. (#119)
-
Steps with tunable arguments now have those arguments listed in the documentation.
themis 1.0.0
- Added case weights support for
step_upsample()
andstep_downsample()
themis 0.2.2
tomek()
has been added, rewritten to apply to multiple classes, removing the need for the unbalanced package, which has been removed as a dependency.
themis 0.2.1
- A bug was fixed in
step_downsample()
andstep_upsample()
that made the steps unable to be tuned. (#90)
themis 0.2.0
New steps
step_smotenc()
have been added to implement SMOTENC which can handle categorical as well as numerical values. Thanks to @RobertGregg (#82)
Improvements and Other Changes
- export
nearmiss()
functions to users. - Update examples to no longer use
iris
orokc
data sets. - All recipe steps now officially support empty selections to be more aligned with dplyr and other packages that use tidyselect (#55)
Bug fixes
themis 0.1.4
- export
smote()
,adasyn()
, andbsmote()
functions to users.
themis 0.1.3
- Steps that use nearest neighbors gives cleaner errors.
themis 0.1.2
themis 0.1.1
step_smote()
now work regardless of order of classes. Thanks to @sebastien-foulle for point it out #14.