12 references to ReadDoubleArray
Microsoft.ML.Core (1)
Utilities\Stream.cs (1)
516
return
ReadDoubleArray
(reader, size);
Microsoft.ML.Data (6)
Transforms\NormalizeColumnDbl.cs (6)
124
scalesSparse = ctx.Reader.
ReadDoubleArray
(scaleCount);
127
offsetsSparse = ctx.Reader.
ReadDoubleArray
(offsetCount);
155
scalesSparse = ctx.Reader.
ReadDoubleArray
(scaleCount) ?? new TFloat[0];
158
offsetsSparse = ctx.Reader.
ReadDoubleArray
(offsetCount);
308
mean = ctx.Reader.
ReadDoubleArray
(size);
309
stddev = ctx.Reader.
ReadDoubleArray
(size);
Microsoft.ML.FastTree (1)
GamModelParameters.cs (1)
142
_binUpperBounds[i] = reader.
ReadDoubleArray
(_binEffects[i].Length);
Microsoft.ML.Mkl.Components (3)
OlsLinearRegression.cs (3)
831
_standardErrors = ctx.Reader.
ReadDoubleArray
(m);
835
_tValues = ctx.Reader.
ReadDoubleArray
(m);
841
_pValues = ctx.Reader.
ReadDoubleArray
(m);
Microsoft.ML.StandardTrainers (1)
Standard\MulticlassClassification\MulticlassNaiveBayesTrainer.cs (1)
349
_absentFeaturesLogProb = ctx.Reader.
ReadDoubleArray
(_labelCount);