12 instantiations of GenericScorer
Microsoft.ML.Data (5)
Commands\ScoreCommand.cs (1)
325new GenericScorer(
Scorers\GenericScorer.cs (2)
200return h.Apply("Loading Model", ch => new GenericScorer(h, ctx, input)); 262return new GenericScorer(env, this, newSource);
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);
14 references to GenericScorer
Microsoft.ML.Data (12)
Commands\ScoreCommand.cs (1)
327new GenericScorer.Arguments() { Suffix = suffix },
Scorers\GenericScorer.cs (9)
13[assembly: LoadableClass(typeof(GenericScorer), typeof(GenericScorer.Arguments), typeof(SignatureDataScorer), 14"Generic Scorer", GenericScorer.LoadName, "Generic")] 16[assembly: LoadableClass(typeof(GenericScorer), null, typeof(SignatureLoadDataTransform), 17"Generic Scorer", GenericScorer.LoaderSignature)] 135loaderAssemblyName: typeof(GenericScorer).Assembly.FullName); 150/// The <see cref="SignatureDataScorer"/> entry point for creating a <see cref="GenericScorer"/>. 170private GenericScorer(IHostEnvironment env, GenericScorer transform, IDataView data) 191public static GenericScorer Create(IHostEnvironment env, ModelLoadContext ctx, IDataView input)
Scorers\PredictionTransformer.cs (2)
304private protected GenericScorer GetGenericScorer() 307return new GenericScorer(Host, new GenericScorer.Arguments(), new EmptyDataView(Host, TrainSchema), BindableMapper.Bind(Host, schema), schema);
Microsoft.ML.Recommender (2)
MatrixFactorizationPredictor.cs (2)
465var args = new GenericScorer.Arguments { Suffix = scoreColumnNameSuffix }; 504var args = new GenericScorer.Arguments { Suffix = "" };