-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Eigengame updates and a suprising (to me) mistake in the API that for…
…ces users to use in the way I expected
- Loading branch information
1 parent
a55ed2c
commit 98c820c
Showing
56 changed files
with
1,305 additions
and
976 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
from .data import * | ||
from .model_selection import * | ||
from .models import * | ||
from .plotting import * | ||
__all__ = [ | ||
"data", | ||
"model_selection", | ||
"models", | ||
"plotting",] | ||
|
||
#if can import deepmodels add to all | ||
try: | ||
from cca_zoo.deepmodels import * | ||
import cca_zoo.deepmodels | ||
__all__.append("deepmodels") | ||
except ModuleNotFoundError: | ||
pass | ||
try: | ||
from cca_zoo.probabilisticmodels import * | ||
import cca_zoo.probabilisticmodels | ||
__all__.append("probabilisticmodels") | ||
except ModuleNotFoundError: | ||
pass |
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,13 +1,6 @@ | ||
from . import simulated | ||
|
||
try: | ||
from . import deep | ||
import cca_zoo.data.deep | ||
|
||
__all__ = [ | ||
"simulated", | ||
"deep" | ||
] | ||
__all__ = ["simulated", "deep"] | ||
except ModuleNotFoundError: | ||
__all__ = [ | ||
"simulated" | ||
] | ||
__all__ = ["simulated"] |
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
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
Oops, something went wrong.