Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringTabularStats

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

Overview

A collection of data points that describes the time-varying values of a tabular metric.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringTabularStats

Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitoringTabularStats.



18098
18099
18100
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18098

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

Instance Attribute Details

#data_pointsArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringStatsDataPoint>

The data points of this time series. When listing time series, points are returned in reverse time order. Corresponds to the JSON property dataPoints



18085
18086
18087
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18085

def data_points
  @data_points
end

#objective_typeString

One of the supported monitoring objectives: raw-feature-drift prediction- output-drift feature-attribution Corresponds to the JSON property objectiveType

Returns:

  • (String)


18091
18092
18093
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18091

def objective_type
  @objective_type
end

#stats_nameString

The stats name. Corresponds to the JSON property statsName

Returns:

  • (String)


18096
18097
18098
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18096

def stats_name
  @stats_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



18103
18104
18105
18106
18107
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18103

def update!(**args)
  @data_points = args[:data_points] if args.key?(:data_points)
  @objective_type = args[:objective_type] if args.key?(:objective_type)
  @stats_name = args[:stats_name] if args.key?(:stats_name)
end