(self, args)
| 12 | class BaseTrainer(object): |
| 13 | """class for BaseTrainer""" |
| 14 | def __init__(self, args): |
| 15 | self.args = args |
| 16 | self.local_group = None |
| 17 | self.logger = None |
| 18 | |
| 19 | def init_ddp_environment(self, gpu, ngpus_per_node): |
| 20 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected