View source: R/greedy_multiple_kernel_search.R
| resultsMultipleKernelGreedySearch | R Documentation |
Returns the results (thus far) of the greedy design search for multiple kernels
resultsMultipleKernelGreedySearch(obj, max_vectors = 9, form = "one_zero")
obj |
The |
max_vectors |
The number of design vectors you wish to return. |
form |
Which form should it be in? The default is |
Adam Kapelner
## Not run:
set.seed(1)
X = matrix(rnorm(20), nrow = 10)
mk = initGreedyMultipleKernelExperimentalDesignObject(
X,
max_designs = 4,
kernel_pre_num_designs = 4,
num_cores = 1,
kernel_names = c("mahalanobis", "gaussian"),
start = TRUE,
wait = TRUE,
verbose = FALSE
)
res = resultsMultipleKernelGreedySearch(mk, max_vectors = 2, form = "one_zero")
res$obj_vals
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.