Class: Google::Cloud::AIPlatform::V1::TunedModel
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::TunedModel
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/tuning_job.rb
Overview
The Model Registry Model and Online Prediction Endpoint associated with this TuningJob.
Instance Attribute Summary collapse
-
#checkpoints ⇒ ::Array<::Google::Cloud::AIPlatform::V1::TunedModelCheckpoint>
readonly
Output only.
-
#endpoint ⇒ ::String
readonly
Output only.
-
#model ⇒ ::String
readonly
Output only.
Instance Attribute Details
#checkpoints ⇒ ::Array<::Google::Cloud::AIPlatform::V1::TunedModelCheckpoint> (readonly)
Returns Output only. The checkpoints associated with this TunedModel. This field is only populated for tuning jobs that enable intermediate checkpoints.
159 160 161 162 |
# File 'proto_docs/google/cloud/aiplatform/v1/tuning_job.rb', line 159 class TunedModel include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#endpoint ⇒ ::String (readonly)
Returns Output only. A resource name of an Endpoint. Format:
projects/{project}/locations/{location}/endpoints/{endpoint}.
159 160 161 162 |
# File 'proto_docs/google/cloud/aiplatform/v1/tuning_job.rb', line 159 class TunedModel include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#model ⇒ ::String (readonly)
Returns Output only. The resource name of the TunedModel. Format:
projects/{project}/locations/{location}/models/{model}@{version_id}
When tuning from a base model, the version ID will be 1.
For continuous tuning, if the provided tuned_model_display_name is set and different from parent model's display name, the tuned model will have a new parent model with version 1. Otherwise the version id will be incremented by 1 from the last version ID in the parent model. E.g.,
projects/{project}/locations/{location}/models/{model}@{last_version_id +
1}.
159 160 161 162 |
# File 'proto_docs/google/cloud/aiplatform/v1/tuning_job.rb', line 159 class TunedModel include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |