2019-08-30 19:16:52 +00:00
|
|
|
% Generated by roxygen2: do not edit by hand
|
|
|
|
% Please edit documentation in R/cve_sgd.R
|
|
|
|
\name{cve_sgd}
|
|
|
|
\alias{cve_sgd}
|
|
|
|
\title{Simple implementation of the CVE method. 'Simple' means that this method is
|
|
|
|
a classic GD method unsing no further tricks.}
|
|
|
|
\usage{
|
|
|
|
cve_sgd(X, Y, k, nObs = sqrt(nrow(X)), h = NULL, tau = 0.01,
|
2019-09-12 16:42:28 +00:00
|
|
|
tol = 0.001, epochs = 50L, batch.size = 16L, attempts = 10L,
|
|
|
|
logger = NULL)
|
2019-08-30 19:16:52 +00:00
|
|
|
}
|
|
|
|
\description{
|
|
|
|
Simple implementation of the CVE method. 'Simple' means that this method is
|
|
|
|
a classic GD method unsing no further tricks.
|
|
|
|
}
|
|
|
|
\keyword{internal}
|