-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Make components and tasks decorators rather than classes. * Expose CLI. * Bug fix. * Fix another bug. * Make experiment loss optional. * Fix yet another bug. * Bug fix once more. * Another bug fix. * Update defaults. * WIP * Tidy-up. * Export `configure` correctly. * Update examples. * Make linting happy. * Update zookeeper/core/component.py Co-Authored-By: Lukas Geiger <[email protected]> * Remove erroneous prints. * Review suggestion. * Move `colorama` import to top.
- Loading branch information
1 parent
3a75bc6
commit bfa9e03
Showing
21 changed files
with
1,159 additions
and
1,032 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,3 @@ | ||
from zookeeper.component import Component | ||
from zookeeper.dataset import Dataset, TFDSDataset | ||
from zookeeper.experiment import Experiment | ||
from zookeeper.model import Model | ||
from zookeeper.preprocessing import Preprocessing | ||
from zookeeper.task import Task | ||
from zookeeper.core import cli, component, configure, task | ||
|
||
__all__ = [ | ||
"Component", | ||
"Dataset", | ||
"Experiment", | ||
"Model", | ||
"Preprocessing", | ||
"Task", | ||
"TFDSDataset", | ||
] | ||
__all__ = ["cli", "component", "configure", "task"] |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.