HyperParameterSpecification

public struct HyperParameterSpecification : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The default value for this hyperparameter. If a default value is specified, a hyperparameter cannot be required.

    Declaration

    Swift

    public let defaultValue: String?
  • A brief description of the hyperparameter.

    Declaration

    Swift

    public let description: String?
  • Indicates whether this hyperparameter is required.

    Declaration

    Swift

    public let isRequired: Bool?
  • Indicates whether this hyperparameter is tunable in a hyperparameter tuning job.

    Declaration

    Swift

    public let isTunable: Bool?
  • The name of this hyperparameter. The name must be unique.

    Declaration

    Swift

    public let name: String
  • The allowed range for this hyperparameter.

    Declaration

    Swift

    public let range: ParameterRange?
  • The type of this hyperparameter. The valid types are Integer, Continuous, Categorical, and FreeText.

    Declaration

    Swift

    public let type: ParameterType
  • Undocumented

    Declaration

    Swift

    public init(defaultValue: String? = nil, description: String? = nil, isRequired: Bool? = nil, isTunable: Bool? = nil, name: String, range: ParameterRange? = nil, type: ParameterType)
  • Declaration

    Swift

    public func validate(name: String) throws