Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaPredictPredictionTabularRegressionPredictionResult

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

Overview

Prediction output format for Tabular Regression.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1SchemaPredictPredictionTabularRegressionPredictionResult

Returns a new instance of GoogleCloudAiplatformV1SchemaPredictPredictionTabularRegressionPredictionResult.



28074
28075
28076
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28074

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

Instance Attribute Details

#lower_boundFloat

The lower bound of the prediction interval. Corresponds to the JSON property lowerBound

Returns:

  • (Float)


28052
28053
28054
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28052

def lower_bound
  @lower_bound
end

#quantile_predictionsArray<Float>

Quantile predictions, in 1-1 correspondence with quantile_values. Corresponds to the JSON property quantilePredictions

Returns:

  • (Array<Float>)


28057
28058
28059
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28057

def quantile_predictions
  @quantile_predictions
end

#quantile_valuesArray<Float>

Quantile values. Corresponds to the JSON property quantileValues

Returns:

  • (Array<Float>)


28062
28063
28064
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28062

def quantile_values
  @quantile_values
end

#upper_boundFloat

The upper bound of the prediction interval. Corresponds to the JSON property upperBound

Returns:

  • (Float)


28067
28068
28069
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28067

def upper_bound
  @upper_bound
end

#valueFloat

The regression value. Corresponds to the JSON property value

Returns:

  • (Float)


28072
28073
28074
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28072

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



28079
28080
28081
28082
28083
28084
28085
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28079

def update!(**args)
  @lower_bound = args[:lower_bound] if args.key?(:lower_bound)
  @quantile_predictions = args[:quantile_predictions] if args.key?(:quantile_predictions)
  @quantile_values = args[:quantile_values] if args.key?(:quantile_values)
  @upper_bound = args[:upper_bound] if args.key?(:upper_bound)
  @value = args[:value] if args.key?(:value)
end