AWSMachineLearningCreateEvaluationInput

Objective-C

@interface AWSMachineLearningCreateEvaluationInput

Swift

class AWSMachineLearningCreateEvaluationInput
  • The ID of the DataSource for the evaluation. The schema of the DataSource must match the schema used to create the MLModel.

    Declaration

    Objective-C

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

    Swift

    var evaluationDataSourceId: String? { get set }
  • A user-supplied ID that uniquely identifies the Evaluation.

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

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

    Swift

    var evaluationName: String? { get set }
  • The ID of the MLModel to evaluate.

    The schema used in creating the MLModel must match the schema of the DataSource used in the Evaluation.

    Declaration

    Objective-C

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

    Swift

    var mlModelId: String? { get set }