Skip to content

Commit

Permalink
hotfix: benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
sbfnk committed Feb 7, 2025
1 parent 04231d2 commit f7e95cf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions touchstone/script.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ touchstone::benchmark_run(
data = reported_cases,
generation_time = generation_time_opts(fixed_generation_time),
delays = delay_opts(fixed_delays),
rt = rt_opts(prior = list(mean = 2, sd = 0.2)),
rt = rt_opts(Normal = list(mean = 2, sd = 0.2)),
stan = stan_opts(
cores = 2, samples = 500, chains = 2,
control = list(adapt_delta = 0.95)),
Expand All @@ -27,7 +27,7 @@ touchstone::benchmark_run(
data = reported_cases,
generation_time = generation_time_opts(example_generation_time),
delays = delays,
rt = rt_opts(prior = list(mean = 2, sd = 0.2)),
rt = rt_opts(Normal = list(mean = 2, sd = 0.2)),
stan = stan_opts(
cores = 2, samples = 500, chains = 2,
control = list(adapt_delta = 0.95)),
Expand All @@ -42,7 +42,7 @@ touchstone::benchmark_run(
no_delays = { epinow(
data = reported_cases,
generation_time = generation_time_opts(fixed_generation_time),
rt = rt_opts(prior = list(mean = 2, sd = 0.2)),
rt = rt_opts(Normal = list(mean = 2, sd = 0.2)),
stan = stan_opts(
cores = 2, samples = 500, chains = 2,
control = list(adapt_delta = 0.95)),
Expand All @@ -58,7 +58,7 @@ touchstone::benchmark_run(
data = reported_cases,
generation_time = generation_time_opts(fixed_generation_time),
delays = delay_opts(fixed_delays),
rt = rt_opts(prior = list(mean = 2, sd = 0.2), gp_on = "R0"),
rt = rt_opts(prior = Normal(mean = 2, sd = 0.2), gp_on = "R0"),
stan = stan_opts(
cores = 2, samples = 500, chains = 2,
control = list(adapt_delta = 0.95)),
Expand All @@ -74,7 +74,7 @@ touchstone::benchmark_run(
data = reported_cases,
generation_time = generation_time_opts(fixed_generation_time),
delays = delay_opts(fixed_delays),
rt = rt_opts(prior = list(mean = 2, sd = 0.2), rw = 7),
rt = rt_opts(prior = Normal(mean = 2, sd = 0.2), rw = 7),
gp = NULL,
stan = stan_opts(
cores = 2, samples = 500, chains = 2,
Expand Down

0 comments on commit f7e95cf

Please sign in to comment.