View source: R/random_search_hyperparam.R
random_search_hyperparam | R Documentation |
Generate a hyperparameter simulation table using functions as input.
random_search_hyperparam(
n = 100,
ls_fct = list(ridge = function(n) 1e-05, input_scaling = function(n) 1, spectral_radius
= function(n) rloguniform(n = n, min = 0.01, max = 10), leaking_rate = function(n)
rloguniform(n = n, min = 0.001, max = 1))
)
n |
Number of search |
ls_fct |
A list of functions |
A dataframe of size n x 4. Each row is a different set of hyperparameters.
random_search_hyperparam(
n = 100,
ls_fct = list(
ridge = function(n)
1e-5,
input_scaling = function(n)
1,
spectral_radius = function(n)
rloguniform(n = n, min = 1e-2, max = 10),
leaking_rate = function(n)
rloguniform(n = n, min = 1e-3, max = 1)
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.