pytorch-a3c icon indicating copy to clipboard operation
pytorch-a3c copied to clipboard

The while True loop of function train?

Open machanic opened this issue 4 years ago • 0 comments

The while True: of https://github.com/ikostrikov/pytorch-a3c/blob/master/train.py#L35 cannot be break, because the only break statement is in https://github.com/ikostrikov/pytorch-a3c/blob/master/train.py#L79 which is used to break for-loop: https://github.com/ikostrikov/pytorch-a3c/blob/master/train.py#L50 How to terminate that forever while-loop in your code?

machanic avatar Aug 19 '19 14:08 machanic