gcp_bigquery_client/model/
dimensionality_reduction_metrics.rs

1
2
3
4
5
6
7
8
//! Model evaluation metrics for dimensionality reduction models.

#[derive(Debug, Default, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DimensionalityReductionMetrics {
    /// Total percentage of variance explained by the selected principal components.
    pub total_explained_variance_ratio: Option<f64>,
}