Class: Google::Apis::BigqueryV2::MultiClassClassificationMetrics

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

Overview

Evaluation metrics for multi-class classification/classifier models.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ MultiClassClassificationMetrics

Returns a new instance of MultiClassClassificationMetrics



3525
3526
3527
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3525

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

Instance Attribute Details

#aggregate_classification_metricsGoogle::Apis::BigqueryV2::AggregateClassificationMetrics

Aggregate metrics for classification/classifier models. For multi-class models, the metrics are either macro-averaged or micro-averaged. When macro-averaged, the metrics are calculated for each label and then an unweighted average is taken of those values. When micro-averaged, the metric is calculated globally by counting the total number of correctly predicted rows. Corresponds to the JSON property aggregateClassificationMetrics



3518
3519
3520
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3518

def aggregate_classification_metrics
  @aggregate_classification_metrics
end

#confusion_matrix_listArray<Google::Apis::BigqueryV2::ConfusionMatrix>

Confusion matrix at different thresholds. Corresponds to the JSON property confusionMatrixList



3523
3524
3525
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3523

def confusion_matrix_list
  @confusion_matrix_list
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3530
3531
3532
3533
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3530

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