You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2020. It is now read-only.
The following code seems to cause array index out of bounds if the outputs array isn't sequential from zero such as [0, 1, 2, ...] but instead e.g. [13, 15, 17, ...] or like.
double[][] inputs = ...
int[] outputs = ...
var teacher = new MulticlassSupportVectorLearning<Gaussian>()
{
Learner = (param) => new SequentialMinimalOptimization<Gaussian>()
{
...
}
};