8 implementations of Bind
Microsoft.ML.Data (4)
Prediction\Calibrator.cs (1)
800public ISchemaBoundMapper Bind(IHostEnvironment env, RoleMappedSchema schema)
Scorers\FeatureContributionCalculation.cs (1)
162public ISchemaBoundMapper Bind(IHostEnvironment env, RoleMappedSchema schema)
Scorers\MulticlassClassificationScorer.cs (1)
229ISchemaBoundMapper ISchemaBindableMapper.Bind(IHostEnvironment env, RoleMappedSchema schema)
Scorers\SchemaBindablePredictorWrapper.cs (1)
120ISchemaBoundMapper ISchemaBindableMapper.Bind(IHostEnvironment env, RoleMappedSchema schema)
Microsoft.ML.Ensemble (1)
PipelineEnsemble.cs (1)
565ISchemaBoundMapper ISchemaBindableMapper.Bind(IHostEnvironment env, RoleMappedSchema schema) => BindCore(env, schema);
Microsoft.ML.FastTree (1)
TreeEnsembleFeaturizer.cs (1)
522ISchemaBoundMapper ISchemaBindableMapper.Bind(IHostEnvironment env, RoleMappedSchema schema)
Microsoft.ML.Recommender (1)
MatrixFactorizationPredictor.cs (1)
313ISchemaBoundMapper ISchemaBindableMapper.Bind(IHostEnvironment env, RoleMappedSchema schema)
Microsoft.ML.StandardTrainers (1)
FactorizationMachine\FieldAwareFactorizationMachineModelParameters.cs (1)
239ISchemaBoundMapper ISchemaBindableMapper.Bind(IHostEnvironment env, RoleMappedSchema schema)
29 references to Bind
Microsoft.ML.Data (17)
Commands\CrossValidationCommand.cs (1)
531var mapper = bindable.Bind(host, testData.Schema);
Commands\ScoreCommand.cs (2)
122var mapper = bindable.Bind(Host, schema); 287mapper = bindable.Bind(env, schema);
Prediction\Calibrator.cs (2)
664_predictor = _parent._bindable.Bind(env, schema) as ISchemaBoundRowMapper; 878var bound = bindable.Bind(env, schema);
Scorers\FeatureContributionCalculation.cs (1)
322var genericMapper = parent.GenericMapper.Bind(_env, schema);
Scorers\GenericScorer.cs (1)
74var mapper = bindable.Bind(env, new RoleMappedSchema(input, roles));
Scorers\MulticlassClassificationScorer.cs (1)
231var innerBound = _bindable.Bind(env, schema);
Scorers\PredictedLabelScorerBase.cs (2)
115var mapper = bindable.Bind(env, schema); 143var mapper = bindable.Bind(env, new RoleMappedSchema(input, roles));
Scorers\PredictionTransformer.cs (6)
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);
Utilities\ComponentCreation.cs (1)
172var mapper = bindable.Bind(env, data.Schema);
Microsoft.ML.Ensemble (1)
PipelineEnsemble.cs (1)
72Mappers[i] = bindable.Bind(Parent.Host, rmd.Schema) as ISchemaBoundRowMapper;
Microsoft.ML.EntryPoints (2)
ScoreModel.cs (2)
85var mapper = bindable.Bind(host, data.Schema); 135var mapper = bindable.Bind(host, data.Schema);
Microsoft.ML.FastTree (4)
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 (2)
663var bound = bindable.Bind(env, data.Schema); 734var bound = bindable.Bind(env, 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);
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);
Microsoft.ML.Tests (1)
TrainerEstimators\TreeEnsembleFeaturizerTest.cs (1)
54var boundMapper = (treeFeaturizer as ISchemaBindableMapper).Bind(Env, roleMappedSchema);