Class: Google::Apis::PredictionV1_5::Output::OutputMulti
- Inherits:
-
Object
- Object
- Google::Apis::PredictionV1_5::Output::OutputMulti
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/prediction_v1_5/classes.rb,
generated/google/apis/prediction_v1_5/representations.rb,
generated/google/apis/prediction_v1_5/representations.rb
Instance Attribute Summary collapse
-
#label ⇒ String
The class label.
-
#score ⇒ Float
The probability of the class label.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OutputMulti
constructor
A new instance of OutputMulti.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OutputMulti
Returns a new instance of OutputMulti
490 491 492 |
# File 'generated/google/apis/prediction_v1_5/classes.rb', line 490 def initialize(**args) update!(**args) end |
Instance Attribute Details
#label ⇒ String
The class label.
Corresponds to the JSON property label
483 484 485 |
# File 'generated/google/apis/prediction_v1_5/classes.rb', line 483 def label @label end |
#score ⇒ Float
The probability of the class label.
Corresponds to the JSON property score
488 489 490 |
# File 'generated/google/apis/prediction_v1_5/classes.rb', line 488 def score @score end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
495 496 497 498 |
# File 'generated/google/apis/prediction_v1_5/classes.rb', line 495 def update!(**args) @label = args[:label] if args.key?(:label) @score = args[:score] if args.key?(:score) end |