Module Values_1.TrialComponentParameterValueSource

The value of a hyperparameter. Only one of NumberValue or StringValue can be specified. This object is specified in the CreateTrialComponent request.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. 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.

    *)
}
Sourceval make : ?stringValue:??? -> ?numberValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of DoubleParameterValue.t | `String of Values_0.StringParameterValue.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t