2 implementations of IRowReadableAs
Microsoft.ML.Data (2)
DataView\TypedCursor.cs (2)
36
internal abstract class RowCursor<TRow> : DataViewRowCursor,
IRowReadableAs
<TRow>
560
private sealed class RowImplementation :
IRowReadableAs
<TRow>
10 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)
167
public
IRowReadableAs
<TRow> GetRow(DataViewRow input)
Prediction\PredictionEngine.cs (2)
94
private readonly
IRowReadableAs
<TDst> _outputRow;
124
IRowToRowMapper mapper, bool ignoreMissingColumns, SchemaDefinition outputSchemaDefinition, out Action disposer, out
IRowReadableAs
<TDst> outputRow)
Microsoft.ML.TimeSeries (1)
PredictionEngine.cs (1)
218
IRowToRowMapper mapper, bool ignoreMissingColumns, SchemaDefinition outputSchemaDefinition, out Action disposer, out
IRowReadableAs
<TDst> outputRow)
Microsoft.ML.Transforms (5)
CustomMappingFilter.cs (2)
101
IRowReadableAs
<TSrc> inputRow = parent.TypedSrc.GetRow(input);
167
IRowReadableAs
<TSrc> inputRow = parent.TypedSrc.GetRow(input);
CustomMappingTransformer.cs (1)
139
IRowReadableAs
<TSrc> inputRow = _typedSrc.GetRow(input);
StatefulCustomMappingTransformer.cs (2)
164
IRowReadableAs
<TSrc> inputRow = _typedSrc.GetRow(input);
283
IRowReadableAs
<TSrc> inputRow = _parent._typedSrc.GetRow(input);