Class GoogleCloudMlV1StudyConfigParameterSpec
Represents a single parameter to optimize.
Inheritance
GoogleCloudMlV1StudyConfigParameterSpec
Assembly: Google.Apis.CloudMachineLearningEngine.v1.dll
Syntax
public class GoogleCloudMlV1StudyConfigParameterSpec : IDirectResponseSchema
Properties
CategoricalValueSpec
The value spec for a 'CATEGORICAL' parameter.
Declaration
[JsonProperty("categoricalValueSpec")]
public virtual GoogleCloudMlV1StudyConfigParameterSpecCategoricalValueSpec CategoricalValueSpec { get; set; }
Property Value
ChildParameterSpecs
A child node is active if the parameter's value matches the child node's matching_parent_values. If two
items in child_parameter_specs have the same name, they must have disjoint matching_parent_values.
Declaration
[JsonProperty("childParameterSpecs")]
public virtual IList<GoogleCloudMlV1StudyConfigParameterSpec> ChildParameterSpecs { get; set; }
Property Value
DiscreteValueSpec
The value spec for a 'DISCRETE' parameter.
Declaration
[JsonProperty("discreteValueSpec")]
public virtual GoogleCloudMlV1StudyConfigParameterSpecDiscreteValueSpec DiscreteValueSpec { get; set; }
Property Value
DoubleValueSpec
The value spec for a 'DOUBLE' parameter.
Declaration
[JsonProperty("doubleValueSpec")]
public virtual GoogleCloudMlV1StudyConfigParameterSpecDoubleValueSpec DoubleValueSpec { get; set; }
Property Value
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
IntegerValueSpec
The value spec for an 'INTEGER' parameter.
Declaration
[JsonProperty("integerValueSpec")]
public virtual GoogleCloudMlV1StudyConfigParameterSpecIntegerValueSpec IntegerValueSpec { get; set; }
Property Value
Parameter
Required. The parameter name must be unique amongst all ParameterSpecs.
Declaration
[JsonProperty("parameter")]
public virtual string Parameter { get; set; }
Property Value
ParentCategoricalValues
Declaration
[JsonProperty("parentCategoricalValues")]
public virtual GoogleCloudMlV1StudyConfigParameterSpecMatchingParentCategoricalValueSpec ParentCategoricalValues { get; set; }
Property Value
ParentDiscreteValues
Declaration
[JsonProperty("parentDiscreteValues")]
public virtual GoogleCloudMlV1StudyConfigParameterSpecMatchingParentDiscreteValueSpec ParentDiscreteValues { get; set; }
Property Value
ParentIntValues
Declaration
[JsonProperty("parentIntValues")]
public virtual GoogleCloudMlV1StudyConfigParameterSpecMatchingParentIntValueSpec ParentIntValues { get; set; }
Property Value
ScaleType
How the parameter should be scaled. Leave unset for categorical parameters.
Declaration
[JsonProperty("scaleType")]
public virtual string ScaleType { get; set; }
Property Value
Type
Required. The type of the parameter.
Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Implements