class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1EvaluationMetrics

Attributes

classification_metrics[RW]

Metrics calculated for a classification model. Corresponds to the JSON property `classificationMetrics` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1ClassificationMetrics]

object_detection_metrics[RW]

Metrics calculated for an image object detection (bounding box) model. Corresponds to the JSON property `objectDetectionMetrics` @return [Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1ObjectDetectionMetrics]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 2009
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 2014
def update!(**args)
  @classification_metrics = args[:classification_metrics] if args.key?(:classification_metrics)
  @object_detection_metrics = args[:object_detection_metrics] if args.key?(:object_detection_metrics)
end