1 interface inheriting from ISchemaBoundMapper
Microsoft.ML.Core (1)
Data\ISchemaBindableMapper.cs (1)
62internal interface ISchemaBoundRowMapper : ISchemaBoundMapper
28 references to ISchemaBoundMapper
Microsoft.ML.Core (10)
Data\ISchemaBindableMapper.cs (9)
14/// <see cref="ISchemaBoundMapper"/>, which is an interface that has methods to return the names and indices of the input columns 20/// includes implementing a corresponding <see cref="ISchemaBoundMapper"/> (or <see cref="ISchemaBoundRowMapper"/>) and a corresponding ISchema 21/// for the output schema of the <see cref="ISchemaBoundMapper"/>. In case the <see cref="ISchemaBoundRowMapper"/> interface is implemented, 27ISchemaBoundMapper Bind(IHostEnvironment env, RoleMappedSchema schema); 31/// This interface is used to map a schema from input columns to output columns. The <see cref="ISchemaBoundMapper"/> should keep track 38/// The <see cref="RoleMappedSchema"/> that was passed to the <see cref="ISchemaBoundMapper"/> in the binding process. 48/// A property to get back the <see cref="ISchemaBindableMapper"/> that produced this <see cref="ISchemaBoundMapper"/>. 59/// This interface extends <see cref="ISchemaBoundMapper"/>. 80/// the returned value must have the same schema as <see cref="ISchemaBoundMapper.OutputSchema"/>.
Data\RoleMappedSchema.cs (1)
285/// for implementing the <see cref="ISchemaBoundMapper.GetInputColumnRoles"/> method.
Microsoft.ML.Data (13)
Commands\CrossValidationCommand.cs (1)
531var mapper = bindable.Bind(host, testData.Schema);
Commands\ScoreCommand.cs (1)
122var mapper = bindable.Bind(Host, schema);
Model\Onnx\ICanSaveOnnx.cs (1)
60/// object, when the <see cref="ISchemaBoundMapper"/> was created that this transform
Model\Pfa\ICanSavePfa.cs (1)
64/// object, when the <see cref="ISchemaBoundMapper"/> was created that this transform
Prediction\Calibrator.cs (1)
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)
109var mapper = bindable.Bind(env, schema); 137var mapper = bindable.Bind(env, new RoleMappedSchema(input, roles));
Scorers\RowToRowScorerBase.cs (1)
320/// Base bindings for a scorer based on an <see cref="ISchemaBoundMapper"/>. This assumes that input schema columns
Scorers\SchemaBindablePredictorWrapper.cs (1)
621/// wrapper because they need the quantiles to create the <see cref="ISchemaBoundMapper"/>.
Utilities\ComponentCreation.cs (1)
172var mapper = bindable.Bind(env, data.Schema);
Microsoft.ML.EntryPoints (2)
ScoreModel.cs (2)
85var mapper = bindable.Bind(host, data.Schema); 135var mapper = bindable.Bind(host, data.Schema);
Microsoft.ML.FastTree (2)
TreeEnsembleFeaturizer.cs (2)
663var bound = bindable.Bind(env, data.Schema); 734var bound = bindable.Bind(env, data.Schema);
Microsoft.ML.Tests (1)
TrainerEstimators\TreeEnsembleFeaturizerTest.cs (1)
54var boundMapper = (treeFeaturizer as ISchemaBindableMapper).Bind(Env, roleMappedSchema);