This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Description
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>()
{
...
}
};