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)
public static Output<GetStudyResult> getStudy(GetStudyArgs args, InvokeOptions options)
fn::invoke:
  function: google-native:aiplatform/v1beta1:getStudy
  arguments:
    # arguments dictionaryThe following arguments are supported:
getStudy Result
The following output properties are available:
- CreateTime string
- Time at which the study was created.
- DisplayName string
- Describes the Study, default value is empty string.
- InactiveReason 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.
- StudySpec Pulumi.Google Native. Aiplatform. V1Beta1. Outputs. Google Cloud Aiplatform V1beta1Study Spec Response 
- Configuration of the Study.
- CreateTime string
- Time at which the study was created.
- DisplayName string
- Describes the Study, default value is empty string.
- InactiveReason 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.
- StudySpec GoogleCloud Aiplatform V1beta1Study Spec Response 
- Configuration of the Study.
- createTime String
- Time at which the study was created.
- displayName String
- Describes the Study, default value is empty string.
- inactiveReason 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.
- studySpec GoogleCloud Aiplatform V1beta1Study Spec Response 
- Configuration of the Study.
- createTime string
- Time at which the study was created.
- displayName string
- Describes the Study, default value is empty string.
- inactiveReason 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.
- studySpec 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.
- createTime String
- Time at which the study was created.
- displayName String
- Describes the Study, default value is empty string.
- inactiveReason 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.
- studySpec Property Map
- Configuration of the Study.
Supporting Types
GoogleCloudAiplatformV1beta1StudySpecConvexAutomatedStoppingSpecResponse         
- LearningRate 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.
- MaxStep 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.
- MinMeasurement 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.
- MinStep 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.
- UpdateAll 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.
- UseElapsed 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.
- LearningRate 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.
- MaxStep 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.
- MinMeasurement 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.
- MinStep 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.
- UpdateAll 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.
- UseElapsed 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.
- learningRate 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.
- maxStep 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.
- minMeasurement 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.
- minStep 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.
- updateAll 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.
- useElapsed 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.
- learningRate 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.
- maxStep 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.
- minMeasurement 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.
- minStep 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.
- updateAll 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.
- useElapsed 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.
- learningRate 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.
- maxStep 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.
- minMeasurement 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.
- minStep 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.
- updateAll 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.
- useElapsed 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        
- AutoregressiveOrder 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.
- LearningRate 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.
- MaxNum 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.
- MinNum 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.
- UseSeconds 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.
- AutoregressiveOrder 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.
- LearningRate 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.
- MaxNum 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.
- MinNum 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.
- UseSeconds 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.
- autoregressiveOrder 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.
- learningRate 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.
- maxNum 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.
- minNum 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.
- useSeconds 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.
- autoregressiveOrder 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.
- learningRate 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.
- maxNum 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.
- minNum 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.
- useSeconds 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.
- autoregressiveOrder 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.
- learningRate 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.
- maxNum 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.
- minNum 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.
- useSeconds 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          
- UseElapsed 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.
- UseElapsed 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.
- useElapsed 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.
- useElapsed 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.
- useElapsed 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         
- UseElapsed 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.
- UseElapsed 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.
- useElapsed 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.
- useElapsed 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.
- useElapsed 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.
- MetricId string
- The ID of the metric. Must not contain whitespaces and must be unique amongst all MetricSpecs.
- SafetyConfig 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.
- MetricId string
- The ID of the metric. Must not contain whitespaces and must be unique amongst all MetricSpecs.
- SafetyConfig 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.
- metricId String
- The ID of the metric. Must not contain whitespaces and must be unique amongst all MetricSpecs.
- safetyConfig 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.
- metricId string
- The ID of the metric. Must not contain whitespaces and must be unique amongst all MetricSpecs.
- safetyConfig 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.
- metricId String
- The ID of the metric. Must not contain whitespaces and must be unique amongst all MetricSpecs.
- safetyConfig 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          
- DesiredMin 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.
- SafetyThreshold double
- Safety threshold (boundary value between safe and unsafe). NOTE that if you leave SafetyMetricConfig unset, a default value of 0 will be used.
- DesiredMin 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.
- SafetyThreshold float64
- Safety threshold (boundary value between safe and unsafe). NOTE that if you leave SafetyMetricConfig unset, a default value of 0 will be used.
- desiredMin 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.
- safetyThreshold Double
- Safety threshold (boundary value between safe and unsafe). NOTE that if you leave SafetyMetricConfig unset, a default value of 0 will be used.
- desiredMin 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.
- safetyThreshold 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.
- desiredMin 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.
- safetyThreshold 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          
- DefaultValue string
- A default value for a CATEGORICALparameter 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.
- DefaultValue string
- A default value for a CATEGORICALparameter 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.
- defaultValue String
- A default value for a CATEGORICALparameter 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.
- defaultValue string
- A default value for a CATEGORICALparameter 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 CATEGORICALparameter 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.
- defaultValue String
- A default value for a CATEGORICALparameter 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_specof parent parameter.
- Values []string
- Matches values of the parent parameter of 'CATEGORICAL' type. All values must exist in categorical_value_specof parent parameter.
- values List<String>
- Matches values of the parent parameter of 'CATEGORICAL' type. All values must exist in categorical_value_specof parent parameter.
- values string[]
- Matches values of the parent parameter of 'CATEGORICAL' type. All values must exist in categorical_value_specof parent parameter.
- values Sequence[str]
- Matches values of the parent parameter of 'CATEGORICAL' type. All values must exist in categorical_value_specof parent parameter.
- values List<String>
- Matches values of the parent parameter of 'CATEGORICAL' type. All values must exist in categorical_value_specof parent parameter.
GoogleCloudAiplatformV1beta1StudySpecParameterSpecConditionalParameterSpecDiscreteValueConditionResponse             
- Values List<double>
- Matches values of the parent parameter of 'DISCRETE' type. All values must exist in discrete_value_specof 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_specof 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_specof 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_specof 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_specof 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_specof 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_specof parent parameter.
- Values []string
- Matches values of the parent parameter of 'INTEGER' type. All values must lie in integer_value_specof parent parameter.
- values List<String>
- Matches values of the parent parameter of 'INTEGER' type. All values must lie in integer_value_specof parent parameter.
- values string[]
- Matches values of the parent parameter of 'INTEGER' type. All values must lie in integer_value_specof parent parameter.
- values Sequence[str]
- Matches values of the parent parameter of 'INTEGER' type. All values must lie in integer_value_specof parent parameter.
- values List<String>
- Matches values of the parent parameter of 'INTEGER' type. All values must lie in integer_value_specof parent parameter.
GoogleCloudAiplatformV1beta1StudySpecParameterSpecConditionalParameterSpecResponse          
- ParameterSpec Pulumi.Google Native. Aiplatform. V1Beta1. Inputs. Google Cloud Aiplatform V1beta1Study Spec Parameter Spec Response 
- The spec for a conditional parameter.
- ParentCategorical 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 CATEGORICALtype.
- ParentDiscrete 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 DISCRETEtype.
- ParentInt 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 INTEGERtype.
- ParameterSpec GoogleCloud Aiplatform V1beta1Study Spec Parameter Spec Response 
- The spec for a conditional parameter.
- ParentCategorical GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Categorical Value Condition Response 
- The spec for matching values from a parent parameter of CATEGORICALtype.
- ParentDiscrete GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Discrete Value Condition Response 
- The spec for matching values from a parent parameter of DISCRETEtype.
- ParentInt GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Int Value Condition Response 
- The spec for matching values from a parent parameter of INTEGERtype.
- parameterSpec GoogleCloud Aiplatform V1beta1Study Spec Parameter Spec Response 
- The spec for a conditional parameter.
- parentCategorical GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Categorical Value Condition Response 
- The spec for matching values from a parent parameter of CATEGORICALtype.
- parentDiscrete GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Discrete Value Condition Response 
- The spec for matching values from a parent parameter of DISCRETEtype.
- parentInt GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Int Value Condition Response 
- The spec for matching values from a parent parameter of INTEGERtype.
- parameterSpec GoogleCloud Aiplatform V1beta1Study Spec Parameter Spec Response 
- The spec for a conditional parameter.
- parentCategorical GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Categorical Value Condition Response 
- The spec for matching values from a parent parameter of CATEGORICALtype.
- parentDiscrete GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Discrete Value Condition Response 
- The spec for matching values from a parent parameter of DISCRETEtype.
- parentInt GoogleValues Cloud Aiplatform V1beta1Study Spec Parameter Spec Conditional Parameter Spec Int Value Condition Response 
- The spec for matching values from a parent parameter of INTEGERtype.
- 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 CATEGORICALtype.
- 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 DISCRETEtype.
- 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 INTEGERtype.
- parameterSpec Property Map
- The spec for a conditional parameter.
- parentCategorical Property MapValues 
- The spec for matching values from a parent parameter of CATEGORICALtype.
- parentDiscrete Property MapValues 
- The spec for matching values from a parent parameter of DISCRETEtype.
- parentInt Property MapValues 
- The spec for matching values from a parent parameter of INTEGERtype.
GoogleCloudAiplatformV1beta1StudySpecParameterSpecDiscreteValueSpecResponse          
- DefaultValue double
- A default value for a DISCRETEparameter 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.
- DefaultValue float64
- A default value for a DISCRETEparameter 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.
- defaultValue Double
- A default value for a DISCRETEparameter 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.
- defaultValue number
- A default value for a DISCRETEparameter 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 DISCRETEparameter 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.
- defaultValue Number
- A default value for a DISCRETEparameter 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          
- DefaultValue double
- A default value for a DOUBLEparameter 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.
- MaxValue double
- Inclusive maximum value of the parameter.
- MinValue double
- Inclusive minimum value of the parameter.
- DefaultValue float64
- A default value for a DOUBLEparameter 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.
- MaxValue float64
- Inclusive maximum value of the parameter.
- MinValue float64
- Inclusive minimum value of the parameter.
- defaultValue Double
- A default value for a DOUBLEparameter 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.
- maxValue Double
- Inclusive maximum value of the parameter.
- minValue Double
- Inclusive minimum value of the parameter.
- defaultValue number
- A default value for a DOUBLEparameter 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.
- maxValue number
- Inclusive maximum value of the parameter.
- minValue number
- Inclusive minimum value of the parameter.
- default_value float
- A default value for a DOUBLEparameter 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.
- defaultValue Number
- A default value for a DOUBLEparameter 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.
- maxValue Number
- Inclusive maximum value of the parameter.
- minValue Number
- Inclusive minimum value of the parameter.
GoogleCloudAiplatformV1beta1StudySpecParameterSpecIntegerValueSpecResponse          
- DefaultValue string
- A default value for an INTEGERparameter 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.
- MaxValue string
- Inclusive maximum value of the parameter.
- MinValue string
- Inclusive minimum value of the parameter.
- DefaultValue string
- A default value for an INTEGERparameter 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.
- MaxValue string
- Inclusive maximum value of the parameter.
- MinValue string
- Inclusive minimum value of the parameter.
- defaultValue String
- A default value for an INTEGERparameter 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.
- maxValue String
- Inclusive maximum value of the parameter.
- minValue String
- Inclusive minimum value of the parameter.
- defaultValue string
- A default value for an INTEGERparameter 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.
- maxValue string
- Inclusive maximum value of the parameter.
- minValue string
- Inclusive minimum value of the parameter.
- default_value str
- A default value for an INTEGERparameter 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.
- defaultValue String
- A default value for an INTEGERparameter 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.
- maxValue String
- Inclusive maximum value of the parameter.
- minValue String
- Inclusive minimum value of the parameter.
GoogleCloudAiplatformV1beta1StudySpecParameterSpecResponse       
- CategoricalValue 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.
- ConditionalParameter 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.
- DiscreteValue 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.
- DoubleValue 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.
- IntegerValue 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.
- ParameterId string
- The ID of the parameter. Must not contain whitespaces and must be unique amongst all ParameterSpecs.
- ScaleType string
- How the parameter should be scaled. Leave unset for CATEGORICALparameters.
- CategoricalValue GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Categorical Value Spec Response 
- The value spec for a 'CATEGORICAL' parameter.
- ConditionalParameter []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.
- DiscreteValue GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Discrete Value Spec Response 
- The value spec for a 'DISCRETE' parameter.
- DoubleValue GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Double Value Spec Response 
- The value spec for a 'DOUBLE' parameter.
- IntegerValue GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Integer Value Spec Response 
- The value spec for an 'INTEGER' parameter.
- ParameterId string
- The ID of the parameter. Must not contain whitespaces and must be unique amongst all ParameterSpecs.
- ScaleType string
- How the parameter should be scaled. Leave unset for CATEGORICALparameters.
- categoricalValue GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Categorical Value Spec Response 
- The value spec for a 'CATEGORICAL' parameter.
- conditionalParameter 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.
- discreteValue GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Discrete Value Spec Response 
- The value spec for a 'DISCRETE' parameter.
- doubleValue GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Double Value Spec Response 
- The value spec for a 'DOUBLE' parameter.
- integerValue GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Integer Value Spec Response 
- The value spec for an 'INTEGER' parameter.
- parameterId String
- The ID of the parameter. Must not contain whitespaces and must be unique amongst all ParameterSpecs.
- scaleType String
- How the parameter should be scaled. Leave unset for CATEGORICALparameters.
- categoricalValue GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Categorical Value Spec Response 
- The value spec for a 'CATEGORICAL' parameter.
- conditionalParameter 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.
- discreteValue GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Discrete Value Spec Response 
- The value spec for a 'DISCRETE' parameter.
- doubleValue GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Double Value Spec Response 
- The value spec for a 'DOUBLE' parameter.
- integerValue GoogleSpec Cloud Aiplatform V1beta1Study Spec Parameter Spec Integer Value Spec Response 
- The value spec for an 'INTEGER' parameter.
- parameterId string
- The ID of the parameter. Must not contain whitespaces and must be unique amongst all ParameterSpecs.
- scaleType string
- How the parameter should be scaled. Leave unset for CATEGORICALparameters.
- 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 CATEGORICALparameters.
- categoricalValue Property MapSpec 
- The value spec for a 'CATEGORICAL' parameter.
- conditionalParameter 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.
- discreteValue Property MapSpec 
- The value spec for a 'DISCRETE' parameter.
- doubleValue Property MapSpec 
- The value spec for a 'DOUBLE' parameter.
- integerValue Property MapSpec 
- The value spec for an 'INTEGER' parameter.
- parameterId String
- The ID of the parameter. Must not contain whitespaces and must be unique amongst all ParameterSpecs.
- scaleType String
- How the parameter should be scaled. Leave unset for CATEGORICALparameters.
GoogleCloudAiplatformV1beta1StudySpecResponse     
- Algorithm string
- The search algorithm specified for the Study.
- ConvexAutomated 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.
- ConvexStop 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.
- DecayCurve 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.
- MeasurementSelection stringType 
- Describe which measurement selection type will be used
- MedianAutomated 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.
- ObservationNoise 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.
- StudyStopping 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.
- TransferLearning 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.
- ConvexAutomated GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Convex Automated Stopping Spec Response 
- The automated early stopping spec using convex stopping rule.
- ConvexStop GoogleConfig Cloud Aiplatform V1beta1Study Spec Convex Stop Config Response 
- Deprecated. The automated early stopping using convex stopping rule.
- DecayCurve GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Decay Curve Automated Stopping Spec Response 
- The automated early stopping spec using decay curve rule.
- MeasurementSelection stringType 
- Describe which measurement selection type will be used
- MedianAutomated GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Median Automated Stopping Spec Response 
- The automated early stopping spec using median rule.
- Metrics
[]GoogleCloud Aiplatform V1beta1Study Spec Metric Spec Response 
- Metric specs for the Study.
- ObservationNoise string
- The observation noise level of the study. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline.
- Parameters
[]GoogleCloud Aiplatform V1beta1Study Spec Parameter Spec Response 
- The set of parameters to tune.
- StudyStopping 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.
- TransferLearning 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.
- convexAutomated GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Convex Automated Stopping Spec Response 
- The automated early stopping spec using convex stopping rule.
- convexStop GoogleConfig Cloud Aiplatform V1beta1Study Spec Convex Stop Config Response 
- Deprecated. The automated early stopping using convex stopping rule.
- decayCurve GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Decay Curve Automated Stopping Spec Response 
- The automated early stopping spec using decay curve rule.
- measurementSelection StringType 
- Describe which measurement selection type will be used
- medianAutomated GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Median Automated Stopping Spec Response 
- The automated early stopping spec using median rule.
- metrics
List<GoogleCloud Aiplatform V1beta1Study Spec Metric Spec Response> 
- Metric specs for the Study.
- observationNoise 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<GoogleCloud Aiplatform V1beta1Study Spec Parameter Spec Response> 
- The set of parameters to tune.
- studyStopping 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.
- transferLearning 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.
- convexAutomated GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Convex Automated Stopping Spec Response 
- The automated early stopping spec using convex stopping rule.
- convexStop GoogleConfig Cloud Aiplatform V1beta1Study Spec Convex Stop Config Response 
- Deprecated. The automated early stopping using convex stopping rule.
- decayCurve GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Decay Curve Automated Stopping Spec Response 
- The automated early stopping spec using decay curve rule.
- measurementSelection stringType 
- Describe which measurement selection type will be used
- medianAutomated GoogleStopping Spec Cloud Aiplatform V1beta1Study Spec Median Automated Stopping Spec Response 
- The automated early stopping spec using median rule.
- metrics
GoogleCloud Aiplatform V1beta1Study Spec Metric Spec Response[] 
- Metric specs for the Study.
- observationNoise string
- The observation noise level of the study. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline.
- parameters
GoogleCloud Aiplatform V1beta1Study Spec Parameter Spec Response[] 
- The set of parameters to tune.
- studyStopping 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.
- transferLearning 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[GoogleCloud 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[GoogleCloud 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.
- convexAutomated Property MapStopping Spec 
- The automated early stopping spec using convex stopping rule.
- convexStop Property MapConfig 
- Deprecated. The automated early stopping using convex stopping rule.
- decayCurve Property MapStopping Spec 
- The automated early stopping spec using decay curve rule.
- measurementSelection StringType 
- Describe which measurement selection type will be used
- medianAutomated Property MapStopping Spec 
- The automated early stopping spec using median rule.
- metrics List<Property Map>
- Metric specs for the Study.
- observationNoise 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.
- studyStopping Property MapConfig 
- Conditions for automated stopping of a Study. Enable automated stopping by configuring at least one condition.
- transferLearning Property MapConfig 
- The configuration info/options for transfer learning. Currently supported for Vertex AI Vizier service, not HyperParameterTuningJob
GoogleCloudAiplatformV1beta1StudySpecStudyStoppingConfigResponse        
- MaxDuration stringNo Progress 
- If the objective value has not improved for this much time, stop the study. WARNING: Effective only for single-objective studies.
- MaxNum intTrials 
- If there are more than this many trials, stop the study.
- MaxNum 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.
- MaximumRuntime 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.
- MinNum intTrials 
- If there are fewer than this many COMPLETED trials, do not stop the study.
- MinimumRuntime 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=5andalways_stop_after= 1 hourmeans 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.
- ShouldStop 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).
- MaxDuration stringNo Progress 
- If the objective value has not improved for this much time, stop the study. WARNING: Effective only for single-objective studies.
- MaxNum intTrials 
- If there are more than this many trials, stop the study.
- MaxNum 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.
- MaximumRuntime GoogleConstraint Cloud Aiplatform V1beta1Study Time Constraint Response 
- If the specified time or duration has passed, stop the study.
- MinNum intTrials 
- If there are fewer than this many COMPLETED trials, do not stop the study.
- MinimumRuntime 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=5andalways_stop_after= 1 hourmeans 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.
- ShouldStop 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).
- maxDuration StringNo Progress 
- If the objective value has not improved for this much time, stop the study. WARNING: Effective only for single-objective studies.
- maxNum IntegerTrials 
- If there are more than this many trials, stop the study.
- maxNum 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.
- maximumRuntime GoogleConstraint Cloud Aiplatform V1beta1Study Time Constraint Response 
- If the specified time or duration has passed, stop the study.
- minNum IntegerTrials 
- If there are fewer than this many COMPLETED trials, do not stop the study.
- minimumRuntime 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=5andalways_stop_after= 1 hourmeans 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.
- shouldStop 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).
- maxDuration stringNo Progress 
- If the objective value has not improved for this much time, stop the study. WARNING: Effective only for single-objective studies.
- maxNum numberTrials 
- If there are more than this many trials, stop the study.
- maxNum 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.
- maximumRuntime GoogleConstraint Cloud Aiplatform V1beta1Study Time Constraint Response 
- If the specified time or duration has passed, stop the study.
- minNum numberTrials 
- If there are fewer than this many COMPLETED trials, do not stop the study.
- minimumRuntime 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=5andalways_stop_after= 1 hourmeans 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.
- shouldStop 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=5andalways_stop_after= 1 hourmeans 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).
- maxDuration StringNo Progress 
- If the objective value has not improved for this much time, stop the study. WARNING: Effective only for single-objective studies.
- maxNum NumberTrials 
- If there are more than this many trials, stop the study.
- maxNum 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.
- maximumRuntime Property MapConstraint 
- If the specified time or duration has passed, stop the study.
- minNum NumberTrials 
- If there are fewer than this many COMPLETED trials, do not stop the study.
- minimumRuntime 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=5andalways_stop_after= 1 hourmeans 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.
- shouldStop 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        
- DisableTransfer 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.
- PriorStudy List<string>Names 
- Names of previously completed studies
- DisableTransfer 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.
- PriorStudy []stringNames 
- Names of previously completed studies
- disableTransfer 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.
- priorStudy List<String>Names 
- Names of previously completed studies
- disableTransfer 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.
- priorStudy 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
- disableTransfer 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.
- priorStudy List<String>Names 
- Names of previously completed studies
GoogleCloudAiplatformV1beta1StudyTimeConstraintResponse      
- EndTime string
- Compares the wallclock time to this time. Must use UTC timezone.
- MaxDuration string
- Counts the wallclock time passed since the creation of this Study.
- EndTime string
- Compares the wallclock time to this time. Must use UTC timezone.
- MaxDuration string
- Counts the wallclock time passed since the creation of this Study.
- endTime String
- Compares the wallclock time to this time. Must use UTC timezone.
- maxDuration String
- Counts the wallclock time passed since the creation of this Study.
- endTime string
- Compares the wallclock time to this time. Must use UTC timezone.
- maxDuration 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.
- endTime String
- Compares the wallclock time to this time. Must use UTC timezone.
- maxDuration 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