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.3.9002
2
+
Version: 0.0.4
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
+8-7Lines changed: 8 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,22 +1,23 @@
1
-
# parsnip 0.0.3.9001
1
+
# parsnip 0.0.4
2
2
3
3
## New Features
4
4
5
-
* The time elapsed during model fitting is stored in the `$elapsed` slot of the
6
-
parsnip model object, and is printed when the model object is printed.
5
+
* The time elapsed during model fitting is stored in the `$elapsed` slot of the parsnip model object, and is printed when the model object is printed.
7
6
8
7
* Some default parameter ranges were updated for SVM, KNN, and MARS models.
9
8
9
+
* The model `udpate()` methods gained a `parameters` argument for cases when the parameters are contained in a tibble or list.
10
+
11
+
*`fit_control()` is soft-deprecated in favor of `control_parsnip()`.
12
+
10
13
## Fixes
11
-
*[A bug](https://github.com/tidymodels/parsnip/issues/222) was fixed standardizing
12
-
the output column types of `multi_predict` and `predict` for `multinom_reg`.
14
+
15
+
*[A bug](https://github.com/tidymodels/parsnip/issues/222) was fixed standardizing the output column types of `multi_predict` and `predict` for `multinom_reg`.
13
16
14
17
*[A bug](https://github.com/tidymodels/parsnip/issues/208) was fixed related to using data descriptors and `fit_xy()`.
15
18
16
19
* A bug was fixed related to the column names generated by `multi_predict()`. The top-level tibble will always have a column named `.pred` and this list column contains tibbles across sub-models. The column names for these sub-model tibbles will have names consistent with `predict()` (which was previously incorrect). See [43c15db](https://github.com/tidymodels/parsnip/commit/43c15db377ea9ef27483ff209f6bd0e98cb830d2).
17
20
18
-
* The model `udpate()` methods gained a `parameters` argument for cases when the parameters are contained in a tibble or list.
19
-
20
21
*[A bug](https://github.com/tidymodels/parsnip/issues/174) was fixed standardizing the column names of `nnet` class probability predictions.
0 commit comments