Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SchemaPredictPredictionTftFeatureImportance

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SchemaPredictPredictionTftFeatureImportance

Returns a new instance of GoogleCloudAiplatformV1beta1SchemaPredictPredictionTftFeatureImportance.



25249
25250
25251
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25249

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

Instance Attribute Details

#attribute_columnsArray<String>

Corresponds to the JSON property attributeColumns

Returns:

  • (Array<String>)


25221
25222
25223
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25221

def attribute_columns
  @attribute_columns
end

#attribute_weightsArray<Float>

Corresponds to the JSON property attributeWeights

Returns:

  • (Array<Float>)


25226
25227
25228
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25226

def attribute_weights
  @attribute_weights
end

#context_columnsArray<String>

Corresponds to the JSON property contextColumns

Returns:

  • (Array<String>)


25231
25232
25233
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25231

def context_columns
  @context_columns
end

#context_weightsArray<Float>

TFT feature importance values. Each pair for context/horizon/attribute should have the same shape since the weight corresponds to the column names. Corresponds to the JSON property contextWeights

Returns:

  • (Array<Float>)


25237
25238
25239
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25237

def context_weights
  @context_weights
end

#horizon_columnsArray<String>

Corresponds to the JSON property horizonColumns

Returns:

  • (Array<String>)


25242
25243
25244
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25242

def horizon_columns
  @horizon_columns
end

#horizon_weightsArray<Float>

Corresponds to the JSON property horizonWeights

Returns:

  • (Array<Float>)


25247
25248
25249
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25247

def horizon_weights
  @horizon_weights
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



25254
25255
25256
25257
25258
25259
25260
25261
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25254

def update!(**args)
  @attribute_columns = args[:attribute_columns] if args.key?(:attribute_columns)
  @attribute_weights = args[:attribute_weights] if args.key?(:attribute_weights)
  @context_columns = args[:context_columns] if args.key?(:context_columns)
  @context_weights = args[:context_weights] if args.key?(:context_weights)
  @horizon_columns = args[:horizon_columns] if args.key?(:horizon_columns)
  @horizon_weights = args[:horizon_weights] if args.key?(:horizon_weights)
end