Class: Google::Apis::LanguageV1::XpsRegressionMetricsEntry

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

Overview

A pair of actual & observed values for the model being evaluated.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsRegressionMetricsEntry

Returns a new instance of XpsRegressionMetricsEntry.



3216
3217
3218
# File 'lib/google/apis/language_v1/classes.rb', line 3216

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

Instance Attribute Details

#predicted_valueFloat

The observed value for a row in the dataset. Corresponds to the JSON property predictedValue

Returns:

  • (Float)


3209
3210
3211
# File 'lib/google/apis/language_v1/classes.rb', line 3209

def predicted_value
  @predicted_value
end

#true_valueFloat

The actual target value for a row in the dataset. Corresponds to the JSON property trueValue

Returns:

  • (Float)


3214
3215
3216
# File 'lib/google/apis/language_v1/classes.rb', line 3214

def true_value
  @true_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3221
3222
3223
3224
# File 'lib/google/apis/language_v1/classes.rb', line 3221

def update!(**args)
  @predicted_value = args[:predicted_value] if args.key?(:predicted_value)
  @true_value = args[:true_value] if args.key?(:true_value)
end