Deep-Q-Learning-Paper-To-Code icon indicating copy to clipboard operation
Deep-Q-Learning-Paper-To-Code copied to clipboard

what if i set load_check point to true from argparser

Open ghost opened this issue 3 years ago • 0 comments

If i set the value of load_checkpoint to True from argparser, how would the if statement work in line 95 of main.py? if not args.load_checkpoint: agent.store_transition(observation, action, reward, observation_, int(done)) agent.learn() I think the agent wont be able to store the (state, action, reward, state_, done) in replay buffer and the agent wont learn either, won't it?

ghost avatar Feb 12 '22 18:02 ghost