Class: Google::Cloud::AIPlatform::V1::NasJobOutput
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::NasJobOutput
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/nas_job.rb
Overview
Represents a uCAIP NasJob output.
Defined Under Namespace
Classes: MultiTrialJobOutput
Instance Attribute Summary collapse
-
#multi_trial_job_output ⇒ ::Google::Cloud::AIPlatform::V1::NasJobOutput::MultiTrialJobOutput
readonly
Output only.
Instance Attribute Details
#multi_trial_job_output ⇒ ::Google::Cloud::AIPlatform::V1::NasJobOutput::MultiTrialJobOutput (readonly)
Returns Output only. The output of this multi-trial Neural Architecture Search (NAS) job.
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 |
# File 'proto_docs/google/cloud/aiplatform/v1/nas_job.rb', line 248 class NasJobOutput include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The output of a multi-trial Neural Architecture Search (NAS) jobs. # @!attribute [r] search_trials # @return [::Array<::Google::Cloud::AIPlatform::V1::NasTrial>] # Output only. List of NasTrials that were started as part of search stage. # @!attribute [r] train_trials # @return [::Array<::Google::Cloud::AIPlatform::V1::NasTrial>] # Output only. List of NasTrials that were started as part of train stage. class MultiTrialJobOutput include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |