Show / Hide Table of Contents

Class NamedEntityRecognitionEvaluationResults

Named entity recognition model testing and evaluation results

Inheritance
object
EvaluationResults
NamedEntityRecognitionEvaluationResults
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 NamedEntityRecognitionEvaluationResults : EvaluationResults

Properties

ConfusionMatrix

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

class level confusion matrix

EntityMetrics

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

List of entity metrics

Labels

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

labels

Metrics

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