TrainingJobStatusCounters
public struct TrainingJobStatusCounters : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The number of completed training jobs launched by the hyperparameter tuning job.
Declaration
Swift
public let completed: Int?
-
The number of in-progress training jobs launched by a hyperparameter tuning job.
Declaration
Swift
public let inProgress: Int?
-
The number of training jobs that failed and can’t be retried. A failed training job can’t be retried if it failed because a client error occurred.
Declaration
Swift
public let nonRetryableError: Int?
-
The number of training jobs that failed, but can be retried. A failed training job can be retried only if it failed because an internal service error occurred.
Declaration
Swift
public let retryableError: Int?
-
The number of training jobs launched by a hyperparameter tuning job that were manually stopped.
Declaration
Swift
public let stopped: Int?
-
Undocumented
Declaration
Swift
public init(completed: Int? = nil, inProgress: Int? = nil, nonRetryableError: Int? = nil, retryableError: Int? = nil, stopped: Int? = nil)