Show / Hide Table of Contents

Class TextClassificationEvaluationResults

Text Classification model testing and evaluation results

Inheritance
object
EvaluationResults
TextClassificationEvaluationResults
Inherited Members
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 TextClassificationEvaluationResults : EvaluationResults

Properties

ClassMetrics

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

List of text classification metrics

ConfusionMatrix

Declaration
[JsonProperty(PropertyName = "confusionMatrix")]
public Dictionary<string, ConfusionMatrixDetails> ConfusionMatrix { get; set; }
Property Value
Type Description
Dictionary<string, ConfusionMatrixDetails>

class level confusion matrix

Labels

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

labels

Metrics

Declaration
[JsonProperty(PropertyName = "metrics")]
public TextClassificationModelMetrics Metrics { get; set; }
Property Value
Type Description
TextClassificationModelMetrics
In this article
Back to top