- 3.10.0 (latest)
- 3.9.0
- 3.8.0
- 3.7.0
- 3.6.0
- 3.5.0
- 3.4.0
- 3.3.0
- 3.2.0
- 3.1.0
- 3.0.0
- 2.28.0
- 2.27.0
- 2.26.0
- 2.25.0
- 2.24.0
- 2.23.0
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.13.0
- 2.12.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.0
- 2.4.0
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.0
- 1.8.0
- 1.7.0
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.0
- 1.2.0
- 1.1.0
- 1.0.0
public sealed class StudySpec.Types.StudyStoppingConfig : IMessage<StudySpec.Types.StudyStoppingConfig>, IEquatable<StudySpec.Types.StudyStoppingConfig>, IDeepCloneable<StudySpec.Types.StudyStoppingConfig>, IBufferMessage, IMessage
Reference documentation and code samples for the Cloud AI Platform v1 API class StudySpec.Types.StudyStoppingConfig.
The configuration (stopping conditions) for automated stopping of a Study. Conditions include trial budgets, time budgets, and convergence detection.
Implements
IMessageStudySpecTypesStudyStoppingConfig, IEquatableStudySpecTypesStudyStoppingConfig, IDeepCloneableStudySpecTypesStudyStoppingConfig, IBufferMessage, IMessageNamespace
Google.Cloud.AIPlatform.V1Assembly
Google.Cloud.AIPlatform.V1.dll
Constructors
StudyStoppingConfig()
public StudyStoppingConfig()
StudyStoppingConfig(StudyStoppingConfig)
public StudyStoppingConfig(StudySpec.Types.StudyStoppingConfig other)
Parameter | |
---|---|
Name | Description |
other | StudySpecTypesStudyStoppingConfig |
Properties
MaxDurationNoProgress
public Duration MaxDurationNoProgress { get; set; }
If the objective value has not improved for this much time, stop the study.
WARNING: Effective only for single-objective studies.
Property Value | |
---|---|
Type | Description |
Duration |
MaxNumTrials
public int? MaxNumTrials { get; set; }
If there are more than this many trials, stop the study.
Property Value | |
---|---|
Type | Description |
int |
MaxNumTrialsNoProgress
public int? MaxNumTrialsNoProgress { get; set; }
If the objective value has not improved for this many consecutive trials, stop the study.
WARNING: Effective only for single-objective studies.
Property Value | |
---|---|
Type | Description |
int |
MaximumRuntimeConstraint
public StudyTimeConstraint MaximumRuntimeConstraint { get; set; }
If the specified time or duration has passed, stop the study.
Property Value | |
---|---|
Type | Description |
StudyTimeConstraint |
MinNumTrials
public int? MinNumTrials { get; set; }
If there are fewer than this many COMPLETED trials, do not stop the study.
Property Value | |
---|---|
Type | Description |
int |
MinimumRuntimeConstraint
public StudyTimeConstraint MinimumRuntimeConstraint { get; set; }
Each "stopping rule" in this proto specifies an "if" condition. Before
Vizier would generate a new suggestion, it first checks each specified
stopping rule, from top to bottom in this list.
Note that the first few rules (e.g. minimum_runtime_constraint,
min_num_trials) will prevent other stopping rules from being evaluated
until they are met. For example, setting min_num_trials=5
and
always_stop_after= 1 hour
means that the Study will ONLY stop after it
has 5 COMPLETED trials, even if more than an hour has passed since its
creation. It follows the first applicable rule (whose "if" condition is
satisfied) to make a stopping decision. If none of the specified rules
are applicable, then Vizier decides that the study should not stop.
If Vizier decides that the study should stop, the study enters
STOPPING state (or STOPPING_ASAP if should_stop_asap = true).
IMPORTANT: The automatic study state transition happens precisely as
described above; that is, deleting trials or updating StudyConfig NEVER
automatically moves the study state back to ACTIVE. If you want to
resume a Study that was stopped, 1) change the stopping conditions if
necessary, 2) activate the study, and then 3) ask for suggestions.
If the specified time or duration has not passed, do not stop the
study.
Property Value | |
---|---|
Type | Description |
StudyTimeConstraint |
ShouldStopAsap
public bool? ShouldStopAsap { get; set; }
If true, a Study enters STOPPING_ASAP whenever it would normally enters STOPPING state.
The bottom line is: set to true if you want to interrupt on-going evaluations of Trials as soon as the study stopping condition is met. (Please see Study.State documentation for the source of truth).
Property Value | |
---|---|
Type | Description |
bool |