Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaQualityMetricsTopkMetrics

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

Overview

Stores the metric values at specific top-k levels.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaQualityMetricsTopkMetrics

Returns a new instance of GoogleCloudDiscoveryengineV1betaQualityMetricsTopkMetrics.



15207
15208
15209
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 15207

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

Instance Attribute Details

#top1Float

The top-1 value. Corresponds to the JSON property top1

Returns:

  • (Float)


15190
15191
15192
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 15190

def top1
  @top1
end

#top10Float

The top-10 value. Corresponds to the JSON property top10

Returns:

  • (Float)


15195
15196
15197
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 15195

def top10
  @top10
end

#top3Float

The top-3 value. Corresponds to the JSON property top3

Returns:

  • (Float)


15200
15201
15202
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 15200

def top3
  @top3
end

#top5Float

The top-5 value. Corresponds to the JSON property top5

Returns:

  • (Float)


15205
15206
15207
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 15205

def top5
  @top5
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



15212
15213
15214
15215
15216
15217
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 15212

def update!(**args)
  @top1 = args[:top1] if args.key?(:top1)
  @top10 = args[:top10] if args.key?(:top10)
  @top3 = args[:top3] if args.key?(:top3)
  @top5 = args[:top5] if args.key?(:top5)
end