2 interfaces inheriting from ISchemaBindableMapper
Microsoft.ML.Data (2)
8 implementations of ISchemaBindableMapper
Microsoft.ML.Data (4)
Microsoft.ML.Ensemble (1)
Microsoft.ML.FastTree (1)
Microsoft.ML.Recommender (1)
Microsoft.ML.StandardTrainers (1)
81 references to ISchemaBindableMapper
Microsoft.ML.Core (5)
Microsoft.ML.Data (56)
Commands\ScoreCommand.cs (11)
112var bindable = ScoreUtils.GetSchemaBindableMapper(Host, predictor, scorerFactorySettings: scorer as ICommandLineComponentFactory);
256IComponentFactory<IPredictor, ISchemaBindableMapper> mapperFactory = null)
280IComponentFactory<IPredictor, ISchemaBindableMapper> mapperFactory,
285var bindable = GetSchemaBindableMapper(env, predictor, mapperFactory, scorerFactory as ICommandLineComponentFactory);
358/// If the above fails, it checks whether the predictor implements <see cref="ISchemaBindableMapper"/>
362public static ISchemaBindableMapper GetSchemaBindableMapper(
365IComponentFactory<IPredictor, ISchemaBindableMapper> mapperFactory = null,
378if (scorerFactorySettings != null && TryCreateBindableFromScorer(env, predictor, scorerFactorySettings, out var bindable))
382bindable = predictor as ISchemaBindableMapper;
394ICommandLineComponentFactory scorerSettings, out ISchemaBindableMapper bindable)
401return ComponentCatalog.TryCreateInstance<ISchemaBindableMapper, SignatureBindableMapper>(
Scorers\FeatureContributionCalculation.cs (6)
22[assembly: LoadableClass(typeof(ISchemaBindableMapper), typeof(FeatureContributionScorer), typeof(FeatureContributionScorer.Arguments),
25[assembly: LoadableClass(typeof(ISchemaBindableMapper), typeof(FeatureContributionScorer), null, typeof(SignatureLoadModel),
75private static ISchemaBindableMapper Create(IHostEnvironment env, Arguments args, IPredictor predictor)
85private static ISchemaBindableMapper Create(IHostEnvironment env, ModelLoadContext ctx)
103public readonly ISchemaBindableMapper GenericMapper;
311public ISchemaBindableMapper Bindable => _parent;
Scorers\MulticlassClassificationScorer.cs (10)
27[assembly: LoadableClass(typeof(ISchemaBindableMapper), typeof(MulticlassClassificationScorer.LabelNameBindableMapper), null, typeof(SignatureLoadModel),
75private readonly ISchemaBindableMapper _bindable;
87internal ISchemaBindableMapper Bindable => _bindable;
113private LabelNameBindableMapper(IHostEnvironment env, ISchemaBindableMapper bindable, VectorDataViewType type, Delegate getter,
137ctx.LoadModel<ISchemaBindableMapper, SignatureLoadModel>(_host, out _bindable, _innerDir);
161private static ISchemaBindableMapper Create(IHostEnvironment env, ModelLoadContext ctx)
206internal ISchemaBindableMapper Clone(ISchemaBindableMapper inner)
229ISchemaBoundMapper ISchemaBindableMapper.Bind(IHostEnvironment env, RoleMappedSchema schema)
268public ISchemaBindableMapper Bindable
Microsoft.ML.Ensemble (3)
Microsoft.ML.EntryPoints (2)
Microsoft.ML.FastTree (10)
TreeEnsembleFeaturizer.cs (9)
22[assembly: LoadableClass(typeof(ISchemaBindableMapper), typeof(TreeEnsembleFeaturizerTransform), typeof(TreeEnsembleFeaturizerBindableMapper.Arguments),
28[assembly: LoadableClass(typeof(ISchemaBindableMapper), typeof(TreeEnsembleFeaturizerTransform), null, typeof(SignatureLoadModel),
72public ISchemaBindableMapper Bindable => _owner;
522ISchemaBoundMapper ISchemaBindableMapper.Bind(IHostEnvironment env, RoleMappedSchema schema)
595private static ISchemaBindableMapper Create(IHostEnvironment env,
606private static ISchemaBindableMapper Create(IHostEnvironment env, ModelLoadContext ctx)
662ISchemaBindableMapper bindable = new TreeEnsembleFeaturizerBindableMapper(env, scorerArgs, predictor);
679var mapperFactory = ComponentFactoryUtils.CreateFromFunction<IPredictor, ISchemaBindableMapper>(
733ISchemaBindableMapper bindable = new TreeEnsembleFeaturizerBindableMapper(env, scorerArgs, predictor);
Microsoft.ML.Recommender (2)
Microsoft.ML.StandardTrainers (2)
Microsoft.ML.Tests (1)