Problem {Microsoft.VisualBasic.MachineLearning.SVM} | .NET clr documentation |
Encapsulates a problem, or set of vectors which must be classified.
# namespace Microsoft.VisualBasic.MachineLearning.SVM
export class Problem {
# Number of vectors.
count: integer;
# the width of each row in Problem.X
dimensionNames: string;
# Maximum index for a vector. this value is the width of each
# row in Problem.X and equals to the length of vector
# Problem.dimensionNames
maxIndex: integer;
# Vector data.
X: Node[][];
# Class labels.
Y: ColorClass[];
}
X
: Node[]Y
: ColorClass