Skip to content

Commit

Permalink
Permutation testing and learning curve
Browse files Browse the repository at this point in the history
  • Loading branch information
jameschapman19 committed Jun 15, 2022
1 parent 1199721 commit fd6a588
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions cca_zoo/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@
from ._rcca import rCCA, CCA, PLS
from ._tcca import TCCA, KTCCA

try:
from ._stochastic import StochasticPowerPLS, IncrementalPLS
except:
pass

__all__ = [
"GCCA",
"KGCCA",
Expand All @@ -40,8 +35,14 @@
"PLS",
"TCCA",
"KTCCA",
"StochasticPowerPLS",
"IncrementalPLS",
]

try:
from ._stochastic import StochasticPowerPLS, IncrementalPLS

__all__.extend("StochasticPowerPLS",
"IncrementalPLS")
except:
pass

classes = __all__

0 comments on commit fd6a588

Please sign in to comment.