AlphaZero_Gomoku icon indicating copy to clipboard operation
AlphaZero_Gomoku copied to clipboard

为什么要在'play_data'中反转输入特征?

Open Michi-123 opened this issue 2 years ago • 0 comments

为什么要在'play_data'中反转 input features?

play_data 1:

[[0,0,0], [0,1,0], [0,0,0]] # white
[[0,0,0], [0,0,0], [0,0,0]] # black
[[0,0,0], [0,1,0], [0,0,0]] # action
[[0,0,0], [0,0,0], [0,0,0]] # player

play_data 2:

[[1,0,0], [0,0,0], [0,0,0]] # black
[[0,0,0], [0,1,0], [0,0,0]] # white
[[1,0,0], [0,0,0], [0,0,0]] # action
[[1,1,1], [1,1,1], [1,1,1]] # player

Michi-123 avatar Mar 25 '22 13:03 Michi-123