Class: Google::Apis::LanguageV2::XpsTextSentimentEvaluationMetrics

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

Overview

Model evaluation metrics for text sentiment problems.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsTextSentimentEvaluationMetrics

Returns a new instance of XpsTextSentimentEvaluationMetrics.



4183
4184
4185
# File 'lib/google/apis/language_v2/classes.rb', line 4183

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

Instance Attribute Details

#confusion_matrixGoogle::Apis::LanguageV2::XpsConfusionMatrix

Confusion matrix of the model running the classification. Corresponds to the JSON property confusionMatrix



4142
4143
4144
# File 'lib/google/apis/language_v2/classes.rb', line 4142

def confusion_matrix
  @confusion_matrix
end

#f1_scoreFloat

Output only. The harmonic mean of recall and precision. Corresponds to the JSON property f1Score

Returns:

  • (Float)


4147
4148
4149
# File 'lib/google/apis/language_v2/classes.rb', line 4147

def f1_score
  @f1_score
end

#linear_kappaFloat

Output only. Linear weighted kappa. Only set for the overall model evaluation, not for evaluation of a single annotation spec. Corresponds to the JSON property linearKappa

Returns:

  • (Float)


4153
4154
4155
# File 'lib/google/apis/language_v2/classes.rb', line 4153

def linear_kappa
  @linear_kappa
end

#mean_absolute_errorFloat

Output only. Mean absolute error. Only set for the overall model evaluation, not for evaluation of a single annotation spec. Corresponds to the JSON property meanAbsoluteError

Returns:

  • (Float)


4159
4160
4161
# File 'lib/google/apis/language_v2/classes.rb', line 4159

def mean_absolute_error
  @mean_absolute_error
end

#mean_squared_errorFloat

Output only. Mean squared error. Only set for the overall model evaluation, not for evaluation of a single annotation spec. Corresponds to the JSON property meanSquaredError

Returns:

  • (Float)


4165
4166
4167
# File 'lib/google/apis/language_v2/classes.rb', line 4165

def mean_squared_error
  @mean_squared_error
end

#precisionFloat

Output only. Precision. Corresponds to the JSON property precision

Returns:

  • (Float)


4170
4171
4172
# File 'lib/google/apis/language_v2/classes.rb', line 4170

def precision
  @precision
end

#quadratic_kappaFloat

Output only. Quadratic weighted kappa. Only set for the overall model evaluation, not for evaluation of a single annotation spec. Corresponds to the JSON property quadraticKappa

Returns:

  • (Float)


4176
4177
4178
# File 'lib/google/apis/language_v2/classes.rb', line 4176

def quadratic_kappa
  @quadratic_kappa
end

#recallFloat

Output only. Recall. Corresponds to the JSON property recall

Returns:

  • (Float)


4181
4182
4183
# File 'lib/google/apis/language_v2/classes.rb', line 4181

def recall
  @recall
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
# File 'lib/google/apis/language_v2/classes.rb', line 4188

def update!(**args)
  @confusion_matrix = args[:confusion_matrix] if args.key?(:confusion_matrix)
  @f1_score = args[:f1_score] if args.key?(:f1_score)
  @linear_kappa = args[:linear_kappa] if args.key?(:linear_kappa)
  @mean_absolute_error = args[:mean_absolute_error] if args.key?(:mean_absolute_error)
  @mean_squared_error = args[:mean_squared_error] if args.key?(:mean_squared_error)
  @precision = args[:precision] if args.key?(:precision)
  @quadratic_kappa = args[:quadratic_kappa] if args.key?(:quadratic_kappa)
  @recall = args[:recall] if args.key?(:recall)
end