Class Study (1.24.1)

Study(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A message representing a Study.

Attributes

NameDescription
name str
Output only. The name of a study. The study's globally unique identifier. Format: projects/{project}/locations/{location}/studies/{study}
display_name str
Required. Describes the Study, default value is empty string.
study_spec google.cloud.aiplatform_v1beta1.types.StudySpec
Required. Configuration of the Study.
state google.cloud.aiplatform_v1beta1.types.Study.State
Output only. The detailed state of a Study.
create_time google.protobuf.timestamp_pb2.Timestamp
Output only. Time at which the study was created.
inactive_reason str
Output only. A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED.

Inheritance

builtins.object > proto.message.Message > Study

Classes

State

State(value)

Describes the Study state.

Values: STATE_UNSPECIFIED (0): The study state is unspecified. ACTIVE (1): The study is active. INACTIVE (2): The study is stopped due to an internal error. COMPLETED (3): The study is done when the service exhausts the parameter search space or max_trial_count is reached.