10 references to GenericScorer
Microsoft.ML.Data (3)
Commands\ScoreCommand.cs (1)
325
new
GenericScorer
(
Scorers\PredictionTransformer.cs (1)
307
return new
GenericScorer
(Host, new GenericScorer.Arguments(), new EmptyDataView(Host, TrainSchema), BindableMapper.Bind(Host, schema), schema);
Scorers\QuantileRegressionScorer.cs (1)
34
return new
GenericScorer
(env, args, data, mapper, trainSchema);
Microsoft.ML.FastTree (5)
TreeEnsembleFeaturizationTransformer.cs (2)
101
Scorer = new
GenericScorer
(Host, _scorerArgs, new EmptyDataView(Host, inputSchema), BindableMapper.Bind(Host, roleMappedSchema), roleMappedSchema);
135
Scorer = new
GenericScorer
(Host, _scorerArgs, new EmptyDataView(Host, TrainSchema), BindableMapper.Bind(Host, roleMappedSchema), roleMappedSchema);
TreeEnsembleFeaturizer.cs (3)
591
return new
GenericScorer
(env, args, data, mapper, trainSchema);
664
xf = new
GenericScorer
(env, scorerArgs, input, bound, data.Schema);
735
return new
GenericScorer
(env, scorerArgs, data.Data, bound, data.Schema);
Microsoft.ML.Recommender (2)
MatrixFactorizationPredictor.cs (2)
466
Scorer = new
GenericScorer
(Host, args, new EmptyDataView(Host, trainSchema), BindableMapper.Bind(Host, schema), schema);
505
Scorer = new
GenericScorer
(Host, args, new EmptyDataView(Host, TrainSchema), BindableMapper.Bind(Host, schema), schema);