Skip to content

Commit

Permalink
Default values for Katib Trials count (#2321)
Browse files Browse the repository at this point in the history
* Default values for parallel and max Trial count

* Add article

* Fix

* Point omitted

* Update content/en/docs/components/katib/experiment.md

Co-authored-by: 8bitmp3 <19637339+8bitmp3@users.noreply.github.com>

Co-authored-by: 8bitmp3 <19637339+8bitmp3@users.noreply.github.com>
  • Loading branch information
andreyvelich and 8bitmp3 authored Nov 13, 2020
1 parent 5cdf8e8 commit 7aa7071
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions content/en/docs/components/katib/experiment.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,16 +107,17 @@ These are the fields in the experiment configuration spec:
[`ObjectiveSpec` type](https://github.com/kubeflow/katib/blob/master/pkg/apis/controller/common/v1beta1/common_types.go#L93).

- **parallelTrialCount**: The maximum number of hyperparameter sets that Katib
should train in parallel.
should train in parallel. The default value is 3.

- **maxTrialCount**: The maximum number of trials to run.
This is equivalent to the number of hyperparameter sets that Katib should
generate to test the model.
generate to test the model. If the `maxTrialCount` value is **omitted**, your
experiment will be running until the objective goal is reached or the experiment
reaches a maximum number of failed trials.

- **maxFailedTrialCount**: The maximum number of failed trials before Katib
should stop the experiment.
This is equivalent to the number of failed hyperparameter sets that Katib
should test.
should stop the experiment. This is equivalent to the number of failed
hyperparameter sets that Katib should test.
If the number of failed trials exceeds `maxFailedTrialCount`, Katib stops the
experiment with a status of `Failed`.

Expand Down

0 comments on commit 7aa7071

Please sign in to comment.