Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NasTrialDetail

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb

Overview

Represents a NasTrial details along with its parameters. If there is a corresponding train NasTrial, the train NasTrial is also returned.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1NasTrialDetail

Returns a new instance of GoogleCloudAiplatformV1NasTrialDetail.



23934
23935
23936
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23934

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

Output only. Resource name of the NasTrialDetail. Corresponds to the JSON property name

Returns:

  • (String)


23917
23918
23919
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23917

def name
  @name
end

#parametersString

The parameters for the NasJob NasTrial. Corresponds to the JSON property parameters

Returns:

  • (String)


23922
23923
23924
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23922

def parameters
  @parameters
end

#search_trialGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1NasTrial

Represents a uCAIP NasJob trial. Corresponds to the JSON property searchTrial



23927
23928
23929
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23927

def search_trial
  @search_trial
end

#train_trialGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1NasTrial

Represents a uCAIP NasJob trial. Corresponds to the JSON property trainTrial



23932
23933
23934
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23932

def train_trial
  @train_trial
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



23939
23940
23941
23942
23943
23944
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 23939

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @parameters = args[:parameters] if args.key?(:parameters)
  @search_trial = args[:search_trial] if args.key?(:search_trial)
  @train_trial = args[:train_trial] if args.key?(:train_trial)
end