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