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 with `log` boolean step must be `None` if log is true. |`tune.qloguniform`|
|**Uniform Continuous**|`hp.uniform`|`FloatDistribution`|`tune.uniform`|`p.Scalar` with uniform transformation |
30
+
|**Quantized Uniform**|`hp.quniform`|`DiscreteUniformDistribution` (deprecated) |`tune.quniform`|`p.Scalar` with uniform and step specified |
31
+
|**Log Uniform**|`hp.loguniform`|`LogUniformDistribution` (deprecated) |`tune.loguniform`|`p.Log` with uniform transformation |
32
+
|**Uniform Integer**|`hp.randint` or quantized distributions with step size `q` set to 1 |`IntDistribution`|`tune.randint`|`p.Scalar` with integer transformation |
|**Quantized Integer**|`hp.quniformint`|`IntUniformDistribution` (deprecated) ||`p.Scalar` with integer and step specified |
40
+
|**Log Integer**||`IntLogUniformDistribution` (deprecated) |`tune.lograndint`|`p.Scalar` with log-integer transformation |
41
+
42
+
43
+
- Note:
44
+
In Nevergrad, parameter types like p.Scalar, p.Log, and p.Choice are mapped to corresponding Hyperopt search space definitions like hp.uniform, hp.loguniform, and hp.choice using internal functions to convert parameter bounds and distributions.
0 commit comments