1 write to RowMapper
Microsoft.ML.Data (1)
Scorers\RowToRowScorerBase.cs (1)
33
RowMapper
= mapper;
22 references to RowMapper
Microsoft.ML.Data (22)
Scorers\BinaryClassifierScorer.cs (2)
199
string scoreColumn = Bindings.
RowMapper
.OutputSchema[Bindings.ScoreColumnIndex].Name;
235
Host.Assert(output.Schema == Bindings.
RowMapper
.OutputSchema);
Scorers\ClusteringScorer.cs (1)
96
Contracts.Assert(output.Schema == Bindings.
RowMapper
.OutputSchema);
Scorers\GenericScorer.cs (5)
94
var bindable =
RowMapper
.Bindable;
95
var roles =
RowMapper
.GetInputColumnRoles();
216
var schema = _bindings.
RowMapper
.InputRoleMappedSchema;
231
var schema = _bindings.
RowMapper
.InputRoleMappedSchema;
270
Host.Assert(output.Schema == _bindings.
RowMapper
.OutputSchema);
Scorers\MulticlassClassificationScorer.cs (2)
565
Host.Assert(output.Schema == Bindings.
RowMapper
.OutputSchema);
568
ValueGetter<VBuffer<float>> mapperScoreGetter = output.GetGetter<VBuffer<float>>(Bindings.
RowMapper
.OutputSchema[Bindings.ScoreColumnIndex]);
Scorers\PredictedLabelScorerBase.cs (7)
105
string scoreCol =
RowMapper
.OutputSchema[ScoreColumnIndex].Name;
106
var schema = new RoleMappedSchema(input,
RowMapper
.GetInputColumnRoles());
162
ctx.SaveNonEmptyString(
RowMapper
.OutputSchema[ScoreColumnIndex].Name);
336
var schema = Bindings.
RowMapper
.InputRoleMappedSchema;
369
var schema = Bindings.
RowMapper
.InputRoleMappedSchema;
403
Host.Assert(output.Schema == Bindings.
RowMapper
.OutputSchema);
450
(Bindings.
RowMapper
as IDisposable)?.Dispose();
Scorers\RowToRowScorerBase.cs (5)
101
activeRowMapperCols = bindings.
RowMapper
.OutputSchema.Where(c => predicateMapper(c.Index));
102
var colsInputForMapper = bindings.
RowMapper
.GetDependenciesForNewColumns(activeRowMapperCols);
170
var output = bindings.
RowMapper
.GetRow(input, activeMapperColumns);
250
_output = _bindings.
RowMapper
.GetRow(input, activeMapperColumns);
253
Ch.Assert(_output.Schema == _bindings.
RowMapper
.OutputSchema);