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
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,28 @@
1
1
# tune (development version)
2
2
3
+
## Changes to `tune_grid()`.
4
+
5
+
* A major rewrite and refactor of the underlying code that runs `tune_grid()` was made.
6
+
7
+
* The pattern of `.config` values has changed from `Preprocessor{num}_Model{num}` to `pre{num}_mod{num}_post{num}`.
8
+
3
9
* The package will now log a backtrace for errors and warnings that occur during tuning. When a tuning process encounters issues, see the new `trace` column in the `collect_notes(.Last.tune.result)` output to find precisely where the error occurred (#873).
4
10
5
11
* Post-processing: new `schedule_grid()` for scheduling a grid including post-processing (#988).
6
12
13
+
## Other Changes
14
+
15
+
* Introduced support for parallel processing with mirai in addition to the currently supported framework future. See `?parallelism` to learn more (#1028).
16
+
17
+
* Sequential and parallel processing all use the same L'Ecuyer-CMRG seeds (conditional on `parallel_over`) (#1033).
18
+
19
+
*`int_pctl()` now includes an option (`keep_replicates`) to retain the individual bootstrap estimates. It also processes the resamples more efficiently (#1000).
20
+
21
+
## Breaking Changes
22
+
23
+
* The `foreach` package is no longer supported. Instead, use the future or mirai packages.
24
+
* The parallel backend(s) and the methods of constructing seeds for workers have changed. There will be a lack of reproducibility between objects created in this version of tune and previous versions.
25
+
7
26
# tune 1.3.0
8
27
9
28
* The package will now warn when parallel processing has been enabled with foreach but not with future. See [`?parallelism`](https://tune.tidymodels.org/dev/reference/parallelism.html) to learn more about transitioning your code to future (#878, #866). The next version of tune will move to a pure future implementation.
0 commit comments