2 implementations of FeatureColumnName
Microsoft.ML.Data (2)
Prediction\CalibratorCatalog.cs (1)
203string ISingleFeaturePredictionTransformer<TICalibrator>.FeatureColumnName => DefaultColumnNames.Score;
Scorers\PredictionTransformer.cs (1)
213public string FeatureColumnName { get; }
15 references to FeatureColumnName
Microsoft.ML.Data (4)
Prediction\CalibratorCatalog.cs (1)
204string ISingleFeaturePredictionTransformer.FeatureColumnName => ((ISingleFeaturePredictionTransformer<TICalibrator>)this).FeatureColumnName;
Prediction\IPredictionTransformer.cs (1)
23/// An ISingleFeaturePredictionTransformer contains the name of the <see cref="FeatureColumnName"/>
Transforms\ExplainabilityCatalog.cs (2)
43=> new FeatureContributionCalculatingEstimator(CatalogUtils.GetEnvironment(catalog), predictionTransformer.Model, numberOfPositiveContributions, numberOfNegativeContributions, predictionTransformer.FeatureColumnName, normalize); 71=> new FeatureContributionCalculatingEstimator(CatalogUtils.GetEnvironment(catalog), predictionTransformer.Model.SubModel, numberOfPositiveContributions, numberOfNegativeContributions, predictionTransformer.FeatureColumnName, normalize);
Microsoft.ML.StandardTrainers (7)
Standard\MulticlassClassification\OneVersusAllTrainer.cs (4)
179var trainedData = new RoleMappedData(view, label: trainerLabel, feature: transformer.FeatureColumnName); 185return new BinaryPredictionTransformer<TScalarPredictor>(Host, calibratedModel, trainedData.Data.Schema, transformer.FeatureColumnName); 188return new BinaryPredictionTransformer<TScalarPredictor>(Host, transformer.Model, view.Schema, transformer.FeatureColumnName); 230featureColumn = transformer.FeatureColumnName;
Standard\MulticlassClassification\PairwiseCouplingTrainer.cs (3)
155var trainedData = new RoleMappedData(view, label: trainerLabel, feature: transformer.FeatureColumnName); 161return new BinaryPredictionTransformer<TDistPredictor>(Host, calibratedModel, trainedData.Data.Schema, transformer.FeatureColumnName); 212featureColumn = transformer.FeatureColumnName;
Microsoft.ML.Transforms (4)
PermutationFeatureImportanceExtensions.cs (4)
81predictionTransformer.FeatureColumnName, 231predictionTransformer.FeatureColumnName, 385predictionTransformer.FeatureColumnName, 546predictionTransformer.FeatureColumnName,