CCA-Zoo

August 22, 2026 · View on GitHub

CCA-Zoo

CCA-Zoo

Multiview Canonical Correlation Analysis in Python

PyPI Python CI codecov DOI License: MIT uv Ruff Types: mypy strict

CCA-Zoo is a Python library of reference implementations of Canonical Correlation Analysis (CCA) algorithms from the literature, from classical CCA (Hotelling 1936) through sparse, kernel, deep, and probabilistic variants — each documented with the paper it comes from. It's also built to be used directly: every model follows the same scikit-learn estimator API (fit, transform, fit_transform, score), is fully typed (PEP 561), and is tested against known closed-form solutions where one exists.


Installation

uv add cca-zoo        # or: pip install cca-zoo

Install optional extras as needed:

uv add "cca-zoo[deep]"          # DCCA variants (requires PyTorch + Lightning)
uv add "cca-zoo[probabilistic]" # Probabilistic CCA (requires NumPyro + JAX)
uv add "cca-zoo[tree]"          # TreeCCA (requires XGBoost, optionally LightGBM)
uv add "cca-zoo[all]"           # Everything above

(substitute pip install for uv add if you're not using uv)


Quick start

from cca_zoo.datasets import JointData
from cca_zoo.linear import CCA

# Generate correlated two-view data from a linear latent variable model
data = JointData(
    n_views=2,
    n_samples=200,
    n_features=[50, 50],
    latent_dimensions=2,
    signal_to_noise=2.0,
    random_state=0,
)
train_views = data.sample()
test_views = data.sample()

# Fit CCA and evaluate
model = CCA(latent_dimensions=2).fit(train_views)
print(model.score(test_views))  # canonical correlations, shape (2,)

# Project views into the shared latent space
z1, z2 = model.transform(test_views)  # each shape (200, 2)

Available methods

cca_zoo.linear

ClassDescriptionViews
CCAStandard CCA (Hotelling 1936)2
rCCARegularised CCA / canonical ridge2
PLSPartial Least Squares2
MCCAMultiset CCA — pairwise sum objective≥2
GCCAGeneralised CCA — shared latent projection≥2
TCCATensor CCA — higher-order cross-moment≥2
PartialCCACCA adjusted for confounding variables (Rao 1969)≥2
GRCCAGroup-regularised CCA (Tuzhilina, Tozzi & Hastie 2021)≥2
CCAR3CCA via reduced-rank regression, row-sparse in high dimensions (Donnat & Tuzhilina 2024)2
CCA_EYStochastic Eckart-Young CCA (unconstrained gradient descent)2
PLS_EYStochastic Eckart-Young PLS (unconstrained gradient descent)2
MCCA_EYMultiview Eckart-Young CCA (unconstrained gradient descent)≥2
SCCA_PMDSparse CCA via PMD (Witten 2009)≥2
SCCA_ADMMSparse CCA via ADMM (Suo 2017)≥2
SCCA_IPLSSparse CCA via iterative PLS (Mai & Zhang 2019)≥2
SCCA_SpanHard-threshold ALS inspired by SpanCCA (Asteris 2016)≥2
ElasticCCAElastic net regularised CCA (Waaijenborg 2008)≥2
ParkhomenkoCCASoft-threshold sparse CCA (Parkhomenko 2009)≥2
SARSparse alternating regression, BIC-selected penalty (Wilms & Croux 2015)≥2
PLS_ALSALS variant of PLS (power iteration)≥2

cca_zoo.nonparametric

ClassDescription
KCCAKernel CCA
KGCCAKernel Generalised CCA
KTCCAKernel Tensor CCA

cca_zoo.tree (requires [tree])

ClassDescriptionViews
TreeCCAGradient-boosted-tree CCA (Eckart-Young objective)≥2

cca_zoo.deep (requires [deep])

Built on PyTorch Lightning — models are trained with a standard lightning.Trainer, not a fit() wrapper. See the deep learning guide.

ClassReference
DCCAAndrew et al. 2013 — pluggable objective
DCCA_EYEigengame / Eckart-Young objective
DCCA_NOIWang et al. 2015 — non-linear orthogonal iterations
DCCA_SDLChang et al. 2018 — stochastic decorrelation loss
DCCAEWang et al. 2015 — with autoencoder reconstruction
DVCCAWang et al. 2016 — variational
DTCCAWong et al. 2021 — deep tensor CCA
DMCCADeep multiset CCA — pairwise-sum objective, ≥2 views
DGCCABenton et al. 2019 — deep generalised CCA, ≥2 views
SplitAESplit autoencoder baseline
BarlowTwinsZbontar et al. 2021
VICRegBardes et al. 2022

cca_zoo.probabilistic

ClassReference
GFAKlami, Virtanen & Kaski 2013 — Group Factor Analysis, per-view ARD; no extra dependencies
ProbabilisticCCA (requires [probabilistic])Bach & Jordan 2005 — MCMC via NumPyro
VariationalBayesCCA (requires [probabilistic])Wang 2007 — variational inference + ARD via NumPyro

cca_zoo.model_selection

ClassDescription
GridSearchCVCross-validated hyperparameter search for multiview models

Documentation

Full documentation, user guides, and API reference at: https://jameschapman19.github.io/cca_zoo/

See CHANGELOG.md for what's changed between releases.


Citing

If CCA-Zoo is useful in your research, please cite:

@article{Chapman2021,
  title   = {{CCA-Zoo}: A collection of Regularized, Deep Learning based, Kernel,
             and Probabilistic {CCA} methods in a scikit-learn style framework},
  author  = {Chapman, James and Wang, Hao-Ting and Wells, Lennie and Wiesner, Johannes},
  journal = {Journal of Open Source Software},
  volume  = {6},
  number  = {68},
  pages   = {3823},
  year    = {2021},
  doi     = {10.21105/joss.03823},
}

Contributing

Contributions are welcome. See docs/contributing.md for development setup, coding standards, and pull request guidelines.