4 instantiations of DataPointVec
Microsoft.ML.Tests (4)
Transformers\NormalizerTests.cs (4)
940new DataPointVec(){ Features = new float[5] { 1, 1, 3, 0, float.MaxValue } }, 941new DataPointVec(){ Features = new float[5] { 2, 2, 2, 0, float.MinValue } }, 942new DataPointVec(){ Features = new float[5] { 0, 0, 1, 0.5f, 0} }, 943new DataPointVec(){ Features = new float[5] {-1,-1,-1, 1, 1} }
2 references to DataPointVec
Microsoft.ML.Tests (2)
Transformers\NormalizerTests.cs (2)
938var samples = new List<DataPointVec>() 974var transformedDataArray = ML.Data.CreateEnumerable<DataPointVec>(noCdfData, false).ToImmutableArray();