This function returns an estimation of the optimum value for the gamma hyperparameter
(required by the RBF kernel function) using different heuristics:
D criterion
It returns the inverse of the number of features in X.
Scale criterion
It returns the inverse of the number of features,
normalized by the total variance of X.
Quantiles criterion
A range of values, computed with the function
`kernlab::sigest()`.
Usage
estimate_gamma(X)
Value
A list with the gamma value estimation according to different criteria.
Arguments
X
Matrix or data.frame that contains real numbers ("integer", "float" or "double").