continue | R Documentation |
This function implements additional training iterations for a DGP emulator.
continue(
object,
N = NULL,
cores = 1,
ess_burn = 10,
verb = TRUE,
burnin = NULL,
B = NULL
)
object |
an instance of the |
N |
additional number of iterations to train the DGP emulator. If set to |
cores |
the number of processes to be used to optimize GP components (in the same layer) at each M-step of the training. If set to |
ess_burn |
number of burnin steps for ESS-within-Gibbs
at each I-step of the training. Defaults to |
verb |
a bool indicating if a progress bar will be printed during training. Defaults to |
burnin |
the number of training iterations to be discarded for
point estimates calculation. Must be smaller than the overall training iterations
so-far implemented. If this is not specified, only the last 25% of iterations
are used. This overrides the value of |
B |
the number of imputations to produce predictions. Increase the value to account for
more imputation uncertainty. This overrides the value of |
See further examples and tutorials at https://mingdeyu.github.io/dgpsi-R/.
An updated object
.
One can also use this function to fit an untrained DGP emulator constructed by dgp()
with training = FALSE
.
The following slots:
loo
and oos
created by validate()
; and
results
created by predict()
in object
will be removed and not contained in the returned object.
## Not run:
# See dgp() for an example.
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.