2 implementations of ISingleFeaturePredictionTransformer
Microsoft.ML.Data (2)
Prediction\CalibratorCatalog.cs (1)
165public abstract class CalibratorTransformer<TICalibrator> : RowToRowTransformerBase, ISingleFeaturePredictionTransformer<TICalibrator>, ISingleFeaturePredictionTransformer
Scorers\PredictionTransformer.cs (1)
207public abstract class SingleFeaturePredictionTransformerBase<TModel> : PredictionTransformerBase<TModel>, ISingleFeaturePredictionTransformer<TModel>, ISingleFeaturePredictionTransformer
4 references to ISingleFeaturePredictionTransformer
Microsoft.ML.Data (1)
Prediction\CalibratorCatalog.cs (1)
204string ISingleFeaturePredictionTransformer.FeatureColumnName => ((ISingleFeaturePredictionTransformer<TICalibrator>)this).FeatureColumnName;
Microsoft.ML.Transforms (3)
PermutationFeatureImportanceExtensions.cs (3)
666ISingleFeaturePredictionTransformer lastTransformer = null; 672if (transformer is ISingleFeaturePredictionTransformer singlePredictionTransformer) 679else lastTransformer = model as ISingleFeaturePredictionTransformer;