AWSMachineLearningUpdateMLModelInput

Objective-C

@interface AWSMachineLearningUpdateMLModelInput

Swift

class AWSMachineLearningUpdateMLModelInput
  • The ID assigned to the MLModel during creation.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable MLModelId;

    Swift

    var mlModelId: String? { get set }
  • A user-supplied name or description of the MLModel.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable MLModelName;

    Swift

    var mlModelName: String? { get set }
  • The ScoreThreshold used in binary classification MLModel that marks the boundary between a positive prediction and a negative prediction.

    Output values greater than or equal to the ScoreThreshold receive a positive result from the MLModel, such as true. Output values less than the ScoreThreshold receive a negative response from the MLModel, such as false.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable scoreThreshold;

    Swift

    var scoreThreshold: NSNumber? { get set }