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.
44727 44728 44729 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 44727 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
44714 44715 44716 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 44714 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
44720 44721 44722 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 44720 def recommendations @recommendations end |
#specs ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RecommendSpecResponseMachineAndModelContainerSpec>
Output only. The machine and model container specs.
Corresponds to the JSON property specs
44725 44726 44727 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 44725 def specs @specs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
44732 44733 44734 44735 44736 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 44732 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 |