# see `help(run_script, package = 'touchstone')` on how to run this
# interactively
# installs branches to benchmark
touchstone::branch_install()
# run benchmarks
touchstone::benchmark_run(
preprocessing = { source("touchstone/preprocessing.R") },
n = 3
)
touchstone::benchmark_run(
expr_before_benchmark = { source("touchstone/threaded-setup.R") },
simple_model = { epinowcast(
data = pobs,
expectation = enw_expectation(~1, data = pobs),
fit = enw_fit_opts(
save_warmup = FALSE, pp = FALSE,
chains = 2, iter_warmup = 500, iter_sampling = 250,
threads_per_chain = 2, parallel_chains = 1
),
obs = enw_obs(family = "poisson", data = pobs),
model = model
) },
n = 3
)
touchstone::benchmark_run(
expr_before_benchmark = { source("touchstone/setup.R") },
simple_negbin_model_with_pp = { epinowcast(
data = pobs,
expectation = enw_expectation(~1, data = pobs),
fit = enw_fit_opts(
save_warmup = FALSE, pp = TRUE,
chains = 2, iter_warmup = 500, iter_sampling = 500,
parallel_chains = 2
),
obs = enw_obs(family = "negbin", data = pobs),
model = model
) },
n = 3
)
touchstone::benchmark_run(
expr_before_benchmark = { source("touchstone/setup.R") },
day_of_week_model = { epinowcast(
data = pobs,
report = enw_report(~(1 | day_of_week), data = pobs),
fit = enw_fit_opts(
save_warmup = FALSE, pp = FALSE,
chains = 2, iter_warmup = 500, iter_sampling = 500,
parallel_chains = 2
),
obs = enw_obs(family = "poisson", data = pobs),
model = model
) },
n = 3
)
touchstone::benchmark_run(
expr_before_benchmark = { source("touchstone/missing-setup.R") },
missingness_model = { epinowcast(
data = pobs,
missing = enw_missing(~ (1 | week), data = pobs),
report = enw_report(~ (1 | day_of_week), data = pobs),
fit = enw_fit_opts(
save_warmup = FALSE, pp = FALSE,
chains = 2, iter_warmup = 500, iter_sampling = 500,
parallel_chains = 2
),
obs = enw_obs(family = "poisson", data = pobs),
model = model
) },
n = 3
)
touchstone::benchmark_run(
expr_before_benchmark = { source("touchstone/setup.R") },
latent_renewal_model = { epinowcast(
data = pobs,
expectation = enw_expectation(
r = ~ 1 + rw(week),
generation_time = c(0.1, 0.4, 0.4, 0.1),
observation = ~ (1 | day_of_week),
latent_reporting_delay = 0.4 * c(0.05, 0.3, 0.6, 0.05),
data = pobs
),
reference = enw_reference(~1, data = pobs),
report = enw_report(~(1 | day_of_week), data = pobs),
fit = enw_fit_opts(
save_warmup = FALSE, pp = FALSE,
chains = 2, iter_warmup = 500, iter_sampling = 500,
parallel_chains = 2
),
obs = enw_obs(family = "negbin", data = pobs),
model = model
) },
n = 3
)
touchstone::benchmark_run(
expr_before_benchmark = { source("touchstone/multigroup-setup.R") },
multi_group_latent_renewal_model = { epinowcast(
data = pobs,
expectation = enw_expectation(
r = ~ 1 + rw(week, by = .group),
generation_time = c(0.1, 0.4, 0.4, 0.1),
observation = ~ (1 | day_of_week),
latent_reporting_delay = 0.4 * c(0.05, 0.3, 0.6, 0.05),
data = pobs
),
reference = enw_reference(~1, data = pobs),
report = enw_report(~(1 | day_of_week), data = pobs),
fit = enw_fit_opts(
save_warmup = FALSE, pp = FALSE,
chains = 2, iter_warmup = 500, iter_sampling = 500,
parallel_chains = 2
),
obs = enw_obs(family = "negbin", data = pobs),
model = model
) },
n = 3
)
# create artifacts used downstream in the GitHub Action.
touchstone::benchmark_analyze()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.