Show / Hide Table of Contents

Class TextClassificationModelEvaluationResult

Possible TXTC model error analysis

Inheritance
object
EvaluationResultSummary
TextClassificationModelEvaluationResult
Inherited Members
EvaluationResultSummary.FreeformTags
EvaluationResultSummary.DefinedTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AilanguageService.Models
Assembly: OCI.DotNetSDK.Ailanguage.dll
Syntax
public class TextClassificationModelEvaluationResult : EvaluationResultSummary

Properties

Location

Declaration
[Required(ErrorMessage = "Location is required.")]
[JsonProperty(PropertyName = "location")]
public string Location { get; set; }
Property Value
Type Description
string

For CSV format location is rowId(1 is header) and for JSONL location is jsonL line sequence(1 is metadata)

Remarks

Required

PredictedLabels

Declaration
[JsonProperty(PropertyName = "predictedLabels")]
public List<string> PredictedLabels { get; set; }
Property Value
Type Description
List<string>

List of predicted labels by custom multi class or multi label TextClassification model

TrueLabels

Declaration
[Required(ErrorMessage = "TrueLabels is required.")]
[JsonProperty(PropertyName = "trueLabels")]
public List<string> TrueLabels { get; set; }
Property Value
Type Description
List<string>

List of true(actual) labels in test data for multi class or multi label TextClassification

Remarks

Required

In this article
Back to top