-
Notifications
You must be signed in to change notification settings - Fork 57
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 #117 from chainer/refactor-files
Refactor directories and files
- Loading branch information
Showing
8 changed files
with
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
import pkg_resources | ||
|
||
from chainermn import communicators # NOQA | ||
from chainermn import datasets # NOQA | ||
from chainermn import extensions # NOQA | ||
from chainermn import links # NOQA | ||
from chainermn import optimizers # NOQA | ||
|
||
from chainermn.communicators import create_communicator # NOQA | ||
from chainermn.dataset import scatter_dataset # NOQA | ||
from chainermn.link import MultiNodeChainList # NOQA | ||
from chainermn.multi_node_evaluator import create_multi_node_evaluator # NOQA | ||
from chainermn.multi_node_optimizer import create_multi_node_optimizer # NOQA | ||
from chainermn.datasets import scatter_dataset # NOQA | ||
from chainermn.extensions import create_multi_node_evaluator # NOQA | ||
from chainermn.links import MultiNodeChainList # NOQA | ||
from chainermn.optimizers import create_multi_node_optimizer # NOQA | ||
|
||
|
||
__version__ = pkg_resources.get_distribution('chainermn').version |
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 +1,2 @@ | ||
from chainermn.datasets.empty_dataset import create_empty_dataset # NOQA | ||
from chainermn.datasets.scatter_dataset import scatter_dataset # NOQA |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from chainermn.extensions.multi_node_evaluator import create_multi_node_evaluator # NOQA |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
from chainermn.links.batch_normalization import MultiNodeBatchNormalization # NOQA | ||
from chainermn.links.multi_node_chain_list import MultiNodeChainList # NOQA |
File renamed without changes.
File renamed without changes.