ConfusionMatrix

public struct ConfusionMatrix : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The number of matches in the data that the transform didn’t find, in the confusion matrix for your transform.

    Declaration

    Swift

    public let numFalseNegatives: Int64?
  • The number of nonmatches in the data that the transform incorrectly classified as a match, in the confusion matrix for your transform.

    Declaration

    Swift

    public let numFalsePositives: Int64?
  • The number of nonmatches in the data that the transform correctly rejected, in the confusion matrix for your transform.

    Declaration

    Swift

    public let numTrueNegatives: Int64?
  • The number of matches in the data that the transform correctly found, in the confusion matrix for your transform.

    Declaration

    Swift

    public let numTruePositives: Int64?
  • Undocumented

    Declaration

    Swift

    public init(numFalseNegatives: Int64? = nil, numFalsePositives: Int64? = nil, numTrueNegatives: Int64? = nil, numTruePositives: Int64? = nil)