3 overrides of MakeRowMapper
Microsoft.ML.TimeSeries (3)
SequentialAnomalyDetectionTransformBase.cs (1)
298internal override IStatefulRowMapper MakeRowMapper(DataViewSchema schema) => new Mapper(Host, this, schema);
SequentialForecastingTransformBase.cs (1)
95internal override IStatefulRowMapper MakeRowMapper(DataViewSchema schema) => new Mapper(Host, this, schema);
SrCnnTransformBase.cs (1)
141internal override IStatefulRowMapper MakeRowMapper(DataViewSchema schema) => new Mapper(Host, this, schema);
2 references to MakeRowMapper
Microsoft.ML.TimeSeries (2)
SequentialTransformerBase.cs (2)
447return new SequentialDataTransform(Host, this, input, MakeRowMapper(input.Schema)); 460return new TimeSeriesRowToRowMapperTransform(Host, new EmptyDataView(Host, inputSchema), MakeRowMapper(inputSchema));