class Google::Apis::MlV1::GoogleCloudMlV1PredictionOutput

Represents results of a prediction job.

Attributes

error_count[RW]

The number of data instances which resulted in errors. Corresponds to the JSON property `errorCount` @return [Fixnum]

node_hours[RW]

Node hours used by the batch prediction job. Corresponds to the JSON property `nodeHours` @return [Float]

output_path[RW]

The output Google Cloud Storage location provided at the job creation time. Corresponds to the JSON property `outputPath` @return [String]

prediction_count[RW]

The number of generated predictions. Corresponds to the JSON property `predictionCount` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/ml_v1/classes.rb, line 2126
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 2131
def update!(**args)
  @error_count = args[:error_count] if args.key?(:error_count)
  @node_hours = args[:node_hours] if args.key?(:node_hours)
  @output_path = args[:output_path] if args.key?(:output_path)
  @prediction_count = args[:prediction_count] if args.key?(:prediction_count)
end