#[non_exhaustive]pub struct TrainingPipeline {Show 17 fields
pub name: String,
pub display_name: String,
pub input_data_config: Option<InputDataConfig>,
pub training_task_definition: String,
pub training_task_inputs: Option<Value>,
pub training_task_metadata: Option<Value>,
pub model_to_upload: Option<Model>,
pub model_id: String,
pub parent_model: String,
pub state: PipelineState,
pub error: Option<Status>,
pub create_time: Option<Timestamp>,
pub start_time: Option<Timestamp>,
pub end_time: Option<Timestamp>,
pub update_time: Option<Timestamp>,
pub labels: HashMap<String, String>,
pub encryption_spec: Option<EncryptionSpec>,
/* private fields */
}Expand description
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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringOutput only. Resource name of the TrainingPipeline.
display_name: StringRequired. The user-defined name of this TrainingPipeline.
input_data_config: Option<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: StringRequired. 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: Option<Value>Required. The training task’s parameter(s), as specified in the
training_task_definition’s
inputs.
training_task_metadata: Option<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: Option<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: StringOptional. 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: StringOptional. 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: PipelineStateOutput only. The detailed state of the pipeline.
error: Option<Status>Output only. Only populated when the pipeline’s state is
PIPELINE_STATE_FAILED or PIPELINE_STATE_CANCELLED.
create_time: Option<Timestamp>Output only. Time when the TrainingPipeline was created.
start_time: Option<Timestamp>Output only. Time when the TrainingPipeline for the first time entered the
PIPELINE_STATE_RUNNING state.
end_time: Option<Timestamp>Output only. Time when the TrainingPipeline entered any of the following
states: PIPELINE_STATE_SUCCEEDED, PIPELINE_STATE_FAILED,
PIPELINE_STATE_CANCELLED.
update_time: Option<Timestamp>Output only. Time when the TrainingPipeline was most recently updated.
labels: HashMap<String, String>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: Option<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.
Implementations§
Source§impl TrainingPipeline
impl TrainingPipeline
pub fn new() -> Self
Sourcepub fn set_display_name<T: Into<String>>(self, v: T) -> Self
pub fn set_display_name<T: Into<String>>(self, v: T) -> Self
Sets the value of display_name.
Sourcepub fn set_input_data_config<T: Into<Option<InputDataConfig>>>(
self,
v: T,
) -> Self
pub fn set_input_data_config<T: Into<Option<InputDataConfig>>>( self, v: T, ) -> Self
Sets the value of input_data_config.
Sourcepub fn set_training_task_definition<T: Into<String>>(self, v: T) -> Self
pub fn set_training_task_definition<T: Into<String>>(self, v: T) -> Self
Sets the value of training_task_definition.
Sourcepub fn set_training_task_inputs<T: Into<Option<Value>>>(self, v: T) -> Self
pub fn set_training_task_inputs<T: Into<Option<Value>>>(self, v: T) -> Self
Sets the value of training_task_inputs.
Sourcepub fn set_training_task_metadata<T: Into<Option<Value>>>(self, v: T) -> Self
pub fn set_training_task_metadata<T: Into<Option<Value>>>(self, v: T) -> Self
Sets the value of training_task_metadata.
Sourcepub fn set_model_to_upload<T: Into<Option<Model>>>(self, v: T) -> Self
pub fn set_model_to_upload<T: Into<Option<Model>>>(self, v: T) -> Self
Sets the value of model_to_upload.
Sourcepub fn set_model_id<T: Into<String>>(self, v: T) -> Self
pub fn set_model_id<T: Into<String>>(self, v: T) -> Self
Sets the value of model_id.
Sourcepub fn set_parent_model<T: Into<String>>(self, v: T) -> Self
pub fn set_parent_model<T: Into<String>>(self, v: T) -> Self
Sets the value of parent_model.
Sourcepub fn set_state<T: Into<PipelineState>>(self, v: T) -> Self
pub fn set_state<T: Into<PipelineState>>(self, v: T) -> Self
Sets the value of state.
Sourcepub fn set_create_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
pub fn set_create_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
Sets the value of create_time.
Sourcepub fn set_start_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
pub fn set_start_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
Sets the value of start_time.
Sourcepub fn set_end_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
pub fn set_end_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
Sets the value of end_time.
Sourcepub fn set_update_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
pub fn set_update_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
Sets the value of update_time.
Sourcepub fn set_labels<T, K, V>(self, v: T) -> Self
pub fn set_labels<T, K, V>(self, v: T) -> Self
Sets the value of labels.
Sourcepub fn set_encryption_spec<T: Into<Option<EncryptionSpec>>>(self, v: T) -> Self
pub fn set_encryption_spec<T: Into<Option<EncryptionSpec>>>(self, v: T) -> Self
Sets the value of encryption_spec.
Trait Implementations§
Source§impl Clone for TrainingPipeline
impl Clone for TrainingPipeline
Source§fn clone(&self) -> TrainingPipeline
fn clone(&self) -> TrainingPipeline
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more