-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from perib/dev
Dev
- Loading branch information
Showing
59 changed files
with
3,832 additions
and
1,777 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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,17 +1,18 @@ | ||
|
||
#TODO: are all the imports in the init files done correctly? | ||
#TODO clean up import organization | ||
from ._version import __version__ | ||
from .graphsklearn import * | ||
from .individual import * | ||
from .logbook import * | ||
from .population import * | ||
from .base_evolver import * | ||
from .objectives import * | ||
from .evolutionary_algorithms import * | ||
from .tpot_estimator import * | ||
from .builtin_modules import * | ||
from .config import * | ||
from .representations import * | ||
from .parent_selectors import * | ||
from .utils import * | ||
|
||
from .graphsklearn import GraphPipeline | ||
from .population import Population | ||
|
||
from . import builtin_modules | ||
from . import utils | ||
from . import config | ||
from . import individual_representations | ||
from . import evolvers | ||
from . import objectives | ||
from . import selectors | ||
from . import tpot_estimator | ||
|
||
|
||
from .tpot_estimator import TPOTClassifier, TPOTRegressor, TPOTEstimator, TPOTEstimatorSteadyState |
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.