You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEWS.md
+15-3Lines changed: 15 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,33 @@
1
1
# parsnip (development version)
2
2
3
-
*`generics::required_pkgs()` was extended for `parsnip` objects.
4
-
5
-
* The `liquidSVM` engine for `svm_rbf()` was deprecated due to that package's removal from CRAN. (#425)
3
+
## Model Specification Changes
6
4
7
5
* A new linear SVM model `svm_linear()` is now available with the `LiblineaR` engine (#424) and the `kernlab` engine (#438), and the `LiblineaR` engine is available for `logistic_reg()` as well (#429). These models can use sparse matrices via `fit_xy()` (#447) and have a `tidy` method (#474).
8
6
7
+
* For models with `glmnet` engines:
8
+
9
+
- A single value is required for `penalty` (either a single numeric value or a value of `tune()`) (#481).
10
+
- A special argument called `path_values` can be used to set the `lambda` path as a specific set of numbers (independent of the value of `penalty`). A pure ridge regression models (i.e., `mixture = 1`) will generate incorrect values if the path does not include zero. See issue #431 for discussion (#486).
11
+
12
+
* The `liquidSVM` engine for `svm_rbf()` was deprecated due to that package's removal from CRAN. (#425)
13
+
9
14
* New model specification `survival_reg()` for the new mode `"censored regression"` (#444). `surv_reg()` is now soft-deprecated (#448).
10
15
11
16
* New model specification `proportional_hazards()` for the `"censored regression"` mode (#451).
12
17
18
+
## Other Changes
19
+
13
20
* Re-licensed package from GPL-2 to MIT. See [consent from copyright holders here](https://github.com/tidymodels/parsnip/issues/462).
14
21
15
22
*`set_mode()` now checks if `mode` is compatible with the model class, similar to `new_model_spec()` (@jtlandis, #467).
16
23
17
24
* Re-organized model documentation for `update` methods (#479).
18
25
26
+
27
+
28
+
*`generics::required_pkgs()` was extended for `parsnip` objects.
0 commit comments