MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / KernelRLS

Method KernelRLS

JSAT/src/jsat/regression/KernelRLS.java:54–58  ·  view source on GitHub ↗

Creates a new Kernel RLS learner @param k the kernel trick to use @param errorTolerance the tolerance for errors in the projection

(KernelTrick k, double errorTolerance)

Source from the content-addressed store, hash-verified

52 * @param errorTolerance the tolerance for errors in the projection
53 */
54 public KernelRLS(KernelTrick k, double errorTolerance)
55 {
56 this.k = k;
57 setErrorTolerance(errorTolerance);
58 }
59
60 /**
61 * Copy constructor

Callers

nothing calls this directly

Calls 5

setErrorToleranceMethod · 0.95
copyOfMethod · 0.80
cloneMethod · 0.65
sizeMethod · 0.65
addMethod · 0.45

Tested by

no test coverage detected