Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DatasetDistribution
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DatasetDistribution
- 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
Distribution computed over a tuning dataset.
Instance Attribute Summary collapse
-
#buckets ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DatasetDistributionDistributionBucket>
Output only.
-
#max ⇒ Float
Output only.
-
#mean ⇒ Float
Output only.
-
#median ⇒ Float
Output only.
-
#min ⇒ Float
Output only.
-
#p5 ⇒ Float
Output only.
-
#p95 ⇒ Float
Output only.
-
#sum ⇒ Float
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1DatasetDistribution
constructor
A new instance of GoogleCloudAiplatformV1DatasetDistribution.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1DatasetDistribution
Returns a new instance of GoogleCloudAiplatformV1DatasetDistribution.
6539 6540 6541 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6539 def initialize(**args) update!(**args) end |
Instance Attribute Details
#buckets ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DatasetDistributionDistributionBucket>
Output only. Defines the histogram bucket.
Corresponds to the JSON property buckets
6502 6503 6504 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6502 def buckets @buckets end |
#max ⇒ Float
Output only. The maximum of the population values.
Corresponds to the JSON property max
6507 6508 6509 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6507 def max @max end |
#mean ⇒ Float
Output only. The arithmetic mean of the values in the population.
Corresponds to the JSON property mean
6512 6513 6514 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6512 def mean @mean end |
#median ⇒ Float
Output only. The median of the values in the population.
Corresponds to the JSON property median
6517 6518 6519 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6517 def median @median end |
#min ⇒ Float
Output only. The minimum of the population values.
Corresponds to the JSON property min
6522 6523 6524 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6522 def min @min end |
#p5 ⇒ Float
Output only. The 5th percentile of the values in the population.
Corresponds to the JSON property p5
6527 6528 6529 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6527 def p5 @p5 end |
#p95 ⇒ Float
Output only. The 95th percentile of the values in the population.
Corresponds to the JSON property p95
6532 6533 6534 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6532 def p95 @p95 end |
#sum ⇒ Float
Output only. Sum of a given population of values.
Corresponds to the JSON property sum
6537 6538 6539 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6537 def sum @sum end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6544 def update!(**args) @buckets = args[:buckets] if args.key?(:buckets) @max = args[:max] if args.key?(:max) @mean = args[:mean] if args.key?(:mean) @median = args[:median] if args.key?(:median) @min = args[:min] if args.key?(:min) @p5 = args[:p5] if args.key?(:p5) @p95 = args[:p95] if args.key?(:p95) @sum = args[:sum] if args.key?(:sum) end |