Skip to content

Commit 1ecd707

Browse files
committed
Tiny fixes to harmonize with #231
1 parent f681d9f commit 1ecd707

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

12-tuning-parameters.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ To demonstrate, consider the classification data shown in Figure \@ref(fig:two-c
115115
ggplot(training_set, aes(x = A, y = B, color = Class, pch = Class)) +
116116
geom_point(alpha = 0.7) +
117117
coord_equal() +
118-
labs(x = "Predictor A", y = "Predictor B", color = NULL, pch = NULL) +
118+
labs(x = "Predictor A", y = "Predictor B", color = NULL, pch = NULL) +
119119
scale_color_manual(values = c("#CC6677", "#88CCEE"))
120120
```
121121

13-grid-search.Rmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,7 @@ To illustrate how the parallel processing works, we'll use a case where there ar
498498
#| fig.cap = "Worker processes when parallel processing matches resamples to a specific worker process.",
499499
#| fig.alt = "A diagram of the worker processes when parallel processing matches resamples to a specific worker process. After the preprocess operations are finished, each model fit is executed on the same worker process."
500500
load("extras/parallel_times/resamples_times.RData")
501+
501502
resamples_times %>%
502503
dplyr::rename(operation = label) %>%
503504
ggplot(aes(y = id_alt, x = duration, fill = operation)) +

0 commit comments

Comments
 (0)