Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
sebffischer committed Sep 5, 2023
1 parent 04b13a9 commit 6061c64
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions book/chapters/chapter11/large-scale_benchmarking.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -378,8 +378,8 @@ We also set the registry's `seed` to `1` and the `packages` to `"mlr3verse"`, wh

```{r, include = FALSE}
#| cache: false
if (dir.exists("experiments")) {
unlink("experiments", recursive = TRUE)
if (dir.exists("~/experiments")) {
unlink("~/experiments", recursive = TRUE)
}
```

Expand All @@ -389,7 +389,7 @@ library(batchtools)
# create registry
reg = makeExperimentRegistry(
file.dir = "./experiments",
file.dir = "~/experiments",
seed = 1,
packages = "mlr3verse"
)
Expand Down Expand Up @@ -587,15 +587,15 @@ Again we start by creating an experiment registry.

```{r, include = FALSE}
#| cache: false
if (dir.exists("experiments-custom")) {
unlink("experiments-custom", recursive = TRUE)
if (dir.exists("~/experiments-custom")) {
unlink("~/experiments-custom", recursive = TRUE)
}
```

```{r large_benchmarking-046, message = FALSE}
#| cache: false
reg = makeExperimentRegistry(
file.dir = "./experiments-custom",
file.dir = "~/experiments-custom",
seed = 1,
packages = "mlr3verse"
)
Expand Down

0 comments on commit 6061c64

Please sign in to comment.