AlgorithmTrainingSpecificationSupportedHyperParameter constructor
const
AlgorithmTrainingSpecificationSupportedHyperParameter({})
Creates a new AlgorithmTrainingSpecificationSupportedHyperParameter.
defaultValue Default value for the hyperparameter.
description Description of the hyperparameter.
isRequired Whether the hyperparameter is required.
isTunable Whether the hyperparameter can be tuned.
name Hyperparameter name.
range Allowed value range for the hyperparameter. See Parameter Range.
type Hyperparameter type. Allowed values are: Integer, Continuous, Categorical, and FreeText.
Implementation
const AlgorithmTrainingSpecificationSupportedHyperParameter({
this.defaultValue,
this.description,
this.isRequired,
this.isTunable,
required this.name,
this.range,
required this.type,
});