-
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.
Overhaul `Trainer`s. Removed `Trainer` class and all subclasses, we now only have `TrainerConfig` and its subclasses. *breaking api change* Moved much of the functionality (parallelization, snapshot saving, batching etc.) from the `TrainerConfig` to the `RunConfig`. This includes arguments such as `num_workers`, `snapshot_interval`, `batch_size`. The only thing that must be updated is moving these arguments from the `TrainerConfig` to the `RunConfig`.
- Loading branch information
Showing
61 changed files
with
3,163 additions
and
4,997 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,7 +1,7 @@ | ||
from .architecture import Architecture # noqa | ||
from .architecture_config import ArchitectureConfig # noqa | ||
from .architecture import ArchitectureConfig # noqa | ||
from .dummy_architecture_config import ( | ||
DummyArchitectureConfig, | ||
DummyArchitecture, | ||
) # noqa | ||
from .cnnectome_unet_config import CNNectomeUNetConfig, CNNectomeUNet # noqa | ||
from .cnnectome_unet import CNNectomeUNetConfig # noqa | ||
from .wrapped_architecture import WrappedArchitectureConfig # noqa | ||
from .model_zoo_config import ModelZooConfig # noqa |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.