12 references to ReadDoubleArray
Microsoft.ML.Core (1)
Utilities\Stream.cs (1)
516return ReadDoubleArray(reader, size);
Microsoft.ML.Data (6)
Transforms\NormalizeColumnDbl.cs (6)
124scalesSparse = ctx.Reader.ReadDoubleArray(scaleCount); 127offsetsSparse = ctx.Reader.ReadDoubleArray(offsetCount); 155scalesSparse = ctx.Reader.ReadDoubleArray(scaleCount) ?? new TFloat[0]; 158offsetsSparse = ctx.Reader.ReadDoubleArray(offsetCount); 308mean = ctx.Reader.ReadDoubleArray(size); 309stddev = 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);