#' @importFrom R6 R6Class
#' @include model_helpers.R
#' @include grid_tuner.R
RadialGridTuner <- R6Class(
classname = "RadialGridTuner",
inherit = GridTuner,
public = list(
# Attributes --------------------------------------------------
Pheno = NULL,
y = NULL,
predictors = NULL,
geno_preparator = NULL,
model_iterations_number = NULL,
burn_in = NULL,
thinning = NULL,
# Methods --------------------------------------------------
initialize = radial_tuner_initialize,
eval_one_fold = radial_eval_one_fold
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.