Class: Google::Apis::BigqueryV2::ClusteringMetrics
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::ClusteringMetrics
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigquery_v2/classes.rb,
generated/google/apis/bigquery_v2/representations.rb,
generated/google/apis/bigquery_v2/representations.rb
Overview
Evaluation metrics for clustering models.
Instance Attribute Summary collapse
-
#clusters ⇒ Array<Google::Apis::BigqueryV2::Cluster>
[Beta] 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.
1176 1177 1178 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1176 def initialize(**args) update!(**args) end |
Instance Attribute Details
#clusters ⇒ Array<Google::Apis::BigqueryV2::Cluster>
[Beta] Information for all clusters.
Corresponds to the JSON property clusters
1164 1165 1166 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1164 def clusters @clusters end |
#davies_bouldin_index ⇒ Float
Davies-Bouldin index.
Corresponds to the JSON property daviesBouldinIndex
1169 1170 1171 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1169 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
1174 1175 1176 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1174 def mean_squared_distance @mean_squared_distance end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1181 1182 1183 1184 1185 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1181 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 |