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 classificationMLModel
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 theMLModel
, such astrue
. Output values less than theScoreThreshold
receive a negative response from theMLModel
, such asfalse
.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable scoreThreshold;
Swift
var scoreThreshold: NSNumber? { get set }