class Google::Apis::MlV1::GoogleCloudMlV1BuiltInAlgorithmOutput

Represents output related to a built-in algorithm Job.

Attributes

framework[RW]

Framework on which the built-in algorithm was trained. Corresponds to the JSON property `framework` @return [String]

model_path[RW]

The Cloud Storage path to the `model/` directory where the training job saves the trained model. Only set for successful jobs that don't use hyperparameter tuning. Corresponds to the JSON property `modelPath` @return [String]

python_version[RW]

Python version on which the built-in algorithm was trained. Corresponds to the JSON property `pythonVersion` @return [String]

runtime_version[RW]

AI Platform runtime version on which the built-in algorithm was trained. Corresponds to the JSON property `runtimeVersion` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/ml_v1/classes.rb, line 623
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/ml_v1/classes.rb, line 628
def update!(**args)
  @framework = args[:framework] if args.key?(:framework)
  @model_path = args[:model_path] if args.key?(:model_path)
  @python_version = args[:python_version] if args.key?(:python_version)
  @runtime_version = args[:runtime_version] if args.key?(:runtime_version)
end