Problem {Microsoft.VisualBasic.MachineLearning.SVM} .NET clr documentation

Problem

Description

Encapsulates a problem, or set of vectors which must be classified.

Declare

            
# 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[];
}

        

.NET clr type reference tree

  1. use by property member X: Node[]
  2. use by property member Y: ColorClass

[Package {$package} version {$version} Index]