Values_0.HyperParameterSpecificationSourceDefines a hyperparameter to be used by an algorithm.
type nonrec t = {name : ParameterName.t;The name of this hyperparameter. The name must be unique.
*)description : EntityDescription.t option;A brief description of the hyperparameter.
*)type_ : ParameterType.t;The type of this hyperparameter. The valid types are Integer, Continuous, Categorical, and FreeText.
*)range : ParameterRange.t option;The allowed range for this hyperparameter.
*)isTunable : Boolean.t option;Indicates whether this hyperparameter is tunable in a hyperparameter tuning job.
*)isRequired : Boolean.t option;Indicates whether this hyperparameter is required.
*)defaultValue : HyperParameterValue.t option;The default value for this hyperparameter. If a default value is specified, a hyperparameter cannot be required.
*)}val make :
?description:??? ->
?range:??? ->
?isTunable:??? ->
?isRequired:??? ->
?defaultValue:??? ->
name:ParameterName.t ->
type_:ParameterType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `String of ParameterName.t
| `Structure of
(string
* [> `Structure of
(string
* [> `List of [> `String of ParameterValue.t ] list
| `String of ParameterValue.t ])
list ])
list ])
list ]