8 references to ReadSingleArray
Microsoft.ML.Data (6)
Transforms\NormalizeColumnSng.cs (6)
124
scalesSparse = ctx.Reader.
ReadSingleArray
(scaleCount);
127
offsetsSparse = ctx.Reader.
ReadSingleArray
(offsetCount);
155
scalesSparse = ctx.Reader.
ReadSingleArray
(scaleCount) ?? new TFloat[0];
158
offsetsSparse = ctx.Reader.
ReadSingleArray
(offsetCount);
308
mean = ctx.Reader.
ReadSingleArray
(size);
309
stddev = ctx.Reader.
ReadSingleArray
(size);
Microsoft.ML.Recommender (2)
MatrixFactorizationPredictor.cs (2)
145
_leftFactorMatrix = Utils.
ReadSingleArray
(ctx.Reader, checked(NumberOfRows * ApproximationRank));
146
_rightFactorMatrix = Utils.
ReadSingleArray
(ctx.Reader, checked(NumberOfColumns * ApproximationRank));