Skip to content

Commit 485cf0a

Browse files
fix
Signed-off-by: Shashank Mittal <[email protected]>
1 parent 1492ebf commit 485cf0a

File tree

1 file changed

+5
-15
lines changed

1 file changed

+5
-15
lines changed

docs/proposals/parameter-distribution.md

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ def _get_search_space(param_name, param):
5454
The `_get_search_space` function constructs a search space that represents the entire parameter space defined by Nevergrad.
5555

5656
## API Design
57-
- [Distribution](#api-v1-beta1-Distribution)
5857
- [ExperimentSpec](#api-v1-beta1-ExperimentSpec)
5958

6059
<a name="api-v1-beta1-ExperimentSpec"></a>
@@ -68,36 +67,27 @@ It is assumed that objective function f(x) does not change in the course of an E
6867
| Field | Type | Label | Description |
6968
| ----- | ---- | ----- | ----------- |
7069
| parameter_specs | [ExperimentSpec.ParameterSpecs](#api-v1-beta1-ExperimentSpec-ParameterSpecs) | | |
71-
| distribution | [ExperimentSpec.Distribution](#api-v1-beta1-ExperimentSpec-Distribution) | | |
7270
| objective | [ObjectiveSpec](#api-v1-beta1-ObjectiveSpec) | | Objective specification for the Experiment. |
7371
| algorithm | [AlgorithmSpec](#api-v1-beta1-AlgorithmSpec) | | HP or NAS algorithm specification for the Experiment. |
7472
| early_stopping | [EarlyStoppingSpec](#api-v1-beta1-EarlyStoppingSpec) | | Early stopping specification for the Experiment. |
7573
| parallel_trial_count | [int32](#int32) | | How many Trials can be processed in parallel. |
7674
| max_trial_count | [int32](#int32) | | Max completed Trials to mark Experiment as succeeded. |
7775
| nas_config | [NasConfig](#api-v1-beta1-NasConfig) | | NAS configuration for the Experiment. |
7876

79-
<a name="api-v1-beta1-ExperimentSpec-Distribution"></a>
8077

81-
### ExperimentSpec.Distribution
82-
List of Distribution.
78+
<a name="api-v1-beta1-ParameterSpec"></a>
8379

84-
85-
| Field | Type | Label | Description |
86-
| ----- | ---- | ----- | ----------- |
87-
| distributions | [Distribution](#api-v1-beta1-Distribution) | repeated | |
88-
89-
<a name="api-v1-beta1-Distribution"></a>
90-
91-
### Distribution
80+
### ParameterSpec
9281
Config for a hyperparameter.
9382
Katib will create each Hyper parameter from this config.
9483

9584

9685
| Field | Type | Label | Description |
9786
| ----- | ---- | ----- | ----------- |
98-
| name | [string](#string) | | Name of the Distribution. |
87+
| name | [string](#string) | | Name of the parameter. |
88+
| parameter_type | [ParameterType](#api-v1-beta1-ParameterType) | | Type of the parameter. |
9989
| distribution_type | [DistributionType](#api-v1-beta1-DistributionType) | | Type of the Distribution. |
100-
| feasible_space | [FeasibleSpace](#api-v1-beta1-FeasibleSpace) | | FeasibleSpace for the Distribution. |
90+
| feasible_space | [FeasibleSpace](#api-v1-beta1-FeasibleSpace) | | FeasibleSpace for the parameter. |
10191

10292
<a name="api-v1-beta1-DistributionType"></a>
10393

0 commit comments

Comments
 (0)