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: DESCRIPTION
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
Package: parsnip
2
-
Version: 0.0.2.9000
2
+
Version: 0.0.3
3
3
Title: A Common API to Modeling and Analysis Functions
4
4
Description: A common interface is provided to allow users to specify a model without having to remember the different argument names across different functions or computational engines (e.g. 'R', 'Spark', 'Stan', etc).
Copy file name to clipboardExpand all lines: NEWS.md
+13-4Lines changed: 13 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,26 @@
1
-
# parsnip 0.0.2.9000
1
+
# parsnip 0.0.3
2
+
3
+
Unplanned release based on CRAN requirements for Solaris.
2
4
3
5
## Breaking Changes
4
6
5
-
* The method that `parsnip` stores the model information has changed. Any custom models from previous versions will need to use the new method for registering models. The methods are detailed in `?get_model_env()` and the [package vignette for adding models](https://tidymodels.github.io/parsnip/articles/articles/Scratch.html).
6
-
* The mode need to be declared for models that can be used for more than one mode prior to fitting and/or translation).
7
+
* The method that `parsnip` stores the model information has changed. Any custom models from previous versions will need to use the new method for registering models. The methods are detailed in `?get_model_env` and the [package vignette for adding models](https://tidymodels.github.io/parsnip/articles/articles/Scratch.html).
8
+
9
+
* The mode needs to be declared for models that can be used for more than one mode prior to fitting and/or translation.
10
+
7
11
* For `surv_reg()`, the engine that uses the `survival` package is now called `survival` instead of `survreg`.
8
12
13
+
* For `glmnet` models, the full regularization path is always fit regardless of the value given to `penalty`. Previously, the model was fit with passing `penalty` to `glmnet`'s `lambda` argument and the model could only make predictions at those specific values. [(#195)](https://github.com/tidymodels/parsnip/issues/195)
14
+
9
15
## New Features
10
16
11
17
*`add_rowindex()` can create a column called `.row` to a data frame.
12
18
13
19
* If a computational engine is not explicitly set, a default will be used. Each default is documented on the corresponding model page. A warning is issued at fit time unless verbosity is zero.
14
-
*`nearest_neighbor` gained a `multi_predict` method. The `multi_predict()` documentation is a little better organized.
20
+
21
+
*`nearest_neighbor()` gained a `multi_predict` method. The `multi_predict()` documentation is a little better organized.
22
+
23
+
* A suite of internal functions were added to help with upcoming model tuning features.
0 commit comments