class Google::Apis::PredictionV1_6::Update
Attributes
csv_instance[RW]
The input features for this instance. Corresponds to the JSON property `csvInstance` @return [Array<Object>]
output[RW]
The generic output value - could be regression or class label. Corresponds to the JSON property `output` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/prediction_v1_6/classes.rb, line 739 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/prediction_v1_6/classes.rb, line 744 def update!(**args) @csv_instance = args[:csv_instance] if args.key?(:csv_instance) @output = args[:output] if args.key?(:output) end