Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi
google-native.aiplatform/v1beta1.getStudy
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi
Gets a Study by name.
Using getStudy
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getStudy(args: GetStudyArgs, opts?: InvokeOptions): Promise<GetStudyResult>
function getStudyOutput(args: GetStudyOutputArgs, opts?: InvokeOptions): Output<GetStudyResult>
def get_study(location: Optional[str] = None,
project: Optional[str] = None,
study_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetStudyResult
def get_study_output(location: Optional[pulumi.Input[str]] = None,
project: Optional[pulumi.Input[str]] = None,
study_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetStudyResult]
func LookupStudy(ctx *Context, args *LookupStudyArgs, opts ...InvokeOption) (*LookupStudyResult, error)
func LookupStudyOutput(ctx *Context, args *LookupStudyOutputArgs, opts ...InvokeOption) LookupStudyResultOutput
> Note: This function is named LookupStudy
in the Go SDK.
public static class GetStudy
{
public static Task<GetStudyResult> InvokeAsync(GetStudyArgs args, InvokeOptions? opts = null)
public static Output<GetStudyResult> Invoke(GetStudyInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetStudyResult> getStudy(GetStudyArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: google-native:aiplatform/v1beta1:getStudy
arguments:
# arguments dictionary
The following arguments are supported:
getStudy Result
The following output properties are available:
- Create
Time string - Time at which the study was created.
- Display
Name string - Describes the Study, default value is empty string.
- Inactive
Reason string - A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.
- Name string
- The name of a study. The study's globally unique identifier. Format:
projects/{project}/locations/{location}/studies/{study}
- State string
- The detailed state of a Study.
- Study
Spec Pulumi.Google Native. Aiplatform. V1Beta1. Outputs. Google Cloud Aiplatform V1beta1Study Spec Response - Configuration of the Study.
- Create
Time string - Time at which the study was created.
- Display
Name string - Describes the Study, default value is empty string.
- Inactive
Reason string - A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.
- Name string
- The name of a study. The study's globally unique identifier. Format:
projects/{project}/locations/{location}/studies/{study}
- State string
- The detailed state of a Study.
- Study
Spec GoogleCloud Aiplatform V1beta1Study Spec Response - Configuration of the Study.
- create
Time String - Time at which the study was created.
- display
Name String - Describes the Study, default value is empty string.
- inactive
Reason String - A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.
- name String
- The name of a study. The study's globally unique identifier. Format:
projects/{project}/locations/{location}/studies/{study}
- state String
- The detailed state of a Study.
- study
Spec GoogleCloud Aiplatform V1beta1Study Spec Response - Configuration of the Study.
- create
Time string - Time at which the study was created.
- display
Name string - Describes the Study, default value is empty string.
- inactive
Reason string - A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.
- name string
- The name of a study. The study's globally unique identifier. Format:
projects/{project}/locations/{location}/studies/{study}
- state string
- The detailed state of a Study.
- study
Spec GoogleCloud Aiplatform V1beta1Study Spec Response - Configuration of the Study.
- create_
time str - Time at which the study was created.
- display_
name str - Describes the Study, default value is empty string.
- inactive_
reason str - A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.
- name str
- The name of a study. The study's globally unique identifier. Format:
projects/{project}/locations/{location}/studies/{study}
- state str
- The detailed state of a Study.
- study_
spec GoogleCloud Aiplatform V1beta1Study Spec Response - Configuration of the Study.
- create
Time String - Time at which the study was created.
- display
Name String - Describes the Study, default value is empty string.
- inactive
Reason String - A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.
- name String
- The name of a study. The study's globally unique identifier. Format:
projects/{project}/locations/{location}/studies/{study}
- state String
- The detailed state of a Study.
- study
Spec Property Map - Configuration of the Study.
Supporting Types
GoogleCloudAiplatformV1beta1StudySpecConvexAutomatedStoppingSpecResponse
- Learning
Rate stringParameter Name - The hyper-parameter name used in the tuning job that stands for learning rate. Leave it blank if learning rate is not in a parameter in tuning. The learning_rate is used to estimate the objective value of the ongoing trial.
- Max
Step stringCount - Steps used in predicting the final objective for early stopped trials. In general, it's set to be the same as the defined steps in training / tuning. If not defined, it will learn it from the completed trials. When use_steps is false, this field is set to the maximum elapsed seconds.
- Min
Measurement stringCount - The minimal number of measurements in a Trial. Early-stopping checks will not trigger if less than min_measurement_count+1 completed trials or pending trials with less than min_measurement_count measurements. If not defined, the default value is 5.
- Min
Step stringCount - Minimum number of steps for a trial to complete. Trials which do not have a measurement with step_count > min_step_count won't be considered for early stopping. It's ok to set it to 0, and a trial can be early stopped at any stage. By default, min_step_count is set to be one-tenth of the max_step_count. When use_elapsed_duration is true, this field is set to the minimum elapsed seconds.
- Update
All boolStopped Trials - ConvexAutomatedStoppingSpec by default only updates the trials that needs to be early stopped using a newly trained auto-regressive model. When this flag is set to True, all stopped trials from the beginning are potentially updated in terms of their
final_measurement
. Also, note that the training logic of autoregressive models is different in this case. Enabling this option has shown better results and this may be the default option in the future. - Use
Elapsed boolDuration - This bool determines whether or not the rule is applied based on elapsed_secs or steps. If use_elapsed_duration==false, the early stopping decision is made according to the predicted objective values according to the target steps. If use_elapsed_duration==true, elapsed_secs is used instead of steps. Also, in this case, the parameters max_num_steps and min_num_steps are overloaded to contain max_elapsed_seconds and min_elapsed_seconds.
- Learning
Rate stringParameter Name - The hyper-parameter name used in the tuning job that stands for learning rate. Leave it blank if learning rate is not in a parameter in tuning. The learning_rate is used to estimate the objective value of the ongoing trial.
- Max
Step stringCount - Steps used in predicting the final objective for early stopped trials. In general, it's set to be the same as the defined steps in training / tuning. If not defined, it will learn it from the completed trials. When use_steps is false, this field is set to the maximum elapsed seconds.
- Min
Measurement stringCount - The minimal number of measurements in a Trial. Early-stopping checks will not trigger if less than min_measurement_count+1 completed trials or pending trials with less than min_measurement_count measurements. If not defined, the default value is 5.
- Min
Step stringCount - Minimum number of steps for a trial to complete. Trials which do not have a measurement with step_count > min_step_count won't be considered for early stopping. It's ok to set it to 0, and a trial can be early stopped at any stage. By default, min_step_count is set to be one-tenth of the max_step_count. When use_elapsed_duration is true, this field is set to the minimum elapsed seconds.
- Update
All boolStopped Trials - ConvexAutomatedStoppingSpec by default only updates the trials that needs to be early stopped using a newly trained auto-regressive model. When this flag is set to True, all stopped trials from the beginning are potentially updated in terms of their
final_measurement
. Also, note that the training logic of autoregressive models is different in this case. Enabling this option has shown better results and this may be the default option in the future. - Use
Elapsed boolDuration - This bool determines whether or not the rule is applied based on elapsed_secs or steps. If use_elapsed_duration==false, the early stopping decision is made according to the predicted objective values according to the target steps. If use_elapsed_duration==true, elapsed_secs is used instead of steps. Also, in this case, the parameters max_num_steps and min_num_steps are overloaded to contain max_elapsed_seconds and min_elapsed_seconds.
- learning
Rate StringParameter Name - The hyper-parameter name used in the tuning job that stands for learning rate. Leave it blank if learning rate is not in a parameter in tuning. The learning_rate is used to estimate the objective value of the ongoing trial.
- max
Step StringCount - Steps used in predicting the final objective for early stopped trials. In general, it's set to be the same as the defined steps in training / tuning. If not defined, it will learn it from the completed trials. When use_steps is false, this field is set to the maximum elapsed seconds.
- min
Measurement StringCount - The minimal number of measurements in a Trial. Early-stopping checks will not trigger if less than min_measurement_count+1 completed trials or pending trials with less than min_measurement_count measurements. If not defined, the default value is 5.
- min
Step StringCount - Minimum number of steps for a trial to complete. Trials which do not have a measurement with step_count > min_step_count won't be considered for early stopping. It's ok to set it to 0, and a trial can be early stopped at any stage. By default, min_step_count is set to be one-tenth of the max_step_count. When use_elapsed_duration is true, this field is set to the minimum elapsed seconds.
- update
All BooleanStopped Trials - ConvexAutomatedStoppingSpec by default only updates the trials that needs to be early stopped using a newly trained auto-regressive model. When this flag is set to True, all stopped trials from the beginning are potentially updated in terms of their
final_measurement
. Also, note that the training logic of autoregressive models is different in this case. Enabling this option has shown better results and this may be the default option in the future. - use
Elapsed BooleanDuration - This bool determines whether or not the rule is applied based on elapsed_secs or steps. If use_elapsed_duration==false, the early stopping decision is made according to the predicted objective values according to the target steps. If use_elapsed_duration==true, elapsed_secs is used instead of steps. Also, in this case, the parameters max_num_steps and min_num_steps are overloaded to contain max_elapsed_seconds and min_elapsed_seconds.
- learning
Rate stringParameter Name - The hyper-parameter name used in the tuning job that stands for learning rate. Leave it blank if learning rate is not in a parameter in tuning. The learning_rate is used to estimate the objective value of the ongoing trial.
- max
Step stringCount - Steps used in predicting the final objective for early stopped trials. In general, it's set to be the same as the defined steps in training / tuning. If not defined, it will learn it from the completed trials. When use_steps is false, this field is set to the maximum elapsed seconds.
- min
Measurement stringCount - The minimal number of measurements in a Trial. Early-stopping checks will not trigger if less than min_measurement_count+1 completed trials or pending trials with less than min_measurement_count measurements. If not defined, the default value is 5.
- min
Step stringCount - Minimum number of steps for a trial to complete. Trials which do not have a measurement with step_count > min_step_count won't be considered for early stopping. It's ok to set it to 0, and a trial can be early stopped at any stage. By default, min_step_count is set to be one-tenth of the max_step_count. When use_elapsed_duration is true, this field is set to the minimum elapsed seconds.
- update
All booleanStopped Trials - ConvexAutomatedStoppingSpec by default only updates the trials that needs to be early stopped using a newly trained auto-regressive model. When this flag is set to True, all stopped trials from the beginning are potentially updated in terms of their
final_measurement
. Also, note that the training logic of autoregressive models is different in this case. Enabling this option has shown better results and this may be the default option in the future. - use
Elapsed booleanDuration - This bool determines whether or not the rule is applied based on elapsed_secs or steps. If use_elapsed_duration==false, the early stopping decision is made according to the predicted objective values according to the target steps. If use_elapsed_duration==true, elapsed_secs is used instead of steps. Also, in this case, the parameters max_num_steps and min_num_steps are overloaded to contain max_elapsed_seconds and min_elapsed_seconds.
- learning_
rate_ strparameter_ name - The hyper-parameter name used in the tuning job that stands for learning rate. Leave it blank if learning rate is not in a parameter in tuning. The learning_rate is used to estimate the objective value of the ongoing trial.
- max_
step_ strcount - Steps used in predicting the final objective for early stopped trials. In general, it's set to be the same as the defined steps in training / tuning. If not defined, it will learn it from the completed trials. When use_steps is false, this field is set to the maximum elapsed seconds.
- min_
measurement_ strcount - The minimal number of measurements in a Trial. Early-stopping checks will not trigger if less than min_measurement_count+1 completed trials or pending trials with less than min_measurement_count measurements. If not defined, the default value is 5.
- min_
step_ strcount - Minimum number of steps for a trial to complete. Trials which do not have a measurement with step_count > min_step_count won't be considered for early stopping. It's ok to set it to 0, and a trial can be early stopped at any stage. By default, min_step_count is set to be one-tenth of the max_step_count. When use_elapsed_duration is true, this field is set to the minimum elapsed seconds.
- update_
all_ boolstopped_ trials - ConvexAutomatedStoppingSpec by default only updates the trials that needs to be early stopped using a newly trained auto-regressive model. When this flag is set to True, all stopped trials from the beginning are potentially updated in terms of their
final_measurement
. Also, note that the training logic of autoregressive models is different in this case. Enabling this option has shown better results and this may be the default option in the future. - use_
elapsed_ boolduration - This bool determines whether or not the rule is applied based on elapsed_secs or steps. If use_elapsed_duration==false, the early stopping decision is made according to the predicted objective values according to the target steps. If use_elapsed_duration==true, elapsed_secs is used instead of steps. Also, in this case, the parameters max_num_steps and min_num_steps are overloaded to contain max_elapsed_seconds and min_elapsed_seconds.
- learning
Rate StringParameter Name - The hyper-parameter name used in the tuning job that stands for learning rate. Leave it blank if learning rate is not in a parameter in tuning. The learning_rate is used to estimate the objective value of the ongoing trial.
- max
Step StringCount - Steps used in predicting the final objective for early stopped trials. In general, it's set to be the same as the defined steps in training / tuning. If not defined, it will learn it from the completed trials. When use_steps is false, this field is set to the maximum elapsed seconds.
- min
Measurement StringCount - The minimal number of measurements in a Trial. Early-stopping checks will not trigger if less than min_measurement_count+1 completed trials or pending trials with less than min_measurement_count measurements. If not defined, the default value is 5.
- min
Step StringCount - Minimum number of steps for a trial to complete. Trials which do not have a measurement with step_count > min_step_count won't be considered for early stopping. It's ok to set it to 0, and a trial can be early stopped at any stage. By default, min_step_count is set to be one-tenth of the max_step_count. When use_elapsed_duration is true, this field is set to the minimum elapsed seconds.
- update
All BooleanStopped Trials - ConvexAutomatedStoppingSpec by default only updates the trials that needs to be early stopped using a newly trained auto-regressive model. When this flag is set to True, all stopped trials from the beginning are potentially updated in terms of their
final_measurement
. Also, note that the training logic of autoregressive models is different in this case. Enabling this option has shown better results and this may be the default option in the future. - use
Elapsed BooleanDuration - This bool determines whether or not the rule is applied based on elapsed_secs or steps. If use_elapsed_duration==false, the early stopping decision is made according to the predicted objective values according to the target steps. If use_elapsed_duration==true, elapsed_secs is used instead of steps. Also, in this case, the parameters max_num_steps and min_num_steps are overloaded to contain max_elapsed_seconds and min_elapsed_seconds.
GoogleCloudAiplatformV1beta1StudySpecConvexStopConfigResponse
- Autoregressive
Order string - The number of Trial measurements used in autoregressive model for value prediction. A trial won't be considered early stopping if has fewer measurement points.
- Learning
Rate stringParameter Name - The hyper-parameter name used in the tuning job that stands for learning rate. Leave it blank if learning rate is not in a parameter in tuning. The learning_rate is used to estimate the objective value of the ongoing trial.
- Max
Num stringSteps - Steps used in predicting the final objective for early stopped trials. In general, it's set to be the same as the defined steps in training / tuning. When use_steps is false, this field is set to the maximum elapsed seconds.
- Min
Num stringSteps - Minimum number of steps for a trial to complete. Trials which do not have a measurement with num_steps > min_num_steps won't be considered for early stopping. It's ok to set it to 0, and a trial can be early stopped at any stage. By default, min_num_steps is set to be one-tenth of the max_num_steps. When use_steps is false, this field is set to the minimum elapsed seconds.
- Use
Seconds bool - This bool determines whether or not the rule is applied based on elapsed_secs or steps. If use_seconds==false, the early stopping decision is made according to the predicted objective values according to the target steps. If use_seconds==true, elapsed_secs is used instead of steps. Also, in this case, the parameters max_num_steps and min_num_steps are overloaded to contain max_elapsed_seconds and min_elapsed_seconds.
- Autoregressive
Order string - The number of Trial measurements used in autoregressive model for value prediction. A trial won't be considered early stopping if has fewer measurement points.
- Learning
Rate stringParameter Name - The hyper-parameter name used in the tuning job that stands for learning rate. Leave it blank if learning rate is not in a parameter in tuning. The learning_rate is used to estimate the objective value of the ongoing trial.
- Max
Num stringSteps - Steps used in predicting the final objective for early stopped trials. In general, it's set to be the same as the defined steps in training / tuning. When use_steps is false, this field is set to the maximum elapsed seconds.
- Min
Num stringSteps - Minimum number of steps for a trial to complete. Trials which do not have a measurement with num_steps > min_num_steps won't be considered for early stopping. It's ok to set it to 0, and a trial can be early stopped at any stage. By default, min_num_steps is set to be one-tenth of the max_num_steps. When use_steps is false, this field is set to the minimum elapsed seconds.
- Use
Seconds bool - This bool determines whether or not the rule is applied based on elapsed_secs or steps. If use_seconds==false, the early stopping decision is made according to the predicted objective values according to the target steps. If use_seconds==true, elapsed_secs is used instead of steps. Also, in this case, the parameters max_num_steps and min_num_steps are overloaded to contain max_elapsed_seconds and min_elapsed_seconds.
- autoregressive
Order String - The number of Trial measurements used in autoregressive model for value prediction. A trial won't be considered early stopping if has fewer measurement points.
- learning
Rate StringParameter Name - The hyper-parameter name used in the tuning job that stands for learning rate. Leave it blank if learning rate is not in a parameter in tuning. The learning_rate is used to estimate the objective value of the ongoing trial.
- max
Num StringSteps - Steps used in predicting the final objective for early stopped trials. In general, it's set to be the same as the defined steps in training / tuning. When use_steps is false, this field is set to the maximum elapsed seconds.
- min
Num StringSteps - Minimum number of steps for a trial to complete. Trials which do not have a measurement with num_steps > min_num_steps won't be considered for early stopping. It's ok to set it to 0, and a trial can be early stopped at any stage. By default, min_num_steps is set to be one-tenth of the max_num_steps. When use_steps is false, this field is set to the minimum elapsed seconds.
- use
Seconds Boolean - This bool determines whether or not the rule is applied based on elapsed_secs or steps. If use_seconds==false, the early stopping decision is made according to the predicted objective values according to the target steps. If use_seconds==true, elapsed_secs is used instead of steps. Also, in this case, the parameters max_num_steps and min_num_steps are overloaded to contain max_elapsed_seconds and min_elapsed_seconds.
- autoregressive
Order string - The number of Trial measurements used in autoregressive model for value prediction. A trial won't be considered early stopping if has fewer measurement points.
- learning
Rate stringParameter Name - The hyper-parameter name used in the tuning job that stands for learning rate. Leave it blank if learning rate is not in a parameter in tuning. The learning_rate is used to estimate the objective value of the ongoing trial.
- max
Num stringSteps - Steps used in predicting the final objective for early stopped trials. In general, it's set to be the same as the defined steps in training / tuning. When use_steps is false, this field is set to the maximum elapsed seconds.
- min
Num stringSteps - Minimum number of steps for a trial to complete. Trials which do not have a measurement with num_steps > min_num_steps won't be considered for early stopping. It's ok to set it to 0, and a trial can be early stopped at any stage. By default, min_num_steps is set to be one-tenth of the max_num_steps. When use_steps is false, this field is set to the minimum elapsed seconds.
- use
Seconds boolean - This bool determines whether or not the rule is applied based on elapsed_secs or steps. If use_seconds==false, the early stopping decision is made according to the predicted objective values according to the target steps. If use_seconds==true, elapsed_secs is used instead of steps. Also, in this case, the parameters max_num_steps and min_num_steps are overloaded to contain max_elapsed_seconds and min_elapsed_seconds.
- autoregressive_
order str - The number of Trial measurements used in autoregressive model for value prediction. A trial won't be considered early stopping if has fewer measurement points.
- learning_
rate_ strparameter_ name - The hyper-parameter name used in the tuning job that stands for learning rate. Leave it blank if learning rate is not in a parameter in tuning. The learning_rate is used to estimate the objective value of the ongoing trial.
- max_
num_ strsteps - Steps used in predicting the final objective for early stopped trials. In general, it's set to be the same as the defined steps in training / tuning. When use_steps is false, this field is set to the maximum elapsed seconds.
- min_
num_ strsteps - Minimum number of steps for a trial to complete. Trials which do not have a measurement with num_steps > min_num_steps won't be considered for early stopping. It's ok to set it to 0, and a trial can be early stopped at any stage. By default, min_num_steps is set to be one-tenth of the max_num_steps. When use_steps is false, this field is set to the minimum elapsed seconds.
- use_
seconds bool - This bool determines whether or not the rule is applied based on elapsed_secs or steps. If use_seconds==false, the early stopping decision is made according to the predicted objective values according to the target steps. If use_seconds==true, elapsed_secs is used instead of steps. Also, in this case, the parameters max_num_steps and min_num_steps are overloaded to contain max_elapsed_seconds and min_elapsed_seconds.
- autoregressive
Order String - The number of Trial measurements used in autoregressive model for value prediction. A trial won't be considered early stopping if has fewer measurement points.
- learning
Rate StringParameter Name - The hyper-parameter name used in the tuning job that stands for learning rate. Leave it blank if learning rate is not in a parameter in tuning. The learning_rate is used to estimate the objective value of the ongoing trial.
- max
Num StringSteps - Steps used in predicting the final objective for early stopped trials. In general, it's set to be the same as the defined steps in training / tuning. When use_steps is false, this field is set to the maximum elapsed seconds.
- min
Num StringSteps - Minimum number of steps for a trial to complete. Trials which do not have a measurement with num_steps > min_num_steps won't be considered for early stopping. It's ok to set it to 0, and a trial can be early stopped at any stage. By default, min_num_steps is set to be one-tenth of the max_num_steps. When use_steps is false, this field is set to the minimum elapsed seconds.
- use
Seconds Boolean - This bool determines whether or not the rule is applied based on elapsed_secs or steps. If use_seconds==false, the early stopping decision is made according to the predicted objective values according to the target steps. If use_seconds==true, elapsed_secs is used instead of steps. Also, in this case, the parameters max_num_steps and min_num_steps are overloaded to contain max_elapsed_seconds and min_elapsed_seconds.
GoogleCloudAiplatformV1beta1StudySpecDecayCurveAutomatedStoppingSpecResponse
- Use
Elapsed boolDuration - True if Measurement.elapsed_duration is used as the x-axis of each Trials Decay Curve. Otherwise, Measurement.step_count will be used as the x-axis.
- Use
Elapsed boolDuration - True if Measurement.elapsed_duration is used as the x-axis of each Trials Decay Curve. Otherwise, Measurement.step_count will be used as the x-axis.
- use
Elapsed BooleanDuration - True if Measurement.elapsed_duration is used as the x-axis of each Trials Decay Curve. Otherwise, Measurement.step_count will be used as the x-axis.
- use
Elapsed booleanDuration - True if Measurement.elapsed_duration is used as the x-axis of each Trials Decay Curve. Otherwise, Measurement.step_count will be used as the x-axis.
- use_
elapsed_ boolduration - True if Measurement.elapsed_duration is used as the x-axis of each Trials Decay Curve. Otherwise, Measurement.step_count will be used as the x-axis.
- use
Elapsed BooleanDuration - True if Measurement.elapsed_duration is used as the x-axis of each Trials Decay Curve. Otherwise, Measurement.step_count will be used as the x-axis.
GoogleCloudAiplatformV1beta1StudySpecMedianAutomatedStoppingSpecResponse
- Use
Elapsed boolDuration - True if median automated stopping rule applies on Measurement.elapsed_duration. It means that elapsed_duration field of latest measurement of current Trial is used to compute median objective value for each completed Trials.
- Use
Elapsed boolDuration - True if median automated stopping rule applies on Measurement.elapsed_duration. It means that elapsed_duration field of latest measurement of current Trial is used to compute median objective value for each completed Trials.
- use
Elapsed BooleanDuration - True if median automated stopping rule applies on Measurement.elapsed_duration. It means that elapsed_duration field of latest measurement of current Trial is used to compute median objective value for each completed Trials.
- use
Elapsed booleanDuration - True if median automated stopping rule applies on Measurement.elapsed_duration. It means that elapsed_duration field of latest measurement of current Trial is used to compute median objective value for each completed Trials.
- use_
elapsed_ boolduration - True if median automated stopping rule applies on Measurement.elapsed_duration. It means that elapsed_duration field of latest measurement of current Trial is used to compute median objective value for each completed Trials.
- use
Elapsed BooleanDuration - True if median automated stopping rule applies on Measurement.elapsed_duration. It means that elapsed_duration field of latest measurement of current Trial is used to compute median objective value for each completed Trials.
GoogleCloudAiplatformV1beta1StudySpecMetricSpecResponse
- Goal string
- The optimization goal of the metric.
- Metric
Id string - The ID of the metric. Must not contain whitespaces and must be unique amongst all MetricSpecs.
- Safety
Config Pulumi.Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Metric Spec Safety Metric Config Response - Used for safe search. In the case, the metric will be a safety metric. You must provide a separate metric for objective metric.
- Goal string
- The optimization goal of the metric.
- Metric
Id string - The ID of the metric. Must not contain whitespaces and must be unique amongst all MetricSpecs.
- Safety
Config GoogleCloud Aiplatform V1beta1Study Spec Metric Spec Safety Metric Config Response - Used for safe search. In the case, the metric will be a safety metric. You must provide a separate metric for objective metric.
- goal String
- The optimization goal of the metric.
- metric
Id String - The ID of the metric. Must not contain whitespaces and must be unique amongst all MetricSpecs.
- safety
Config GoogleCloud Aiplatform V1beta1Study Spec Metric Spec Safety Metric Config Response - Used for safe search. In the case, the metric will be a safety metric. You must provide a separate metric for objective metric.
- goal string
- The optimization goal of the metric.
- metric
Id string - The ID of the metric. Must not contain whitespaces and must be unique amongst all MetricSpecs.
- safety
Config GoogleCloud Aiplatform V1beta1Study Spec Metric Spec Safety Metric Config Response - Used for safe search. In the case, the metric will be a safety metric. You must provide a separate metric for objective metric.
- goal str
- The optimization goal of the metric.
- metric_
id str - The ID of the metric. Must not contain whitespaces and must be unique amongst all MetricSpecs.
- safety_
config GoogleCloud Aiplatform V1beta1Study Spec Metric Spec Safety Metric Config Response - Used for safe search. In the case, the metric will be a safety metric. You must provide a separate metric for objective metric.
- goal String
- The optimization goal of the metric.
- metric
Id String - The ID of the metric. Must not contain whitespaces and must be unique amongst all MetricSpecs.
- safety
Config Property Map - Used for safe search. In the case, the metric will be a safety metric. You must provide a separate metric for objective metric.
GoogleCloudAiplatformV1beta1StudySpecMetricSpecSafetyMetricConfigResponse
- Desired
Min doubleSafe Trials Fraction - Desired minimum fraction of safe trials (over total number of trials) that should be targeted by the algorithm at any time during the study (best effort). This should be between 0.0 and 1.0 and a value of 0.0 means that there is no minimum and an algorithm proceeds without targeting any specific fraction. A value of 1.0 means that the algorithm attempts to only Suggest safe Trials.
- Safety
Threshold double - Safety threshold (boundary value between safe and unsafe). NOTE that if you leave SafetyMetricConfig unset, a default value of 0 will be used.
- Desired
Min float64Safe Trials Fraction - Desired minimum fraction of safe trials (over total number of trials) that should be targeted by the algorithm at any time during the study (best effort). This should be between 0.0 and 1.0 and a value of 0.0 means that there is no minimum and an algorithm proceeds without targeting any specific fraction. A value of 1.0 means that the algorithm attempts to only Suggest safe Trials.
- Safety
Threshold float64 - Safety threshold (boundary value between safe and unsafe). NOTE that if you leave SafetyMetricConfig unset, a default value of 0 will be used.
- desired
Min DoubleSafe Trials Fraction - Desired minimum fraction of safe trials (over total number of trials) that should be targeted by the algorithm at any time during the study (best effort). This should be between 0.0 and 1.0 and a value of 0.0 means that there is no minimum and an algorithm proceeds without targeting any specific fraction. A value of 1.0 means that the algorithm attempts to only Suggest safe Trials.
- safety
Threshold Double - Safety threshold (boundary value between safe and unsafe). NOTE that if you leave SafetyMetricConfig unset, a default value of 0 will be used.
- desired
Min numberSafe Trials Fraction - Desired minimum fraction of safe trials (over total number of trials) that should be targeted by the algorithm at any time during the study (best effort). This should be between 0.0 and 1.0 and a value of 0.0 means that there is no minimum and an algorithm proceeds without targeting any specific fraction. A value of 1.0 means that the algorithm attempts to only Suggest safe Trials.
- safety
Threshold number - Safety threshold (boundary value between safe and unsafe). NOTE that if you leave SafetyMetricConfig unset, a default value of 0 will be used.
- desired_
min_ floatsafe_ trials_ fraction - Desired minimum fraction of safe trials (over total number of trials) that should be targeted by the algorithm at any time during the study (best effort). This should be between 0.0 and 1.0 and a value of 0.0 means that there is no minimum and an algorithm proceeds without targeting any specific fraction. A value of 1.0 means that the algorithm attempts to only Suggest safe Trials.
- safety_
threshold float - Safety threshold (boundary value between safe and unsafe). NOTE that if you leave SafetyMetricConfig unset, a default value of 0 will be used.
- desired
Min NumberSafe Trials Fraction - Desired minimum fraction of safe trials (over total number of trials) that should be targeted by the algorithm at any time during the study (best effort). This should be between 0.0 and 1.0 and a value of 0.0 means that there is no minimum and an algorithm proceeds without targeting any specific fraction. A value of 1.0 means that the algorithm attempts to only Suggest safe Trials.
- safety
Threshold Number - Safety threshold (boundary value between safe and unsafe). NOTE that if you leave SafetyMetricConfig unset, a default value of 0 will be used.
GoogleCloudAiplatformV1beta1StudySpecParameterSpecCategoricalValueSpecResponse
- Default
Value string - A default value for a
CATEGORICAL
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - Values List<string>
- The list of possible categories.
- Default
Value string - A default value for a
CATEGORICAL
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - Values []string
- The list of possible categories.
- default
Value String - A default value for a
CATEGORICAL
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - values List<String>
- The list of possible categories.
- default
Value string - A default value for a
CATEGORICAL
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - values string[]
- The list of possible categories.
- default_
value str - A default value for a
CATEGORICAL
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - values Sequence[str]
- The list of possible categories.
- default
Value String - A default value for a
CATEGORICAL
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - values List<String>
- The list of possible categories.
GoogleCloudAiplatformV1beta1StudySpecParameterSpecConditionalParameterSpecCategoricalValueConditionResponse
- Values List<string>
- Matches values of the parent parameter of 'CATEGORICAL' type. All values must exist in
categorical_value_spec
of parent parameter.
- Values []string
- Matches values of the parent parameter of 'CATEGORICAL' type. All values must exist in
categorical_value_spec
of parent parameter.
- values List<String>
- Matches values of the parent parameter of 'CATEGORICAL' type. All values must exist in
categorical_value_spec
of parent parameter.
- values string[]
- Matches values of the parent parameter of 'CATEGORICAL' type. All values must exist in
categorical_value_spec
of parent parameter.
- values Sequence[str]
- Matches values of the parent parameter of 'CATEGORICAL' type. All values must exist in
categorical_value_spec
of parent parameter.
- values List<String>
- Matches values of the parent parameter of 'CATEGORICAL' type. All values must exist in
categorical_value_spec
of parent parameter.
GoogleCloudAiplatformV1beta1StudySpecParameterSpecConditionalParameterSpecDiscreteValueConditionResponse
- Values List<double>
- Matches values of the parent parameter of 'DISCRETE' type. All values must exist in
discrete_value_spec
of parent parameter. The Epsilon of the value matching is 1e-10.
- Values []float64
- Matches values of the parent parameter of 'DISCRETE' type. All values must exist in
discrete_value_spec
of parent parameter. The Epsilon of the value matching is 1e-10.
- values List<Double>
- Matches values of the parent parameter of 'DISCRETE' type. All values must exist in
discrete_value_spec
of parent parameter. The Epsilon of the value matching is 1e-10.
- values number[]
- Matches values of the parent parameter of 'DISCRETE' type. All values must exist in
discrete_value_spec
of parent parameter. The Epsilon of the value matching is 1e-10.
- values Sequence[float]
- Matches values of the parent parameter of 'DISCRETE' type. All values must exist in
discrete_value_spec
of parent parameter. The Epsilon of the value matching is 1e-10.
- values List<Number>
- Matches values of the parent parameter of 'DISCRETE' type. All values must exist in
discrete_value_spec
of parent parameter. The Epsilon of the value matching is 1e-10.
GoogleCloudAiplatformV1beta1StudySpecParameterSpecConditionalParameterSpecIntValueConditionResponse
- Values List<string>
- Matches values of the parent parameter of 'INTEGER' type. All values must lie in
integer_value_spec
of parent parameter.
- Values []string
- Matches values of the parent parameter of 'INTEGER' type. All values must lie in
integer_value_spec
of parent parameter.
- values List<String>
- Matches values of the parent parameter of 'INTEGER' type. All values must lie in
integer_value_spec
of parent parameter.
- values string[]
- Matches values of the parent parameter of 'INTEGER' type. All values must lie in
integer_value_spec
of parent parameter.
- values Sequence[str]
- Matches values of the parent parameter of 'INTEGER' type. All values must lie in
integer_value_spec
of parent parameter.
- values List<String>
- Matches values of the parent parameter of 'INTEGER' type. All values must lie in
integer_value_spec
of parent parameter.
GoogleCloudAiplatformV1beta1StudySpecParameterSpecConditionalParameterSpecResponse
- Parameter
Spec Pulumi.Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Parameter Spec Response - The spec for a conditional parameter.
- Parent
Categorical Pulumi.Values Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Categorical Value Condition Response - The spec for matching values from a parent parameter of
CATEGORICAL
type. - Parent
Discrete Pulumi.Values Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Discrete Value Condition Response - The spec for matching values from a parent parameter of
DISCRETE
type. - Parent
Int Pulumi.Values Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Int Value Condition Response - The spec for matching values from a parent parameter of
INTEGER
type.
- Parameter
Spec GoogleCloud Aiplatform V1beta1Study Spec Parameter Spec Response - The spec for a conditional parameter.
- Parent
Categorical GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Categorical Value Condition Response - The spec for matching values from a parent parameter of
CATEGORICAL
type. - Parent
Discrete GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Discrete Value Condition Response - The spec for matching values from a parent parameter of
DISCRETE
type. - Parent
Int GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Int Value Condition Response - The spec for matching values from a parent parameter of
INTEGER
type.
- parameter
Spec GoogleCloud Aiplatform V1beta1Study Spec Parameter Spec Response - The spec for a conditional parameter.
- parent
Categorical GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Categorical Value Condition Response - The spec for matching values from a parent parameter of
CATEGORICAL
type. - parent
Discrete GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Discrete Value Condition Response - The spec for matching values from a parent parameter of
DISCRETE
type. - parent
Int GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Int Value Condition Response - The spec for matching values from a parent parameter of
INTEGER
type.
- parameter
Spec GoogleCloud Aiplatform V1beta1Study Spec Parameter Spec Response - The spec for a conditional parameter.
- parent
Categorical GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Categorical Value Condition Response - The spec for matching values from a parent parameter of
CATEGORICAL
type. - parent
Discrete GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Discrete Value Condition Response - The spec for matching values from a parent parameter of
DISCRETE
type. - parent
Int GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Int Value Condition Response - The spec for matching values from a parent parameter of
INTEGER
type.
- parameter_
spec GoogleCloud Aiplatform V1beta1Study Spec Parameter Spec Response - The spec for a conditional parameter.
- parent_
categorical_ Googlevalues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Categorical Value Condition Response - The spec for matching values from a parent parameter of
CATEGORICAL
type. - parent_
discrete_ Googlevalues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Discrete Value Condition Response - The spec for matching values from a parent parameter of
DISCRETE
type. - parent_
int_ Googlevalues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Int Value Condition Response - The spec for matching values from a parent parameter of
INTEGER
type.
- parameter
Spec Property Map - The spec for a conditional parameter.
- parent
Categorical Property MapValues - The spec for matching values from a parent parameter of
CATEGORICAL
type. - parent
Discrete Property MapValues - The spec for matching values from a parent parameter of
DISCRETE
type. - parent
Int Property MapValues - The spec for matching values from a parent parameter of
INTEGER
type.
GoogleCloudAiplatformV1beta1StudySpecParameterSpecDiscreteValueSpecResponse
- Default
Value double - A default value for a
DISCRETE
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. It automatically rounds to the nearest feasible discrete point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - Values List<double>
- A list of possible values. The list should be in increasing order and at least 1e-10 apart. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.
- Default
Value float64 - A default value for a
DISCRETE
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. It automatically rounds to the nearest feasible discrete point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - Values []float64
- A list of possible values. The list should be in increasing order and at least 1e-10 apart. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.
- default
Value Double - A default value for a
DISCRETE
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. It automatically rounds to the nearest feasible discrete point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - values List<Double>
- A list of possible values. The list should be in increasing order and at least 1e-10 apart. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.
- default
Value number - A default value for a
DISCRETE
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. It automatically rounds to the nearest feasible discrete point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - values number[]
- A list of possible values. The list should be in increasing order and at least 1e-10 apart. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.
- default_
value float - A default value for a
DISCRETE
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. It automatically rounds to the nearest feasible discrete point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - values Sequence[float]
- A list of possible values. The list should be in increasing order and at least 1e-10 apart. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.
- default
Value Number - A default value for a
DISCRETE
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. It automatically rounds to the nearest feasible discrete point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - values List<Number>
- A list of possible values. The list should be in increasing order and at least 1e-10 apart. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.
GoogleCloudAiplatformV1beta1StudySpecParameterSpecDoubleValueSpecResponse
- Default
Value double - A default value for a
DOUBLE
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - Max
Value double - Inclusive maximum value of the parameter.
- Min
Value double - Inclusive minimum value of the parameter.
- Default
Value float64 - A default value for a
DOUBLE
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - Max
Value float64 - Inclusive maximum value of the parameter.
- Min
Value float64 - Inclusive minimum value of the parameter.
- default
Value Double - A default value for a
DOUBLE
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - max
Value Double - Inclusive maximum value of the parameter.
- min
Value Double - Inclusive minimum value of the parameter.
- default
Value number - A default value for a
DOUBLE
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - max
Value number - Inclusive maximum value of the parameter.
- min
Value number - Inclusive minimum value of the parameter.
- default_
value float - A default value for a
DOUBLE
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - max_
value float - Inclusive maximum value of the parameter.
- min_
value float - Inclusive minimum value of the parameter.
- default
Value Number - A default value for a
DOUBLE
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - max
Value Number - Inclusive maximum value of the parameter.
- min
Value Number - Inclusive minimum value of the parameter.
GoogleCloudAiplatformV1beta1StudySpecParameterSpecIntegerValueSpecResponse
- Default
Value string - A default value for an
INTEGER
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - Max
Value string - Inclusive maximum value of the parameter.
- Min
Value string - Inclusive minimum value of the parameter.
- Default
Value string - A default value for an
INTEGER
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - Max
Value string - Inclusive maximum value of the parameter.
- Min
Value string - Inclusive minimum value of the parameter.
- default
Value String - A default value for an
INTEGER
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - max
Value String - Inclusive maximum value of the parameter.
- min
Value String - Inclusive minimum value of the parameter.
- default
Value string - A default value for an
INTEGER
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - max
Value string - Inclusive maximum value of the parameter.
- min
Value string - Inclusive minimum value of the parameter.
- default_
value str - A default value for an
INTEGER
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - max_
value str - Inclusive maximum value of the parameter.
- min_
value str - Inclusive minimum value of the parameter.
- default
Value String - A default value for an
INTEGER
parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. - max
Value String - Inclusive maximum value of the parameter.
- min
Value String - Inclusive minimum value of the parameter.
GoogleCloudAiplatformV1beta1StudySpecParameterSpecResponse
- Categorical
Value Pulumi.Spec Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Parameter Spec Categorical Value Spec Response - The value spec for a 'CATEGORICAL' parameter.
- Conditional
Parameter List<Pulumi.Specs Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Response> - A conditional parameter node is active if the parameter's value matches the conditional node's parent_value_condition. If two items in conditional_parameter_specs have the same name, they must have disjoint parent_value_condition.
- Discrete
Value Pulumi.Spec Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Parameter Spec Discrete Value Spec Response - The value spec for a 'DISCRETE' parameter.
- Double
Value Pulumi.Spec Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Parameter Spec Double Value Spec Response - The value spec for a 'DOUBLE' parameter.
- Integer
Value Pulumi.Spec Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Parameter Spec Integer Value Spec Response - The value spec for an 'INTEGER' parameter.
- Parameter
Id string - The ID of the parameter. Must not contain whitespaces and must be unique amongst all ParameterSpecs.
- Scale
Type string - How the parameter should be scaled. Leave unset for
CATEGORICAL
parameters.
- Categorical
Value GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Categorical Value Spec Response - The value spec for a 'CATEGORICAL' parameter.
- Conditional
Parameter []GoogleSpecs Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Response - A conditional parameter node is active if the parameter's value matches the conditional node's parent_value_condition. If two items in conditional_parameter_specs have the same name, they must have disjoint parent_value_condition.
- Discrete
Value GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Discrete Value Spec Response - The value spec for a 'DISCRETE' parameter.
- Double
Value GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Double Value Spec Response - The value spec for a 'DOUBLE' parameter.
- Integer
Value GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Integer Value Spec Response - The value spec for an 'INTEGER' parameter.
- Parameter
Id string - The ID of the parameter. Must not contain whitespaces and must be unique amongst all ParameterSpecs.
- Scale
Type string - How the parameter should be scaled. Leave unset for
CATEGORICAL
parameters.
- categorical
Value GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Categorical Value Spec Response - The value spec for a 'CATEGORICAL' parameter.
- conditional
Parameter List<GoogleSpecs Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Response> - A conditional parameter node is active if the parameter's value matches the conditional node's parent_value_condition. If two items in conditional_parameter_specs have the same name, they must have disjoint parent_value_condition.
- discrete
Value GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Discrete Value Spec Response - The value spec for a 'DISCRETE' parameter.
- double
Value GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Double Value Spec Response - The value spec for a 'DOUBLE' parameter.
- integer
Value GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Integer Value Spec Response - The value spec for an 'INTEGER' parameter.
- parameter
Id String - The ID of the parameter. Must not contain whitespaces and must be unique amongst all ParameterSpecs.
- scale
Type String - How the parameter should be scaled. Leave unset for
CATEGORICAL
parameters.
- categorical
Value GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Categorical Value Spec Response - The value spec for a 'CATEGORICAL' parameter.
- conditional
Parameter GoogleSpecs Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Response[] - A conditional parameter node is active if the parameter's value matches the conditional node's parent_value_condition. If two items in conditional_parameter_specs have the same name, they must have disjoint parent_value_condition.
- discrete
Value GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Discrete Value Spec Response - The value spec for a 'DISCRETE' parameter.
- double
Value GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Double Value Spec Response - The value spec for a 'DOUBLE' parameter.
- integer
Value GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Integer Value Spec Response - The value spec for an 'INTEGER' parameter.
- parameter
Id string - The ID of the parameter. Must not contain whitespaces and must be unique amongst all ParameterSpecs.
- scale
Type string - How the parameter should be scaled. Leave unset for
CATEGORICAL
parameters.
- categorical_
value_ Googlespec Cloud Aiplatform V1beta1Study Spec Parameter Spec Categorical Value Spec Response - The value spec for a 'CATEGORICAL' parameter.
- conditional_
parameter_ Sequence[Googlespecs Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Response] - A conditional parameter node is active if the parameter's value matches the conditional node's parent_value_condition. If two items in conditional_parameter_specs have the same name, they must have disjoint parent_value_condition.
- discrete_
value_ Googlespec Cloud Aiplatform V1beta1Study Spec Parameter Spec Discrete Value Spec Response - The value spec for a 'DISCRETE' parameter.
- double_
value_ Googlespec Cloud Aiplatform V1beta1Study Spec Parameter Spec Double Value Spec Response - The value spec for a 'DOUBLE' parameter.
- integer_
value_ Googlespec Cloud Aiplatform V1beta1Study Spec Parameter Spec Integer Value Spec Response - The value spec for an 'INTEGER' parameter.
- parameter_
id str - The ID of the parameter. Must not contain whitespaces and must be unique amongst all ParameterSpecs.
- scale_
type str - How the parameter should be scaled. Leave unset for
CATEGORICAL
parameters.
- categorical
Value Property MapSpec - The value spec for a 'CATEGORICAL' parameter.
- conditional
Parameter List<Property Map>Specs - A conditional parameter node is active if the parameter's value matches the conditional node's parent_value_condition. If two items in conditional_parameter_specs have the same name, they must have disjoint parent_value_condition.
- discrete
Value Property MapSpec - The value spec for a 'DISCRETE' parameter.
- double
Value Property MapSpec - The value spec for a 'DOUBLE' parameter.
- integer
Value Property MapSpec - The value spec for an 'INTEGER' parameter.
- parameter
Id String - The ID of the parameter. Must not contain whitespaces and must be unique amongst all ParameterSpecs.
- scale
Type String - How the parameter should be scaled. Leave unset for
CATEGORICAL
parameters.
GoogleCloudAiplatformV1beta1StudySpecResponse
- Algorithm string
- The search algorithm specified for the Study.
- Convex
Automated Pulumi.Stopping Spec Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Convex Automated Stopping Spec Response - The automated early stopping spec using convex stopping rule.
- Convex
Stop Pulumi.Config Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Convex Stop Config Response - Deprecated. The automated early stopping using convex stopping rule.
- Decay
Curve Pulumi.Stopping Spec Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Decay Curve Automated Stopping Spec Response - The automated early stopping spec using decay curve rule.
- Measurement
Selection stringType - Describe which measurement selection type will be used
- Median
Automated Pulumi.Stopping Spec Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Median Automated Stopping Spec Response - The automated early stopping spec using median rule.
- Metrics
List<Pulumi.
Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Metric Spec Response> - Metric specs for the Study.
- Observation
Noise string - The observation noise level of the study. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline.
- Parameters
List<Pulumi.
Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Parameter Spec Response> - The set of parameters to tune.
- Study
Stopping Pulumi.Config Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Study Stopping Config Response - Conditions for automated stopping of a Study. Enable automated stopping by configuring at least one condition.
- Transfer
Learning Pulumi.Config Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Transfer Learning Config Response - The configuration info/options for transfer learning. Currently supported for Vertex AI Vizier service, not HyperParameterTuningJob
- Algorithm string
- The search algorithm specified for the Study.
- Convex
Automated GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Convex Automated Stopping Spec Response - The automated early stopping spec using convex stopping rule.
- Convex
Stop GoogleConfig Cloud Aiplatform V1beta1Study Spec Convex Stop Config Response - Deprecated. The automated early stopping using convex stopping rule.
- Decay
Curve GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Decay Curve Automated Stopping Spec Response - The automated early stopping spec using decay curve rule.
- Measurement
Selection stringType - Describe which measurement selection type will be used
- Median
Automated GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Median Automated Stopping Spec Response - The automated early stopping spec using median rule.
- Metrics
[]Google
Cloud Aiplatform V1beta1Study Spec Metric Spec Response - Metric specs for the Study.
- Observation
Noise string - The observation noise level of the study. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline.
- Parameters
[]Google
Cloud Aiplatform V1beta1Study Spec Parameter Spec Response - The set of parameters to tune.
- Study
Stopping GoogleConfig Cloud Aiplatform V1beta1Study Spec Study Stopping Config Response - Conditions for automated stopping of a Study. Enable automated stopping by configuring at least one condition.
- Transfer
Learning GoogleConfig Cloud Aiplatform V1beta1Study Spec Transfer Learning Config Response - The configuration info/options for transfer learning. Currently supported for Vertex AI Vizier service, not HyperParameterTuningJob
- algorithm String
- The search algorithm specified for the Study.
- convex
Automated GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Convex Automated Stopping Spec Response - The automated early stopping spec using convex stopping rule.
- convex
Stop GoogleConfig Cloud Aiplatform V1beta1Study Spec Convex Stop Config Response - Deprecated. The automated early stopping using convex stopping rule.
- decay
Curve GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Decay Curve Automated Stopping Spec Response - The automated early stopping spec using decay curve rule.
- measurement
Selection StringType - Describe which measurement selection type will be used
- median
Automated GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Median Automated Stopping Spec Response - The automated early stopping spec using median rule.
- metrics
List<Google
Cloud Aiplatform V1beta1Study Spec Metric Spec Response> - Metric specs for the Study.
- observation
Noise String - The observation noise level of the study. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline.
- parameters
List<Google
Cloud Aiplatform V1beta1Study Spec Parameter Spec Response> - The set of parameters to tune.
- study
Stopping GoogleConfig Cloud Aiplatform V1beta1Study Spec Study Stopping Config Response - Conditions for automated stopping of a Study. Enable automated stopping by configuring at least one condition.
- transfer
Learning GoogleConfig Cloud Aiplatform V1beta1Study Spec Transfer Learning Config Response - The configuration info/options for transfer learning. Currently supported for Vertex AI Vizier service, not HyperParameterTuningJob
- algorithm string
- The search algorithm specified for the Study.
- convex
Automated GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Convex Automated Stopping Spec Response - The automated early stopping spec using convex stopping rule.
- convex
Stop GoogleConfig Cloud Aiplatform V1beta1Study Spec Convex Stop Config Response - Deprecated. The automated early stopping using convex stopping rule.
- decay
Curve GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Decay Curve Automated Stopping Spec Response - The automated early stopping spec using decay curve rule.
- measurement
Selection stringType - Describe which measurement selection type will be used
- median
Automated GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Median Automated Stopping Spec Response - The automated early stopping spec using median rule.
- metrics
Google
Cloud Aiplatform V1beta1Study Spec Metric Spec Response[] - Metric specs for the Study.
- observation
Noise string - The observation noise level of the study. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline.
- parameters
Google
Cloud Aiplatform V1beta1Study Spec Parameter Spec Response[] - The set of parameters to tune.
- study
Stopping GoogleConfig Cloud Aiplatform V1beta1Study Spec Study Stopping Config Response - Conditions for automated stopping of a Study. Enable automated stopping by configuring at least one condition.
- transfer
Learning GoogleConfig Cloud Aiplatform V1beta1Study Spec Transfer Learning Config Response - The configuration info/options for transfer learning. Currently supported for Vertex AI Vizier service, not HyperParameterTuningJob
- algorithm str
- The search algorithm specified for the Study.
- convex_
automated_ Googlestopping_ spec Cloud Aiplatform V1beta1Study Spec Convex Automated Stopping Spec Response - The automated early stopping spec using convex stopping rule.
- convex_
stop_ Googleconfig Cloud Aiplatform V1beta1Study Spec Convex Stop Config Response - Deprecated. The automated early stopping using convex stopping rule.
- decay_
curve_ Googlestopping_ spec Cloud Aiplatform V1beta1Study Spec Decay Curve Automated Stopping Spec Response - The automated early stopping spec using decay curve rule.
- measurement_
selection_ strtype - Describe which measurement selection type will be used
- median_
automated_ Googlestopping_ spec Cloud Aiplatform V1beta1Study Spec Median Automated Stopping Spec Response - The automated early stopping spec using median rule.
- metrics
Sequence[Google
Cloud Aiplatform V1beta1Study Spec Metric Spec Response] - Metric specs for the Study.
- observation_
noise str - The observation noise level of the study. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline.
- parameters
Sequence[Google
Cloud Aiplatform V1beta1Study Spec Parameter Spec Response] - The set of parameters to tune.
- study_
stopping_ Googleconfig Cloud Aiplatform V1beta1Study Spec Study Stopping Config Response - Conditions for automated stopping of a Study. Enable automated stopping by configuring at least one condition.
- transfer_
learning_ Googleconfig Cloud Aiplatform V1beta1Study Spec Transfer Learning Config Response - The configuration info/options for transfer learning. Currently supported for Vertex AI Vizier service, not HyperParameterTuningJob
- algorithm String
- The search algorithm specified for the Study.
- convex
Automated Property MapStopping Spec - The automated early stopping spec using convex stopping rule.
- convex
Stop Property MapConfig - Deprecated. The automated early stopping using convex stopping rule.
- decay
Curve Property MapStopping Spec - The automated early stopping spec using decay curve rule.
- measurement
Selection StringType - Describe which measurement selection type will be used
- median
Automated Property MapStopping Spec - The automated early stopping spec using median rule.
- metrics List<Property Map>
- Metric specs for the Study.
- observation
Noise String - The observation noise level of the study. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline.
- parameters List<Property Map>
- The set of parameters to tune.
- study
Stopping Property MapConfig - Conditions for automated stopping of a Study. Enable automated stopping by configuring at least one condition.
- transfer
Learning Property MapConfig - The configuration info/options for transfer learning. Currently supported for Vertex AI Vizier service, not HyperParameterTuningJob
GoogleCloudAiplatformV1beta1StudySpecStudyStoppingConfigResponse
- Max
Duration stringNo Progress - If the objective value has not improved for this much time, stop the study. WARNING: Effective only for single-objective studies.
- Max
Num intTrials - If there are more than this many trials, stop the study.
- Max
Num intTrials No Progress - If the objective value has not improved for this many consecutive trials, stop the study. WARNING: Effective only for single-objective studies.
- Maximum
Runtime Pulumi.Constraint Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Time Constraint Response - If the specified time or duration has passed, stop the study.
- Min
Num intTrials - If there are fewer than this many COMPLETED trials, do not stop the study.
- Minimum
Runtime Pulumi.Constraint Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Time Constraint Response - 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
andalways_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. - Should
Stop boolAsap - 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).
- Max
Duration stringNo Progress - If the objective value has not improved for this much time, stop the study. WARNING: Effective only for single-objective studies.
- Max
Num intTrials - If there are more than this many trials, stop the study.
- Max
Num intTrials No Progress - If the objective value has not improved for this many consecutive trials, stop the study. WARNING: Effective only for single-objective studies.
- Maximum
Runtime GoogleConstraint Cloud Aiplatform V1beta1Study Time Constraint Response - If the specified time or duration has passed, stop the study.
- Min
Num intTrials - If there are fewer than this many COMPLETED trials, do not stop the study.
- Minimum
Runtime GoogleConstraint Cloud Aiplatform V1beta1Study Time Constraint Response - 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
andalways_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. - Should
Stop boolAsap - 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).
- max
Duration StringNo Progress - If the objective value has not improved for this much time, stop the study. WARNING: Effective only for single-objective studies.
- max
Num IntegerTrials - If there are more than this many trials, stop the study.
- max
Num IntegerTrials No Progress - If the objective value has not improved for this many consecutive trials, stop the study. WARNING: Effective only for single-objective studies.
- maximum
Runtime GoogleConstraint Cloud Aiplatform V1beta1Study Time Constraint Response - If the specified time or duration has passed, stop the study.
- min
Num IntegerTrials - If there are fewer than this many COMPLETED trials, do not stop the study.
- minimum
Runtime GoogleConstraint Cloud Aiplatform V1beta1Study Time Constraint Response - 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
andalways_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. - should
Stop BooleanAsap - 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).
- max
Duration stringNo Progress - If the objective value has not improved for this much time, stop the study. WARNING: Effective only for single-objective studies.
- max
Num numberTrials - If there are more than this many trials, stop the study.
- max
Num numberTrials No Progress - If the objective value has not improved for this many consecutive trials, stop the study. WARNING: Effective only for single-objective studies.
- maximum
Runtime GoogleConstraint Cloud Aiplatform V1beta1Study Time Constraint Response - If the specified time or duration has passed, stop the study.
- min
Num numberTrials - If there are fewer than this many COMPLETED trials, do not stop the study.
- minimum
Runtime GoogleConstraint Cloud Aiplatform V1beta1Study Time Constraint Response - 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
andalways_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. - should
Stop booleanAsap - 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).
- max_
duration_ strno_ progress - If the objective value has not improved for this much time, stop the study. WARNING: Effective only for single-objective studies.
- max_
num_ inttrials - If there are more than this many trials, stop the study.
- max_
num_ inttrials_ no_ progress - If the objective value has not improved for this many consecutive trials, stop the study. WARNING: Effective only for single-objective studies.
- maximum_
runtime_ Googleconstraint Cloud Aiplatform V1beta1Study Time Constraint Response - If the specified time or duration has passed, stop the study.
- min_
num_ inttrials - If there are fewer than this many COMPLETED trials, do not stop the study.
- minimum_
runtime_ Googleconstraint Cloud Aiplatform V1beta1Study Time Constraint Response - 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
andalways_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. - should_
stop_ boolasap - 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).
- max
Duration StringNo Progress - If the objective value has not improved for this much time, stop the study. WARNING: Effective only for single-objective studies.
- max
Num NumberTrials - If there are more than this many trials, stop the study.
- max
Num NumberTrials No Progress - If the objective value has not improved for this many consecutive trials, stop the study. WARNING: Effective only for single-objective studies.
- maximum
Runtime Property MapConstraint - If the specified time or duration has passed, stop the study.
- min
Num NumberTrials - If there are fewer than this many COMPLETED trials, do not stop the study.
- minimum
Runtime Property MapConstraint - 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
andalways_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. - should
Stop BooleanAsap - 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).
GoogleCloudAiplatformV1beta1StudySpecTransferLearningConfigResponse
- Disable
Transfer boolLearning - Flag to to manually prevent vizier from using transfer learning on a new study. Otherwise, vizier will automatically determine whether or not to use transfer learning.
- Prior
Study List<string>Names - Names of previously completed studies
- Disable
Transfer boolLearning - Flag to to manually prevent vizier from using transfer learning on a new study. Otherwise, vizier will automatically determine whether or not to use transfer learning.
- Prior
Study []stringNames - Names of previously completed studies
- disable
Transfer BooleanLearning - Flag to to manually prevent vizier from using transfer learning on a new study. Otherwise, vizier will automatically determine whether or not to use transfer learning.
- prior
Study List<String>Names - Names of previously completed studies
- disable
Transfer booleanLearning - Flag to to manually prevent vizier from using transfer learning on a new study. Otherwise, vizier will automatically determine whether or not to use transfer learning.
- prior
Study string[]Names - Names of previously completed studies
- disable_
transfer_ boollearning - Flag to to manually prevent vizier from using transfer learning on a new study. Otherwise, vizier will automatically determine whether or not to use transfer learning.
- prior_
study_ Sequence[str]names - Names of previously completed studies
- disable
Transfer BooleanLearning - Flag to to manually prevent vizier from using transfer learning on a new study. Otherwise, vizier will automatically determine whether or not to use transfer learning.
- prior
Study List<String>Names - Names of previously completed studies
GoogleCloudAiplatformV1beta1StudyTimeConstraintResponse
- End
Time string - Compares the wallclock time to this time. Must use UTC timezone.
- Max
Duration string - Counts the wallclock time passed since the creation of this Study.
- End
Time string - Compares the wallclock time to this time. Must use UTC timezone.
- Max
Duration string - Counts the wallclock time passed since the creation of this Study.
- end
Time String - Compares the wallclock time to this time. Must use UTC timezone.
- max
Duration String - Counts the wallclock time passed since the creation of this Study.
- end
Time string - Compares the wallclock time to this time. Must use UTC timezone.
- max
Duration string - Counts the wallclock time passed since the creation of this Study.
- end_
time str - Compares the wallclock time to this time. Must use UTC timezone.
- max_
duration str - Counts the wallclock time passed since the creation of this Study.
- end
Time String - Compares the wallclock time to this time. Must use UTC timezone.
- max
Duration String - Counts the wallclock time passed since the creation of this Study.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi