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