class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1ClassificationMetadata

Metadata for classification annotations.

Attributes

is_multi_label[RW]

Whether the classification task is multi-label or not. Corresponds to the JSON property `isMultiLabel` @return [Boolean]

is_multi_label?[RW]

Whether the classification task is multi-label or not. Corresponds to the JSON property `isMultiLabel` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 1279
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 1284
def update!(**args)
  @is_multi_label = args[:is_multi_label] if args.key?(:is_multi_label)
end