2 instantiations of MulticlassLabelCursor
Microsoft.ML.Data (1)
Training\TrainerUtils.cs (1)
1018return new MulticlassLabelCursor(_classCount, input, data, opt, signal);
Microsoft.ML.StandardTrainers (1)
Standard\MulticlassClassification\MulticlassNaiveBayesTrainer.cs (1)
152using (var cursor = new MulticlassLabelCursor(labelCount, data, CursOpt.Features | CursOpt.Label))
3 references to MulticlassLabelCursor
Microsoft.ML.Data (2)
Training\TrainerUtils.cs (2)
1004public new sealed class Factory : FactoryBase<MulticlassLabelCursor> 1016protected override MulticlassLabelCursor CreateCursorCore(DataViewRowCursor input, RoleMappedData data, CursOpt opt, Action<CursOpt> signal)
Microsoft.ML.StandardTrainers (1)
Standard\MulticlassClassification\MulticlassNaiveBayesTrainer.cs (1)
152using (var cursor = new MulticlassLabelCursor(labelCount, data, CursOpt.Features | CursOpt.Label))