Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RecommendSpecResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RecommendSpecResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Response message for ModelService.RecommendSpec.
Instance Attribute Summary collapse
-
#base_model ⇒ String
Output only.
-
#recommendations ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RecommendSpecResponseRecommendation>
Output only.
-
#specs ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RecommendSpecResponseMachineAndModelContainerSpec>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1RecommendSpecResponse
constructor
A new instance of GoogleCloudAiplatformV1beta1RecommendSpecResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1RecommendSpecResponse
Returns a new instance of GoogleCloudAiplatformV1beta1RecommendSpecResponse.
46850 46851 46852 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 46850 def initialize(**args) update!(**args) end |
Instance Attribute Details
#base_model ⇒ String
Output only. The base model used to finetune the custom model.
Corresponds to the JSON property baseModel
46837 46838 46839 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 46837 def base_model @base_model end |
#recommendations ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RecommendSpecResponseRecommendation>
Output only. Recommendations of deployment options for the given custom
weights model.
Corresponds to the JSON property recommendations
46843 46844 46845 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 46843 def recommendations @recommendations end |
#specs ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RecommendSpecResponseMachineAndModelContainerSpec>
Output only. The machine and model container specs.
Corresponds to the JSON property specs
46848 46849 46850 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 46848 def specs @specs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
46855 46856 46857 46858 46859 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 46855 def update!(**args) @base_model = args[:base_model] if args.key?(:base_model) @recommendations = args[:recommendations] if args.key?(:recommendations) @specs = args[:specs] if args.key?(:specs) end |