Skip to content

Commit

Permalink
Merge branch 'develop' into update_dist_interface
Browse files Browse the repository at this point in the history
  • Loading branch information
sbfnk committed Feb 11, 2023
2 parents 6f1ff4b + f6a0334 commit 2efbd48
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions touchstone/script.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ touchstone::benchmark_run(
rt = rt_opts(prior = list(mean = 2, sd = 0.2)),
stan = stan_opts(
cores = 2, samples = 500, chains = 2,
control = list(adapt_delta = 0.95), seed = 5339),
control = list(adapt_delta = 0.95)),
verbose = interactive()
) },
n = 1
n = 5
)

# benchmark readme example with uncertain delays and gt
Expand All @@ -30,10 +30,10 @@ touchstone::benchmark_run(
rt = rt_opts(prior = list(mean = 2, sd = 0.2)),
stan = stan_opts(
cores = 2, samples = 500, chains = 2,
control = list(adapt_delta = 0.95), seed = 5339),
control = list(adapt_delta = 0.95)),
verbose = interactive()
) },
n = 1
n = 5
)

# benchmark readme example without delays
Expand All @@ -45,10 +45,10 @@ touchstone::benchmark_run(
rt = rt_opts(prior = list(mean = 2, sd = 0.2)),
stan = stan_opts(
cores = 2, samples = 500, chains = 2,
control = list(adapt_delta = 0.95), seed = 5339),
control = list(adapt_delta = 0.95)),
verbose = interactive()
) },
n = 1
n = 5
)

# benchmark readme example with a stationary GP
Expand All @@ -61,10 +61,10 @@ touchstone::benchmark_run(
rt = rt_opts(prior = list(mean = 2, sd = 0.2), gp_on = "R0"),
stan = stan_opts(
cores = 2, samples = 500, chains = 2,
control = list(adapt_delta = 0.95), seed = 5339),
control = list(adapt_delta = 0.95)),
verbose = interactive()
) },
n = 1
n = 5
)

# benchmark readme example with a weekly random walk
Expand All @@ -78,10 +78,10 @@ touchstone::benchmark_run(
gp = NULL,
stan = stan_opts(
cores = 2, samples = 500, chains = 2,
control = list(adapt_delta = 0.95), seed = 5339),
control = list(adapt_delta = 0.95)),
verbose = interactive()
) },
n = 1
n = 5
)

# create artifacts used downstream in the GitHub Action
Expand Down

0 comments on commit 2efbd48

Please sign in to comment.