8 implementations of GetRow
Microsoft.ML.Data (6)
DataView\CompositeRowToRowMapper.cs (1)
52DataViewRow IRowToRowMapper.GetRow(DataViewRow input, IEnumerable<DataViewSchema.Column> activeColumns)
DataView\RowToRowMapperTransform.cs (1)
249DataViewRow IRowToRowMapper.GetRow(DataViewRow input, IEnumerable<DataViewSchema.Column> activeColumns)
EntryPoints\TransformModelImpl.cs (1)
247DataViewRow IRowToRowMapper.GetRow(DataViewRow input, IEnumerable<DataViewSchema.Column> activeColumns)
Transforms\ColumnSelecting.cs (1)
725DataViewRow IRowToRowMapper.GetRow(DataViewRow input, IEnumerable<DataViewSchema.Column> activeColumns)
Transforms\NopTransform.cs (1)
132DataViewRow IRowToRowMapper.GetRow(DataViewRow input, IEnumerable<DataViewSchema.Column> activeColumns)
Transforms\TransformBase.cs (1)
176DataViewRow IRowToRowMapper.GetRow(DataViewRow input, IEnumerable<DataViewSchema.Column> activeColumns)
Microsoft.ML.TimeSeries (2)
SequentialTransformerBase.cs (2)
610DataViewRow IRowToRowMapper.GetRow(DataViewRow input, IEnumerable<DataViewSchema.Column> activeColumns) 928DataViewRow IRowToRowMapper.GetRow(DataViewRow input, IEnumerable<DataViewSchema.Column> activeColumns)
8 references to GetRow
Microsoft.ML.Core (1)
Data\ISchemaBindableMapper.cs (1)
22/// the SimpleRow class can be used in the <see cref="IRowToRowMapper.GetRow"/> method.
Microsoft.ML.Data (4)
DataView\CompositeRowToRowMapper.cs (1)
84result = InnerMappers[i].GetRow(result, deps[i]);
DataView\DataViewExtensions.cs (1)
65=> rowMapper.GetRow(input, activeColumns);
EntryPoints\TransformModelImpl.cs (1)
273row = mappers[i].GetRow(row, actives[i]);
Prediction\PredictionEngine.cs (1)
127var outputRowLocal = mapper.GetRow(inputRow, mapper.OutputSchema);
Microsoft.ML.Ensemble (2)
PipelineEnsemble.cs (2)
142var pipelineRow = BoundPipelines[i].GetRow(input, inputColumns); 188var pipelineRow = BoundPipelines[i].GetRow(input, inputColumns);
Microsoft.ML.TimeSeries (1)
PredictionEngine.cs (1)
183var row = mapper.GetRow(input, activeColumns);