You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**Quantized Log Uniform**|`hp.qloguniform`| Custom Implementation Use `FloatDistribution` instead. |`tune.qloguniform`|
31
+
|**Quantized Log Uniform**|`hp.qloguniform`| Custom Implementation Use `FloatDistribution` instead with `log` boolean step must be `None` if log is true. |`tune.qloguniform`|
Katib will create each Hyper parameter from this config.
94
+
95
+
96
+
| Field | Type | Label | Description |
97
+
| ----- | ---- | ----- | ----------- |
98
+
| name |[string](#string)|| Name of the Distribution. |
99
+
| distribution_type |[DistributionType](#api-v1-beta1-DistributionType)|| Type of the Distribution. |
100
+
| feasible_space |[FeasibleSpace](#api-v1-beta1-FeasibleSpace)|| FeasibleSpace for the Distribution. |
101
+
102
+
<aname="api-v1-beta1-DistributionType"></a>
103
+
104
+
### DistributionType
105
+
Types of value for HyperParameter Distributions.
106
+
107
+
| Name | Number | Description |
108
+
| ---- | ------ | ----------- |
109
+
| UNIFORM | 0 | Continuous uniform distribution. Samples values evenly between a minimum and maximum value. Use "Max/Min". Use "Step" for `q`. |
110
+
| LOGUNIFORM | 1 | Samples values such that their logarithm is uniformly distributed. Use "Max/Min". Use "Step" for `q`. |
111
+
| NORMAL | 2 | Normal (Gaussian) distribution type. Samples values according to a normal distribution characterized by a mean and standard deviation. Use "Max/Min". Use "Step" for `q`. |
112
+
| LOGNORMAL | 3 | Log-normal distribution type. Samples values such that their logarithm is normally distributed. Use "Max/Min". Use "Step" for `q`. |
113
+
| CATEGORICAL | 4 | Categorical type. Use "List" as string. |
114
+
115
+
116
+
const (
117
+
CategoricalDistribution Distribution = "categorical"
118
+
UniformDistribution Distribution = "uniform"
119
+
LogUniformDistribution Distribution = "logUniform"
120
+
NormalDistribution Distribution = "normal"
121
+
LogNormalDistribution Distribution = "logNormal"
122
+
)
123
+
124
+
<aname="api-v1-beta1-FeasibleSpace"></a>
125
+
126
+
### FeasibleSpace
127
+
Feasible space for optimization.
128
+
Int and Double type use Max/Min.
129
+
Discrete and Categorical type use List.
130
+
131
+
132
+
| Field | Type | Label | Description |
133
+
| ----- | ---- | ----- | ----------- |
134
+
| max |[string](#string)|| Max Value |
135
+
| min |[string](#string)|| Minimum Value |
136
+
| list |[string](#string)| repeated | List of Values. |
137
+
| step |[string](#string)|| Step for double or int parameter or q for quantization|
0 commit comments