15 references to ReadIntArray
Microsoft.ML.Core (1)
Utilities\Stream.cs (1)
538return ReadIntArray(reader, size);
Microsoft.ML.Data (4)
Transforms\NormalizeColumnDbl.cs (1)
151indicesMorph = ctx.Reader.ReadIntArray(morphCount) ?? new int[0];
Transforms\NormalizeColumnSng.cs (1)
151indicesMorph = ctx.Reader.ReadIntArray(morphCount) ?? new int[0];
Transforms\SlotsDroppingTransformer.cs (1)
300SlotsMax[i] = ctx.Reader.ReadIntArray(SlotsMin[i].Length);
Utils\SequencePool.cs (1)
72_start = reader.ReadIntArray(_idLim + 1);
Microsoft.ML.FastTree (1)
TreeEnsemble\InternalRegressionTree.cs (1)
293CategoricalSplitFeatureRanges[index] = reader.ReadIntArray(2);
Microsoft.ML.KMeansClustering (1)
KMeansModelParameters.cs (1)
134var indices = count < _dimensionality ? ctx.Reader.ReadIntArray(count) : null;
Microsoft.ML.StandardTrainers (6)
Standard\LinearModelParameters.cs (1)
176var indices = ctx.Reader.ReadIntArray(cind);
Standard\LogisticRegression\MulticlassLogisticRegression.cs (2)
580int[] starts = ctx.Reader.ReadIntArray(numStarts); 590indices[i] = ctx.Reader.ReadIntArray(starts[i + 1] - starts[i]);
Standard\ModelStatistics.cs (2)
286int[] stdErrorIndices = ctx.Reader.ReadIntArray(ParametersCount); 304int[] weightsIndices = ctx.Reader.ReadIntArray(weightsLength);
Standard\MulticlassClassification\MulticlassNaiveBayesTrainer.cs (1)
343_featureHistogram[iLabel] = Array.ConvertAll(ctx.Reader.ReadIntArray(_featureCount) ?? new int[0], x => (long)x);
Microsoft.ML.Transforms (2)
Dracula\CountTableTransformer.cs (1)
553Seeds = ctx.Reader.ReadIntArray(ColumnPairs.Length);
Dracula\MultiCountTable.cs (1)
355SlotCount = ctx.Reader.ReadIntArray(ColCount);