Class: Google::Apis::LanguageV1beta2::ClassificationCategory

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

Overview

Represents a category returned from the text classifier.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ClassificationCategory

Returns a new instance of ClassificationCategory.



420
421
422
# File 'lib/google/apis/language_v1beta2/classes.rb', line 420

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

Instance Attribute Details

#confidenceFloat

The classifier's confidence of the category. Number represents how certain the classifier is that this category represents the given text. Corresponds to the JSON property confidence

Returns:

  • (Float)


413
414
415
# File 'lib/google/apis/language_v1beta2/classes.rb', line 413

def confidence
  @confidence
end

#nameString

The name of the category representing the document. Corresponds to the JSON property name

Returns:

  • (String)


418
419
420
# File 'lib/google/apis/language_v1beta2/classes.rb', line 418

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



425
426
427
428
# File 'lib/google/apis/language_v1beta2/classes.rb', line 425

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