ClassResult

public struct ClassResult : Codable, Equatable

Result of a class within a classifier.

  • Name of the class. Class names are translated in the language defined by the Accept-Language request header for the build-in classifier IDs (default, food, and explicit). Class names of custom classifiers are not translated. The response might not be in the specified language when the requested language is not supported or when there is no translation for the class name.

    Declaration

    Swift

    public var `class`: String
  • Confidence score for the property in the range of 0 to 1. A higher score indicates greater likelihood that the class is depicted in the image. The default threshold for returning scores from a classifier is 0.5.

    Declaration

    Swift

    public var score: Double
  • Knowledge graph of the property. For example, /fruit/pome/apple/eating apple/Granny Smith. Included only if identified.

    Declaration

    Swift

    public var typeHierarchy: String?