1 type derived from ClassificationMoment
Microsoft.ML.Fairlearn (1)
Reductions\UtilityParity.cs (1)
23public class UtilityParity : ClassificationMoment
8 references to ClassificationMoment
Microsoft.ML.Fairlearn (8)
AutoML\AutoMLExperimentExtension.cs (4)
29public static AutoMLExperiment SetBinaryClassificationMoment(this AutoMLExperiment experiment, ClassificationMoment moment) 55experiment.ServiceCollection.AddSingleton<ClassificationMoment>((serviceProvider) => 76var moment = serviceProvider.GetRequiredService<ClassificationMoment>();
AutoML\TunerFactory.cs (2)
18private readonly ClassificationMoment _moment; 28_moment = provider.GetService<ClassificationMoment>();
Reductions\GridSearchTrialRunner.cs (2)
33private readonly ClassificationMoment _moment; 36public GridSearchTrailRunner(MLContext context, ITrainValidateDatasetManager datasetManager, string labelColumn, string sensitiveColumn, SweepablePipeline pipeline, ClassificationMoment moment)