class Google::Apis::PredictionV1_6::Analyze::DataDescription

Description of the data the model was trained on.

Attributes

features[RW]

Description of the input features in the data set. Corresponds to the JSON property `features` @return [Array<Google::Apis::PredictionV1_6::Analyze::DataDescription::Feature>]

output_feature[RW]

Description of the output value or label. Corresponds to the JSON property `outputFeature` @return [Google::Apis::PredictionV1_6::Analyze::DataDescription::OutputFeature]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/prediction_v1_6/classes.rb, line 87
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 92
def update!(**args)
  @features = args[:features] if args.key?(:features)
  @output_feature = args[:output_feature] if args.key?(:output_feature)
end