Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringTabularStats
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringTabularStats
- 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
-
#data_points ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringStatsDataPoint>
The data points of this time series.
-
#objective_type ⇒ String
One of the supported monitoring objectives:
raw-feature-driftprediction- output-driftfeature-attributionCorresponds to the JSON propertyobjectiveType. -
#stats_name ⇒ String
The stats name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringTabularStats
constructor
A new instance of GoogleCloudAiplatformV1beta1ModelMonitoringTabularStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringTabularStats
Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitoringTabularStats.
18086 18087 18088 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18086 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_points ⇒ Array<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
18073 18074 18075 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18073 def data_points @data_points end |
#objective_type ⇒ String
One of the supported monitoring objectives: raw-feature-drift prediction-
output-drift feature-attribution
Corresponds to the JSON property objectiveType
18079 18080 18081 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18079 def objective_type @objective_type end |
#stats_name ⇒ String
The stats name.
Corresponds to the JSON property statsName
18084 18085 18086 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18084 def stats_name @stats_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18091 18092 18093 18094 18095 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 18091 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 |