| ''' | |
| This style allows the code to be rightfully distributed among modules in the package | |
| and allows for clean import rather than dumping all imports in one file. | |
| ''' | |
| from .Trainer import Trainer | |
| from .Evaluator import Evaluator | |
| ''' | |
| This style allows the code to be rightfully distributed among modules in the package | |
| and allows for clean import rather than dumping all imports in one file. | |
| ''' | |
| from .Trainer import Trainer | |
| from .Evaluator import Evaluator | |