2 instantiations of BinaryClassifierScorer
Microsoft.ML.Data (2)
Scorers\BinaryClassifierScorer.cs (2)
166return h.Apply("Loading Model", ch => new BinaryClassifierScorer(h, ctx, input)); 229return new BinaryClassifierScorer(env, this, newSource);
10 references to BinaryClassifierScorer
Microsoft.ML.Data (10)
Prediction\CalibratorCatalog.cs (1)
40/// CalibratorEstimators take an <see cref="IDataView"/> (the output of a <see cref="BinaryClassifierScorer"/>)
Scorers\BinaryClassifierScorer.cs (7)
15[assembly: LoadableClass(typeof(BinaryClassifierScorer), typeof(BinaryClassifierScorer.Arguments), typeof(SignatureDataScorer), 19[assembly: LoadableClass(typeof(BinaryClassifierScorer), null, typeof(SignatureLoadDataTransform), 20"Binary Classifier Scorer", BinaryClassifierScorer.LoaderSignature)] 43loaderAssemblyName: typeof(BinaryClassifierScorer).Assembly.FullName); 137private BinaryClassifierScorer(IHostEnvironment env, BinaryClassifierScorer transform, IDataView newSource) 158public static BinaryClassifierScorer Create(IHostEnvironment env, ModelLoadContext ctx, IDataView input)
Scorers\PredictionTransformer.cs (2)
349var args = new BinaryClassifierScorer.Arguments { Threshold = Threshold, ThresholdColumn = ThresholdColumn }; 441var args = new BinaryClassifierScorer.Arguments { Threshold = Threshold, ThresholdColumn = ThresholdColumn };