Class: Google::Apis::BigqueryV2::ClusteringMetrics
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::ClusteringMetrics
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb
Overview
Evaluation metrics for clustering models.
Instance Attribute Summary collapse
-
#clusters ⇒ Array<Google::Apis::BigqueryV2::Cluster>
Information for all clusters.
-
#davies_bouldin_index ⇒ Float
Davies-Bouldin index.
-
#mean_squared_distance ⇒ Float
Mean of squared distances between each sample to its cluster centroid.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ClusteringMetrics
constructor
A new instance of ClusteringMetrics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ClusteringMetrics
Returns a new instance of ClusteringMetrics.
1449 1450 1451 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1449 def initialize(**args) update!(**args) end |
Instance Attribute Details
#clusters ⇒ Array<Google::Apis::BigqueryV2::Cluster>
Information for all clusters.
Corresponds to the JSON property clusters
1437 1438 1439 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1437 def clusters @clusters end |
#davies_bouldin_index ⇒ Float
Davies-Bouldin index.
Corresponds to the JSON property daviesBouldinIndex
1442 1443 1444 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1442 def davies_bouldin_index @davies_bouldin_index end |
#mean_squared_distance ⇒ Float
Mean of squared distances between each sample to its cluster centroid.
Corresponds to the JSON property meanSquaredDistance
1447 1448 1449 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1447 def mean_squared_distance @mean_squared_distance end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1454 1455 1456 1457 1458 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1454 def update!(**args) @clusters = args[:clusters] if args.key?(:clusters) @davies_bouldin_index = args[:davies_bouldin_index] if args.key?(:davies_bouldin_index) @mean_squared_distance = args[:mean_squared_distance] if args.key?(:mean_squared_distance) end |