9 writes to BindableMapper
Microsoft.ML.Data (3)
Scorers\PredictionTransformer.cs (3)
238BindableMapper = ScoreUtils.GetSchemaBindableMapper(Host, ModelAsPredictor); 253BindableMapper = ScoreUtils.GetSchemaBindableMapper(Host, ModelAsPredictor); 268BindableMapper = ScoreUtils.GetSchemaBindableMapper(Host, ModelAsPredictor);
Microsoft.ML.FastTree (2)
TreeEnsembleFeaturizationTransformer.cs (2)
97BindableMapper = new TreeEnsembleFeaturizerBindableMapper(env, _scorerArgs, modelParameters); 131BindableMapper = new TreeEnsembleFeaturizerBindableMapper(host, _scorerArgs, Model);
Microsoft.ML.Recommender (2)
MatrixFactorizationPredictor.cs (2)
462BindableMapper = ScoreUtils.GetSchemaBindableMapper(Host, model); 501BindableMapper = ScoreUtils.GetSchemaBindableMapper(Host, Model);
Microsoft.ML.StandardTrainers (2)
FactorizationMachine\FieldAwareFactorizationMachineModelParameters.cs (2)
325BindableMapper = ScoreUtils.GetSchemaBindableMapper(Host, model); 360BindableMapper = ScoreUtils.GetSchemaBindableMapper(Host, Model);
13 references to BindableMapper
Microsoft.ML.Data (7)
Scorers\PredictionTransformer.cs (7)
194(BindableMapper as IDisposable)?.Dispose(); 307return new GenericScorer(Host, new GenericScorer.Arguments(), new EmptyDataView(Host, TrainSchema), BindableMapper.Bind(Host, schema), schema); 350Scorer = new BinaryClassifierScorer(Host, args, new EmptyDataView(Host, TrainSchema), BindableMapper.Bind(Host, schema), schema); 442Scorer = new BinaryClassifierScorer(Host, args, new EmptyDataView(Host, TrainSchema), BindableMapper.Bind(Host, schema), schema); 534Scorer = new MulticlassClassificationScorer(Host, args, new EmptyDataView(Host, TrainSchema), BindableMapper.Bind(Host, schema), schema); 677Scorer = new ClusteringScorer(Host, args, new EmptyDataView(Host, inputSchema), BindableMapper.Bind(Host, schema), schema); 688Scorer = new ClusteringScorer(Host, args, new EmptyDataView(Host, TrainSchema), BindableMapper.Bind(Host, schema), schema);
Microsoft.ML.FastTree (2)
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);
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);
Microsoft.ML.StandardTrainers (2)
FactorizationMachine\FieldAwareFactorizationMachineModelParameters.cs (2)
329Scorer = new BinaryClassifierScorer(Host, args, new EmptyDataView(Host, trainSchema), BindableMapper.Bind(Host, schema), schema); 364Scorer = new BinaryClassifierScorer(Host, args, new EmptyDataView(Host, TrainSchema), BindableMapper.Bind(Host, schema), schema);