Skip to content

Commit

Permalink
LOO cores for win CI
Browse files Browse the repository at this point in the history
  • Loading branch information
andrjohns committed Jun 5, 2024
1 parent a51659d commit c1ce446
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions vignettes/continuous.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,10 @@ in the __loo__ package:

```{r, continuous-kidiq-loo}
# Compare them with loo
loo1 <- loo(post1, cores = 2)
loo2 <- loo(post2, cores = 2)
loo3 <- loo(post3, cores = 2)
loo4 <- loo(post4, cores = 2)
loo1 <- loo(post1, cores = 1)
loo2 <- loo(post2, cores = 1)
loo3 <- loo(post3, cores = 1)
loo4 <- loo(post4, cores = 1)
(comp <- loo_compare(loo1, loo2, loo3, loo4))
```

Expand Down
4 changes: 2 additions & 2 deletions vignettes/count.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@ When we comparing the models using the __loo__ package we also see a clear
preference for the negative binomial model

```{r, count-roaches-loo}
loo1 <- loo(stan_glm1, cores = 2)
loo2 <- loo(stan_glm2, cores = 2)
loo1 <- loo(stan_glm1, cores = 1)
loo2 <- loo(stan_glm2, cores = 1)
loo_compare(loo1, loo2)
```

Expand Down

0 comments on commit c1ce446

Please sign in to comment.