2 | | * LINQ is used a lot in combination with matrix operations. This is often slow because of memory allocations required for enumerators. |
3 | | * There should be an option to scale the input variables (scaling should be active by default) |
4 | | * RBF regression does not support noise. If there are duplicate x vectors, model building fails. An option would be to add a diagonal matrix to the gram matrix (leading to kernel ridge regression?) |
5 | | * I have not found a source for the calculation of variance and LOO error |
| 2 | * LINQ is used a lot in combination with matrix operations. This is often slow because of memory allocations required for enumerators. (DONE) |
| 3 | * There should be an option to scale the input variables (scaling should be active by default) (DONE) |
| 4 | * RBF regression does not support noise. If there are duplicate x vectors, model building fails. An option would be to add a diagonal matrix to the gram matrix (leading to kernel ridge regression?) (DONE) |
| 5 | * I have not found a source for the calculation of variance and LOO error |