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)
| 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 |
nothing calls this directly
no test coverage detected