Class: Google::Apis::PredictionV1_2::Output::OutputMulti

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

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) ⇒ OutputMulti

Returns a new instance of OutputMulti



125
126
127
# File 'generated/google/apis/prediction_v1_2/classes.rb', line 125

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

Instance Attribute Details

#labelString

Corresponds to the JSON property label

Returns:

  • (String)


118
119
120
# File 'generated/google/apis/prediction_v1_2/classes.rb', line 118

def label
  @label
end

#scoreFloat

Corresponds to the JSON property score

Returns:

  • (Float)


123
124
125
# File 'generated/google/apis/prediction_v1_2/classes.rb', line 123

def score
  @score
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



130
131
132
133
# File 'generated/google/apis/prediction_v1_2/classes.rb', line 130

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