2 instantiations of BinaryClassifierScorer
Microsoft.ML.Data (2)
Scorers\BinaryClassifierScorer.cs (2)
166
return h.Apply("Loading Model", ch => new
BinaryClassifierScorer
(h, ctx, input));
229
return 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)]
43
loaderAssemblyName: typeof(
BinaryClassifierScorer
).Assembly.FullName);
137
private BinaryClassifierScorer(IHostEnvironment env,
BinaryClassifierScorer
transform, IDataView newSource)
158
public static
BinaryClassifierScorer
Create(IHostEnvironment env, ModelLoadContext ctx, IDataView input)
Scorers\PredictionTransformer.cs (2)
349
var args = new
BinaryClassifierScorer
.Arguments { Threshold = Threshold, ThresholdColumn = ThresholdColumn };
441
var args = new
BinaryClassifierScorer
.Arguments { Threshold = Threshold, ThresholdColumn = ThresholdColumn };