HI , here below the code is like this in async_learner.py, and which function runs first? The start() does not assign a function....
def run_training(self, session):
self._session = session
self.start()
and the run_training is called in _async_algo.py below
for l in learners:
l.run_training(session)
for l in learners:
l.join()
HI , here below the code is like this in async_learner.py, and which function runs first? The start() does not assign a function.... def run_training(self, session): self._session = session self.start()
and the run_training is called in _async_algo.py below for l in learners: l.run_training(session) for l in learners: l.join()