Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringStatsDataPoint

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

Represents a single statistics data point.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ModelMonitoringStatsDataPoint

Returns a new instance of GoogleCloudAiplatformV1beta1ModelMonitoringStatsDataPoint.



20459
20460
20461
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20459

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

Instance Attribute Details

#algorithmString

Algorithm used to calculated the metrics, eg: jensen_shannon_divergence, l_infinity. Corresponds to the JSON property algorithm

Returns:

  • (String)


20421
20422
20423
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20421

def algorithm
  @algorithm
end

#baseline_statsGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringStatsDataPointTypedValue

Typed value of the statistics. Corresponds to the JSON property baselineStats



20426
20427
20428
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20426

def baseline_stats
  @baseline_stats
end

#create_timeString

Statistics create time. Corresponds to the JSON property createTime

Returns:

  • (String)


20431
20432
20433
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20431

def create_time
  @create_time
end

#current_statsGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringStatsDataPointTypedValue

Typed value of the statistics. Corresponds to the JSON property currentStats



20436
20437
20438
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20436

def current_stats
  @current_stats
end

#has_anomalyBoolean Also known as: has_anomaly?

Indicate if the statistics has anomaly. Corresponds to the JSON property hasAnomaly

Returns:

  • (Boolean)


20441
20442
20443
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20441

def has_anomaly
  @has_anomaly
end

#model_monitoring_jobString

Model monitoring job resource name. Corresponds to the JSON property modelMonitoringJob

Returns:

  • (String)


20447
20448
20449
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20447

def model_monitoring_job
  @model_monitoring_job
end

#scheduleString

Schedule resource name. Corresponds to the JSON property schedule

Returns:

  • (String)


20452
20453
20454
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20452

def schedule
  @schedule
end

#threshold_valueFloat

Threshold value. Corresponds to the JSON property thresholdValue

Returns:

  • (Float)


20457
20458
20459
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20457

def threshold_value
  @threshold_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



20464
20465
20466
20467
20468
20469
20470
20471
20472
20473
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20464

def update!(**args)
  @algorithm = args[:algorithm] if args.key?(:algorithm)
  @baseline_stats = args[:baseline_stats] if args.key?(:baseline_stats)
  @create_time = args[:create_time] if args.key?(:create_time)
  @current_stats = args[:current_stats] if args.key?(:current_stats)
  @has_anomaly = args[:has_anomaly] if args.key?(:has_anomaly)
  @model_monitoring_job = args[:model_monitoring_job] if args.key?(:model_monitoring_job)
  @schedule = args[:schedule] if args.key?(:schedule)
  @threshold_value = args[:threshold_value] if args.key?(:threshold_value)
end