gcp_bigquery_client/model/
dimensionality_reduction_metrics.rs

1//! Model evaluation metrics for dimensionality reduction models.
2
3#[derive(Debug, Default, Clone, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct DimensionalityReductionMetrics {
6    /// Total percentage of variance explained by the selected principal components.
7    pub total_explained_variance_ratio: Option<f64>,
8}