Class TextClassificationModelEvaluationResult
Possible TXTC model error analysis
Inherited Members
Namespace: Oci.AilanguageService.Models
Assembly: OCI.DotNetSDK.Ailanguage.dll
Syntax
public class TextClassificationModelEvaluationResult : EvaluationResultSummaryProperties
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