Nothing
#' @title SamplerUnif Class
#'
#' @description
#' Uniform random sampling for an arbitrary (bounded) [ParamSet].
#' Constructs 1 uniform sampler per parameter, then passes them to [SamplerHierarchical].
#' Hence, also works for [ParamSet]s sets with dependencies.
#'
#' @template param_param_set
#'
#' @family Sampler
#' @include SamplerHierarchical.R
#' @export
SamplerUnif = R6Class("SamplerUnif", inherit = SamplerHierarchical,
public = list(
#' @description
#' Creates a new instance of this [R6][R6::R6Class] class.
#' @param param_set ([`ParamSet`])\cr
#' The [`ParamSet`] to associated with this `SamplerUnif`.
initialize = function(param_set) {
assert_param_set(param_set, must_bounded = TRUE, no_deps = FALSE, no_untyped = TRUE)
samplers = lapply(param_set$subspaces(), Sampler1DUnif$new)
super$initialize(param_set, samplers)
}
)
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.