forked from scikit-learn/scikit-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MNT Make files private in cross_decomposition (scikit-learn#15285)
- Loading branch information
1 parent
6d38b5f
commit 9e18ddd
Showing
6 changed files
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
from .pls_ import * # noqa | ||
from .cca_ import * # noqa | ||
from ._pls_ import PLSCanonical, PLSRegression, PLSSVD | ||
from ._cca_ import CCA | ||
|
||
__all__ = ['PLSCanonical', 'PLSRegression', 'PLSSVD', 'CCA'] |
2 changes: 1 addition & 1 deletion
2
sklearn/cross_decomposition/cca_.py → sklearn/cross_decomposition/_cca_.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .pls_ import _PLS | ||
from ._pls_ import _PLS | ||
from ..base import _UnstableArchMixin | ||
|
||
__all__ = ['CCA'] | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters