1 type derived from RowCursor
Microsoft.ML.Data (1)
DataView\TypedCursor.cs (1)
586private sealed class RowCursorImplementation : RowCursor<TRow>
9 references to RowCursor
Microsoft.ML.Data (8)
DataView\TypedCursor.cs (7)
53RowCursor<TRow> GetCursor(); 59RowCursor<TRow> GetRandomizedCursor(int randomSeed); 153public RowCursor<TRow> GetCursor() 162public RowCursor<TRow> GetRandomizedCursor(int randomSeed) 178public RowCursor<TRow> GetCursor(Func<int, bool> additionalColumnsPredicate, int? randomSeed = null) 203public RowCursor<TRow>[] GetCursorSet(Func<int, bool> additionalColumnsPredicate, int n, Random rand) 216.Select(rc => (RowCursor<TRow>)(new RowCursorImplementation(new TypedCursor(this, rc))))
Prediction\PredictionEngine.cs (1)
33using (var cursor = _cursorablePipe.GetCursor())
Microsoft.ML.Transforms (1)
StatefulFilterTransform.cs (1)
111var input = _typedSource.GetCursor(inputPred, rand == null ? (int?)null : rand.Next());