Tetris-deep-Q-learning-pytorch
Tetris-deep-Q-learning-pytorch copied to clipboard
What does env.get_next_states() return?
trafficstars
What does env.get_next_states() return?
'next_state' shows tensor([ 0., 75., 5., 107.], device='cuda:0')
'next_actions' shows ((0, 0), (1, 0), ... , (8, 3))
It returns the outcomes after placing the current piece in all possible locations
Thank you so much.