Skip to content

Commit 8d266f0

Browse files
fix
Signed-off-by: Shashank Mittal <[email protected]>
1 parent a24d3e3 commit 8d266f0

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

docs/proposals/parameter-distribution.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,18 +83,14 @@ ref: https://scikit-optimize.github.io/stable/modules/classes.html#module-skopt.
8383
| Distribution Type | Hyperopt | Optuna | Ray Tune |
8484
|-------------------------------|-----------------------|--------------------------------------|-----------------------|
8585
| **Uniform Continuous** | `hp.uniform` | `FloatDistribution` | `tune.uniform` |
86-
| **Quantized Uniform** | `hp.quniform` | `DiscreteUniformDistribution`(deprecated) Use FloatDistribution instead. | `tune.quniform` |
87-
| **Log Uniform** | `hp.loguniform` | `LogUniformDistribution`(deprecated) Use FloatDistribution instead. | `tune.loguniform` |
86+
| **Quantized Uniform** | `hp.quniform` | `DiscreteUniformDistribution`(deprecated) Use `FloatDistribution` instead. | `tune.quniform` |
87+
| **Log Uniform** | `hp.loguniform` | `LogUniformDistribution`(deprecated) Use `FloatDistribution` instead. | `tune.loguniform` |
8888
| **Uniform Integer** | `hp.randint` | `IntDistribution` | `tune.randint` |
8989
| **Categorical** | `hp.choice` | `CategoricalDistribution` | `tune.choice` |
90-
9190
| **Quantized Log Uniform** | `hp.qloguniform` | | `tune.qloguniform` |
92-
| **Quantized Integer** | `hp.quniformint` | `IntUniformDistribution` | |
93-
| **Log Integer** | | `IntLogUniformDistribution` | `tune.lograndint` |
91+
| **Quantized Integer** | `hp.quniformint` | `IntUniformDistribution`(deprecated) Use `IntDistribution` instead. | |
92+
| **Log Integer** | | `IntLogUniformDistribution`(deprecated) Use `IntDistribution` instead. | `tune.lograndint` |
9493
| **Normal** | `hp.normal` | | `tune.randn` |
95-
| **Quantized Normal** | `hp.qnormal` | | `tune.qrandn` |
96-
| **Log Normal** | `hp.lognormal` | | |
97-
| **Quantized Log Normal** | `hp.qlognormal` | | |
9894

9995

10096
### Testing

0 commit comments

Comments
 (0)