Values_1.TrialComponentParameterValueSourceThe value of a hyperparameter. Only one of NumberValue or StringValue can be specified. This object is specified in the CreateTrialComponent request.
type nonrec t = {stringValue : Values_0.StringParameterValue.t option;The string value of a categorical hyperparameter. If you specify a value for this parameter, you can't specify the NumberValue parameter.
*)numberValue : DoubleParameterValue.t option;The numeric value of a numeric hyperparameter. If you specify a value for this parameter, you can't specify the StringValue parameter.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Double of DoubleParameterValue.t
| `String of Values_0.StringParameterValue.t ])
list ]