2 overrides of WantParallelCursors
Microsoft.ML.Data (2)
Scorers\GenericScorer.cs (1)
249
protected override bool
WantParallelCursors
(Func<int, bool> predicate)
Scorers\PredictedLabelScorerBase.cs (1)
390
protected override bool
WantParallelCursors
(Func<int, bool> predicate)
3 references to WantParallelCursors
Microsoft.ML.Data (3)
Scorers\RowToRowScorerBase.cs (3)
111
/// This produces either "true" or "null" according to whether <see cref="
WantParallelCursors
"/>
118
if (
WantParallelCursors
(predicate))
155
if (inputs.Length == 1 && n > 1 &&
WantParallelCursors
(predicate) && (Source.GetRowCount() ?? int.MaxValue) > n)