2 implementations of IRowReadableAs
Microsoft.ML.Data (2)
DataView\TypedCursor.cs (2)
36internal abstract class RowCursor<TRow> : DataViewRowCursor, IRowReadableAs<TRow> 560private sealed class RowImplementation : IRowReadableAs<TRow>
4 references to IRowReadableAs
Microsoft.ML.Data (4)
DataView\DataViewConstructionUtils.cs (1)
189/// is in contrast to <see cref="IRowReadableAs{TRow}"/> which consumes a data view row and publishes them as the output type.
DataView\TypedCursor.cs (1)
167public IRowReadableAs<TRow> GetRow(DataViewRow input)
Prediction\PredictionEngine.cs (2)
94private readonly IRowReadableAs<TDst> _outputRow; 124IRowToRowMapper mapper, bool ignoreMissingColumns, SchemaDefinition outputSchemaDefinition, out Action disposer, out IRowReadableAs<TDst> outputRow)