Algorithm
public struct Algorithm : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The Amazon Resource Name (ARN) of the algorithm.
Declaration
Swift
public let algorithmArn: String?
-
The URI of the Docker container for the algorithm image.
Declaration
Swift
public let algorithmImage: AlgorithmImage?
-
The date and time (in Unix time) that the algorithm was created.
Declaration
Swift
public let creationDateTime: TimeStamp?
-
Specifies the default hyperparameters, their ranges, and whether they are tunable. A tunable hyperparameter can have its value determined during hyperparameter optimization (HPO).
Declaration
Swift
public let defaultHyperParameterRanges: DefaultHyperParameterRanges?
-
Specifies the default hyperparameters.
Declaration
Swift
public let defaultHyperParameters: [String : String]?
-
Specifies the default maximum number of training jobs and parallel training jobs.
Declaration
Swift
public let defaultResourceConfig: [String : String]?
-
The date and time (in Unix time) that the algorithm was last updated.
Declaration
Swift
public let lastUpdatedDateTime: TimeStamp?
-
The name of the algorithm.
Declaration
Swift
public let name: String?
-
The Amazon Resource Name (ARN) of the role.
Declaration
Swift
public let roleArn: String?
-
The training input mode.
Declaration
Swift
public let trainingInputMode: String?
-
init(algorithmArn:algorithmImage:creationDateTime:defaultHyperParameterRanges:defaultHyperParameters:defaultResourceConfig:lastUpdatedDateTime:name:roleArn:trainingInputMode:)
Undocumented
Declaration
Swift
public init(algorithmArn: String? = nil, algorithmImage: AlgorithmImage? = nil, creationDateTime: TimeStamp? = nil, defaultHyperParameterRanges: DefaultHyperParameterRanges? = nil, defaultHyperParameters: [String : String]? = nil, defaultResourceConfig: [String : String]? = nil, lastUpdatedDateTime: TimeStamp? = nil, name: String? = nil, roleArn: String? = nil, trainingInputMode: String? = nil)