Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default values for Katib Trials count #2321

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -76,16 +76,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