15 references to PredictedLabel
Microsoft.ML.Core.Tests (4)
UnitTests\ScoreSchemaTest.cs (4)
48
Assert.Equal(AnnotationUtils.Const.ScoreValueKind.
PredictedLabel
, scoreColumn.Name);
87
Assert.Equal(AnnotationUtils.Const.ScoreValueKind.
PredictedLabel
, scoreValueKindValue.ToString());
105
Assert.Equal(AnnotationUtils.Const.ScoreValueKind.
PredictedLabel
, scoreColumn.Name);
134
Assert.Equal(AnnotationUtils.Const.ScoreValueKind.
PredictedLabel
, scoreValueKindValue.ToString());
Microsoft.ML.Data (10)
Evaluators\AnomalyDetectionEvaluator.cs (1)
599
RoleMappedSchema.CreatePair(AnnotationUtils.Const.ScoreValueKind.
PredictedLabel
, predictedLabel));
Evaluators\BinaryClassifierEvaluator.cs (4)
822
RoleMappedSchema.CreatePair(AnnotationUtils.Const.ScoreValueKind.
PredictedLabel
, predictedLabel));
870
RoleMappedSchema.CreatePair(AnnotationUtils.Const.ScoreValueKind.
PredictedLabel
, predictedLabel));
949
RoleMappedSchema.CreatePair(AnnotationUtils.Const.ScoreValueKind.
PredictedLabel
, predictedLabel));
995
RoleMappedSchema.CreatePair(AnnotationUtils.Const.ScoreValueKind.
PredictedLabel
, predictedLabel));
Evaluators\MulticlassClassificationEvaluator.cs (1)
560
RoleMappedSchema.CreatePair(AnnotationUtils.Const.ScoreValueKind.
PredictedLabel
, predictedLabel));
Scorers\PredictedLabelScorerBase.cs (1)
256
dst = AnnotationUtils.Const.ScoreValueKind.
PredictedLabel
.AsMemory();
Scorers\ScoreSchemaFactory.cs (3)
109
/// This function returns a schema for sequence predictor's output. Its output column is always called <see cref="AnnotationUtils.Const.ScoreValueKind.
PredictedLabel
"/>.
130
(ref ReadOnlyMemory<char> value) => value = AnnotationUtils.Const.ScoreValueKind.
PredictedLabel
.AsMemory());
134
schemaBuilder.AddColumn(AnnotationUtils.Const.ScoreValueKind.
PredictedLabel
, scoreType, metadataBuilder.ToAnnotations());
Microsoft.ML.EntryPoints (1)
ScoreColumnSelector.cs (1)
95
&& ReadOnlyMemoryUtils.EqualsStr(AnnotationUtils.Const.ScoreValueKind.
PredictedLabel
, tmp))