Class: Google::Apis::MlV1::GoogleCloudMlV1PredictionOutput

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

Overview

Represents results of a prediction job.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudMlV1PredictionOutput

Returns a new instance of GoogleCloudMlV1PredictionOutput.



2116
2117
2118
# File 'generated/google/apis/ml_v1/classes.rb', line 2116

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

Instance Attribute Details

#error_countFixnum

The number of data instances which resulted in errors. Corresponds to the JSON property errorCount

Returns:

  • (Fixnum)


2099
2100
2101
# File 'generated/google/apis/ml_v1/classes.rb', line 2099

def error_count
  @error_count
end

#node_hoursFloat

Node hours used by the batch prediction job. Corresponds to the JSON property nodeHours

Returns:

  • (Float)


2104
2105
2106
# File 'generated/google/apis/ml_v1/classes.rb', line 2104

def node_hours
  @node_hours
end

#output_pathString

The output Google Cloud Storage location provided at the job creation time. Corresponds to the JSON property outputPath

Returns:

  • (String)


2109
2110
2111
# File 'generated/google/apis/ml_v1/classes.rb', line 2109

def output_path
  @output_path
end

#prediction_countFixnum

The number of generated predictions. Corresponds to the JSON property predictionCount

Returns:

  • (Fixnum)


2114
2115
2116
# File 'generated/google/apis/ml_v1/classes.rb', line 2114

def prediction_count
  @prediction_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2121
2122
2123
2124
2125
2126
# File 'generated/google/apis/ml_v1/classes.rb', line 2121

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