Feedback Controllability Components Analysis
Assusming you are in the FCCA directory:
$ conda env update --file environment.yml
$ pip install -e .
or:
$ pip install -e . -r requirements.txt
There are 2 main hyperparameters associated with the method. The first is
from FCCA.fcca import LQGComponentsAnalysis as LQGCA
lqgca_model = LQGCA(T=4, d=2, n_init=10).fit(X)
# Projection matrix corresponding to the optimized projection
lqgca_model.coef_
Here