20 lines
464 B
Plaintext
20 lines
464 B
Plaintext
|
% Generated by roxygen2: do not edit by hand
|
||
|
% Please edit documentation in R/gridSearch.R
|
||
|
\name{cve.grid.search}
|
||
|
\alias{cve.grid.search}
|
||
|
\title{Performs a grid search for parameters over a parameter grid.}
|
||
|
\usage{
|
||
|
cve.grid.search(X, Y, k, args)
|
||
|
}
|
||
|
\description{
|
||
|
Performs a grid search for parameters over a parameter grid.
|
||
|
}
|
||
|
\examples{
|
||
|
args <- list(
|
||
|
h = c(0.05, 0.1, 0.2),
|
||
|
method = c("simple", "sgd"),
|
||
|
tau = c(0.5, 0.1, 0.01)
|
||
|
)
|
||
|
cve.grid.search(args)
|
||
|
}
|