Show / Hide Table of Contents

Class CategoryScore

A category with its score.

Inheritance
object
CategoryScore
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiinferenceService.Models
Assembly: OCI.DotNetSDK.Generativeaiinference.dll
Syntax
public class CategoryScore

Properties

FlaggedModalities

Declaration
[JsonProperty(PropertyName = "flaggedModalities", ItemConverterType = typeof(ResponseEnumConverter))]
public List<CategoryScore.FlaggedModalitiesEnum> FlaggedModalities { get; set; }
Property Value
Type Description
List<CategoryScore.FlaggedModalitiesEnum>

The input modalities flagged by this category score. Present only when the request is processed using a non-empty multimodalInput.

Name

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

The name of the category.

Remarks

Required

Score

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

The score of the category.

Remarks

Required

In this article
Back to top