13 references to ReadIntArray
Microsoft.ML.Data (4)
DataLoadSave\Binary\Codecs.cs (1)
1134var dims = reader.ReadIntArray();
Dirty\ChooseColumnsByIndexTransform.cs (1)
133_selectedColumnIndexes = ctx.Reader.ReadIntArray();
Transforms\Normalizer.cs (1)
459return new VectorDataViewType(itemType, ctx.Reader.ReadIntArray());
Transforms\SlotsDroppingTransformer.cs (1)
298SlotsMin[i] = ctx.Reader.ReadIntArray();
Microsoft.ML.FastTree (5)
TreeEnsemble\InternalRegressionTree.cs (5)
275LteChild = reader.ReadIntArray(); 276GtChild = reader.ReadIntArray(); 277SplitFeatures = reader.ReadIntArray(); 281int[] categoricalNodeIndices = reader.ReadIntArray(); 292CategoricalSplitFeatures[index] = reader.ReadIntArray();
Microsoft.ML.OnnxTransformer (1)
OnnxTransform.cs (1)
195var shape = ctx.Reader.ReadIntArray();
Microsoft.ML.Parquet (1)
PartitionedFileLoader.cs (1)
235_srcDirIndex = ctx.Reader.ReadIntArray();
Microsoft.ML.StandardTrainers (1)
Standard\MulticlassClassification\MulticlassNaiveBayesTrainer.cs (1)
326_labelHistogram = Array.ConvertAll(ctx.Reader.ReadIntArray() ?? new int[0], x => (long)x);
Microsoft.ML.Transforms (1)
HashJoiningTransform.cs (1)
261slotMap[j] = ctx.Reader.ReadIntArray();