11 references to ScoreColumnKind
Microsoft.ML.Core (1)
Data\AnnotationUtils.cs (1)
429
cols.Add(new SchemaShape.Column(Kinds.
ScoreColumnKind
, SchemaShape.Column.VectorKind.Scalar, TextDataViewType.Instance, false));
Microsoft.ML.Core.Tests (8)
UnitTests\ScoreSchemaTest.cs (2)
62
Assert.Equal(AnnotationUtils.Kinds.
ScoreColumnKind
, scoreMetadata.Schema[1].Name);
118
Assert.Equal(AnnotationUtils.Kinds.
ScoreColumnKind
, scoreMetadata.Schema[0].Name);
UnitTests\TestEntryPoints.cs (6)
1633
var type = binaryScored.Schema[scoreCol.Value.Index].Annotations.Schema.GetColumnOrNull(AnnotationUtils.Kinds.
ScoreColumnKind
)?.Type;
1636
binaryScored.Schema[scoreCol.Value.Index].Annotations.GetValue(AnnotationUtils.Kinds.
ScoreColumnKind
, ref kind);
1642
type = regressionScored.Schema[scoreCol.Value.Index].Annotations.Schema[AnnotationUtils.Kinds.
ScoreColumnKind
].Type;
1644
regressionScored.Schema[scoreCol.Value.Index].Annotations.GetValue(AnnotationUtils.Kinds.
ScoreColumnKind
, ref kind);
1650
type = anomalyScored.Schema[scoreCol.Value.Index].Annotations.Schema[AnnotationUtils.Kinds.
ScoreColumnKind
].Type;
1652
anomalyScored.Schema[scoreCol.Value.Index].Annotations.GetValue(AnnotationUtils.Kinds.
ScoreColumnKind
, ref kind);
Microsoft.ML.Data (2)
Scorers\ScoreSchemaFactory.cs (2)
20
/// <param name="scoreColumnKindValue">The kind of the score column. It's the value of <see cref="AnnotationUtils.Kinds.
ScoreColumnKind
"/> in the score column's metadata.</param>
113
/// <see cref="AnnotationUtils.Kinds.
ScoreColumnKind
"/>.</param>