Skip to content

Commit

Permalink
try larger sample size
Browse files Browse the repository at this point in the history
  • Loading branch information
sbfnk committed Feb 11, 2023
1 parent 0043b32 commit f6a0334
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 f6a0334

Please sign in to comment.