- 1.35.0 (latest)
- 1.34.0
- 1.33.0
- 1.32.1
- 1.31.0
- 1.30.0
- 1.26.0
- 1.23.0
- 1.22.0
- 1.21.0
- 1.20.0
- 1.19.0
- 1.18.0
- 1.17.0
- 1.16.0
- 1.15.0
- 1.14.0
- 1.13.1
- 1.12.0
- 1.11.0
- 1.10.0
- 1.9.0
- 1.8.0
- 1.7.0
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.0
- 1.2.0
- 1.1.0
- 1.0.0
- 0.39.0
- 0.38.0
- 0.37.1
- 0.32.0
- 0.31.0
- 0.30.0
- 0.29.0
- 0.28.0
- 0.27.0
- 0.26.2
- 0.25.0
- 0.24.0
- 0.23.0
- 0.22.0
- 0.21.0
- 0.20.0
- 0.19.0
- 0.18.0
- 0.17.0
- 0.16.0
- 0.15.0
- 0.13.0
- 0.12.0
- 0.11.1
- 0.10.0
Reference documentation and code samples for the Google Cloud Ai Platform V1 Client class TrainingPipeline.
The TrainingPipeline orchestrates tasks associated with training a Model. It always executes the training task, and optionally may also export data from Vertex AI's Dataset which becomes the training input, upload the Model to Vertex AI, and evaluate the Model.
Generated from protobuf message google.cloud.aiplatform.v1.TrainingPipeline
Methods
__construct
Constructor.
data
array
Optional. Data for populating the Message object.
↳ name
string
Output only. Resource name of the TrainingPipeline.
↳ display_name
string
Required. The user-defined name of this TrainingPipeline.
↳ input_data_config
Google\Cloud\AIPlatform\V1\InputDataConfig
Specifies Vertex AI owned input data that may be used for training the Model. The TrainingPipeline's training_task_definition should make clear whether this config is used and if there are any special requirements on how it should be filled. If nothing about this config is mentioned in the training_task_definition , then it should be assumed that the TrainingPipeline does not depend on this configuration.
↳ training_task_definition
string
Required. A Google Cloud Storage path to the YAML file that defines the training task which is responsible for producing the model artifact, and may also include additional auxiliary work. The definition files that can be used here are found in gs://google-cloud-aiplatform/schema/trainingjob/definition/. Note: The URI given on output will be immutable and probably different, including the URI scheme, than the one given on input. The output URI will point to a location where the user only has a read access.
↳ training_task_inputs
Google\Protobuf\Value
Required. The training task's parameter(s), as specified in the training_task_definition
's inputs
.
↳ training_task_metadata
Google\Protobuf\Value
Output only. The metadata information as specified in the training_task_definition
's metadata
. This metadata is an auxiliary runtime and final information about the training task. While the pipeline is running this information is populated only at a best effort basis. Only present if the pipeline's training_task_definition
contains metadata
object.
↳ model_to_upload
Google\Cloud\AIPlatform\V1\Model
Describes the Model that may be uploaded (via ModelService.UploadModel
) by this TrainingPipeline. The TrainingPipeline's training_task_definition
should make clear whether this Model description should be populated, and if there are any special requirements regarding how it should be filled. If nothing is mentioned in the training_task_definition
, then it should be assumed that this field should not be filled and the training task either uploads the Model without a need of this information, or that training task does not support uploading a Model as part of the pipeline. When the Pipeline's state becomes PIPELINE_STATE_SUCCEEDED
and the trained Model had been uploaded into Vertex AI, then the model_to_upload's resource name
is populated. The Model is always uploaded into the Project and Location in which this pipeline is.
↳ model_id
string
Optional. The ID to use for the uploaded Model, which will become the final component of the model resource name. This value may be up to 63 characters, and valid characters are [a-z0-9_-]
. The first character cannot be a number or hyphen.
↳ parent_model
string
Optional. When specify this field, the model_to_upload
will not be uploaded as a new model, instead, it will become a new version of this parent_model
.
↳ state
int
Output only. The detailed state of the pipeline.
↳ error
Google\Rpc\Status
Output only. Only populated when the pipeline's state is PIPELINE_STATE_FAILED
or PIPELINE_STATE_CANCELLED
.
↳ create_time
Google\Protobuf\Timestamp
Output only. Time when the TrainingPipeline was created.
↳ start_time
Google\Protobuf\Timestamp
Output only. Time when the TrainingPipeline for the first time entered the PIPELINE_STATE_RUNNING
state.
↳ end_time
Google\Protobuf\Timestamp
Output only. Time when the TrainingPipeline entered any of the following states: PIPELINE_STATE_SUCCEEDED
, PIPELINE_STATE_FAILED
, PIPELINE_STATE_CANCELLED
.
↳ update_time
Google\Protobuf\Timestamp
Output only. Time when the TrainingPipeline was most recently updated.
↳ labels
array|Google\Protobuf\Internal\MapField
The labels with user-defined metadata to organize TrainingPipelines. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels.
↳ encryption_spec
Google\Cloud\AIPlatform\V1\EncryptionSpec
Customer-managed encryption key spec for a TrainingPipeline. If set, this TrainingPipeline will be secured by this key. Note: Model trained by this TrainingPipeline is also secured by this key if model_to_upload is not set separately.
getName
Output only. Resource name of the TrainingPipeline.
Generated from protobuf field string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
string
setName
Output only. Resource name of the TrainingPipeline.
Generated from protobuf field string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
var
string
$this
getDisplayName
Required. The user-defined name of this TrainingPipeline.
Generated from protobuf field string display_name = 2 [(.google.api.field_behavior) = REQUIRED];
string
setDisplayName
Required. The user-defined name of this TrainingPipeline.
Generated from protobuf field string display_name = 2 [(.google.api.field_behavior) = REQUIRED];
var
string
$this
getInputDataConfig
Specifies Vertex AI owned input data that may be used for training the Model. The TrainingPipeline's training_task_definition should make clear whether this config is used and if there are any special requirements on how it should be filled. If nothing about this config is mentioned in the training_task_definition , then it should be assumed that the TrainingPipeline does not depend on this configuration.
Generated from protobuf field .google.cloud.aiplatform.v1.InputDataConfig input_data_config = 3;
hasInputDataConfig
clearInputDataConfig
setInputDataConfig
Specifies Vertex AI owned input data that may be used for training the Model. The TrainingPipeline's training_task_definition should make clear whether this config is used and if there are any special requirements on how it should be filled. If nothing about this config is mentioned in the training_task_definition , then it should be assumed that the TrainingPipeline does not depend on this configuration.
Generated from protobuf field .google.cloud.aiplatform.v1.InputDataConfig input_data_config = 3;
$this
getTrainingTaskDefinition
Required. A Google Cloud Storage path to the YAML file that defines the training task which is responsible for producing the model artifact, and may also include additional auxiliary work.
The definition files that can be used here are found in gs://google-cloud-aiplatform/schema/trainingjob/definition/. Note: The URI given on output will be immutable and probably different, including the URI scheme, than the one given on input. The output URI will point to a location where the user only has a read access.
Generated from protobuf field string training_task_definition = 4 [(.google.api.field_behavior) = REQUIRED];
string
setTrainingTaskDefinition
Required. A Google Cloud Storage path to the YAML file that defines the training task which is responsible for producing the model artifact, and may also include additional auxiliary work.
The definition files that can be used here are found in gs://google-cloud-aiplatform/schema/trainingjob/definition/. Note: The URI given on output will be immutable and probably different, including the URI scheme, than the one given on input. The output URI will point to a location where the user only has a read access.
Generated from protobuf field string training_task_definition = 4 [(.google.api.field_behavior) = REQUIRED];
var
string
$this
getTrainingTaskInputs
Required. The training task's parameter(s), as specified in the training_task_definition
's inputs
.
Generated from protobuf field .google.protobuf.Value training_task_inputs = 5 [(.google.api.field_behavior) = REQUIRED];
Google\Protobuf\Value|null
hasTrainingTaskInputs
clearTrainingTaskInputs
setTrainingTaskInputs
Required. The training task's parameter(s), as specified in the training_task_definition
's inputs
.
Generated from protobuf field .google.protobuf.Value training_task_inputs = 5 [(.google.api.field_behavior) = REQUIRED];
var
Google\Protobuf\Value
$this
getTrainingTaskMetadata
Output only. The metadata information as specified in the training_task_definition
's metadata
. This metadata is an auxiliary runtime and final information
about the training task. While the pipeline is running this information is
populated only at a best effort basis. Only present if the
pipeline's training_task_definition
contains metadata
object.
Generated from protobuf field .google.protobuf.Value training_task_metadata = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Google\Protobuf\Value|null
hasTrainingTaskMetadata
clearTrainingTaskMetadata
setTrainingTaskMetadata
Output only. The metadata information as specified in the training_task_definition
's metadata
. This metadata is an auxiliary runtime and final information
about the training task. While the pipeline is running this information is
populated only at a best effort basis. Only present if the
pipeline's training_task_definition
contains metadata
object.
Generated from protobuf field .google.protobuf.Value training_task_metadata = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
var
Google\Protobuf\Value
$this
getModelToUpload
Describes the Model that may be uploaded (via ModelService.UploadModel ) by this TrainingPipeline. The TrainingPipeline's training_task_definition should make clear whether this Model description should be populated, and if there are any special requirements regarding how it should be filled. If nothing is mentioned in the training_task_definition , then it should be assumed that this field should not be filled and the training task either uploads the Model without a need of this information, or that training task does not support uploading a Model as part of the pipeline.
When the Pipeline's state becomes PIPELINE_STATE_SUCCEEDED
and
the trained Model had been uploaded into Vertex AI, then the
model_to_upload's resource name
is populated. The Model
is always uploaded into the Project and Location in which this pipeline
is.
Generated from protobuf field .google.cloud.aiplatform.v1.Model model_to_upload = 7;
hasModelToUpload
clearModelToUpload
setModelToUpload
Describes the Model that may be uploaded (via ModelService.UploadModel ) by this TrainingPipeline. The TrainingPipeline's training_task_definition should make clear whether this Model description should be populated, and if there are any special requirements regarding how it should be filled. If nothing is mentioned in the training_task_definition , then it should be assumed that this field should not be filled and the training task either uploads the Model without a need of this information, or that training task does not support uploading a Model as part of the pipeline.
When the Pipeline's state becomes PIPELINE_STATE_SUCCEEDED
and
the trained Model had been uploaded into Vertex AI, then the
model_to_upload's resource name
is populated. The Model
is always uploaded into the Project and Location in which this pipeline
is.
Generated from protobuf field .google.cloud.aiplatform.v1.Model model_to_upload = 7;
$this
getModelId
Optional. The ID to use for the uploaded Model, which will become the final component of the model resource name.
This value may be up to 63 characters, and valid characters are [a-z0-9_-]
. The first character cannot be a number or hyphen.
Generated from protobuf field string model_id = 22 [(.google.api.field_behavior) = OPTIONAL];
string
setModelId
Optional. The ID to use for the uploaded Model, which will become the final component of the model resource name.
This value may be up to 63 characters, and valid characters are [a-z0-9_-]
. The first character cannot be a number or hyphen.
Generated from protobuf field string model_id = 22 [(.google.api.field_behavior) = OPTIONAL];
var
string
$this
getParentModel
Optional. When specify this field, the model_to_upload
will not be uploaded as a
new model, instead, it will become a new version of this parent_model
.
Generated from protobuf field string parent_model = 21 [(.google.api.field_behavior) = OPTIONAL];
string
setParentModel
Optional. When specify this field, the model_to_upload
will not be uploaded as a
new model, instead, it will become a new version of this parent_model
.
Generated from protobuf field string parent_model = 21 [(.google.api.field_behavior) = OPTIONAL];
var
string
$this
getState
Output only. The detailed state of the pipeline.
Generated from protobuf field .google.cloud.aiplatform.v1.PipelineState state = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
int
setState
Output only. The detailed state of the pipeline.
Generated from protobuf field .google.cloud.aiplatform.v1.PipelineState state = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
var
int
$this
getError
Output only. Only populated when the pipeline's state is PIPELINE_STATE_FAILED
or PIPELINE_STATE_CANCELLED
.
Generated from protobuf field .google.rpc.Status error = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
hasError
clearError
setError
Output only. Only populated when the pipeline's state is PIPELINE_STATE_FAILED
or PIPELINE_STATE_CANCELLED
.
Generated from protobuf field .google.rpc.Status error = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
$this
getCreateTime
Output only. Time when the TrainingPipeline was created.
Generated from protobuf field .google.protobuf.Timestamp create_time = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
Google\Protobuf\Timestamp|null
hasCreateTime
clearCreateTime
setCreateTime
Output only. Time when the TrainingPipeline was created.
Generated from protobuf field .google.protobuf.Timestamp create_time = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
var
Google\Protobuf\Timestamp
$this
getStartTime
Output only. Time when the TrainingPipeline for the first time entered the PIPELINE_STATE_RUNNING
state.
Generated from protobuf field .google.protobuf.Timestamp start_time = 12 [(.google.api.field_behavior) = OUTPUT_ONLY];
Google\Protobuf\Timestamp|null
hasStartTime
clearStartTime
setStartTime
Output only. Time when the TrainingPipeline for the first time entered the PIPELINE_STATE_RUNNING
state.
Generated from protobuf field .google.protobuf.Timestamp start_time = 12 [(.google.api.field_behavior) = OUTPUT_ONLY];
var
Google\Protobuf\Timestamp
$this
getEndTime
Output only. Time when the TrainingPipeline entered any of the following states: PIPELINE_STATE_SUCCEEDED
, PIPELINE_STATE_FAILED
, PIPELINE_STATE_CANCELLED
.
Generated from protobuf field .google.protobuf.Timestamp end_time = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
Google\Protobuf\Timestamp|null
hasEndTime
clearEndTime
setEndTime
Output only. Time when the TrainingPipeline entered any of the following states: PIPELINE_STATE_SUCCEEDED
, PIPELINE_STATE_FAILED
, PIPELINE_STATE_CANCELLED
.
Generated from protobuf field .google.protobuf.Timestamp end_time = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
var
Google\Protobuf\Timestamp
$this
getUpdateTime
Output only. Time when the TrainingPipeline was most recently updated.
Generated from protobuf field .google.protobuf.Timestamp update_time = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];
Google\Protobuf\Timestamp|null
hasUpdateTime
clearUpdateTime
setUpdateTime
Output only. Time when the TrainingPipeline was most recently updated.
Generated from protobuf field .google.protobuf.Timestamp update_time = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];
var
Google\Protobuf\Timestamp
$this
getLabels
The labels with user-defined metadata to organize TrainingPipelines.
Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels.
Generated from protobuf field map<string, string> labels = 15;
Google\Protobuf\Internal\MapField
setLabels
The labels with user-defined metadata to organize TrainingPipelines.
Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels.
Generated from protobuf field map<string, string> labels = 15;
var
array|Google\Protobuf\Internal\MapField
$this
getEncryptionSpec
Customer-managed encryption key spec for a TrainingPipeline. If set, this TrainingPipeline will be secured by this key.
Note: Model trained by this TrainingPipeline is also secured by this key if model_to_upload is not set separately.
Generated from protobuf field .google.cloud.aiplatform.v1.EncryptionSpec encryption_spec = 18;
hasEncryptionSpec
clearEncryptionSpec
setEncryptionSpec
Customer-managed encryption key spec for a TrainingPipeline. If set, this TrainingPipeline will be secured by this key.
Note: Model trained by this TrainingPipeline is also secured by this key if model_to_upload is not set separately.
Generated from protobuf field .google.cloud.aiplatform.v1.EncryptionSpec encryption_spec = 18;
$this