How to program a neural network for chess?

后端 未结 9 562
失恋的感觉
失恋的感觉 2021-01-30 11:18

I want to program a chess engine which learns to make good moves and win against other players. I\'ve already coded a representation of the chess board and a function which outp

9条回答
  •  南方客
    南方客 (楼主)
    2021-01-30 11:50

    Came here to say what Silas said. Using a minimax algorithm, you can expect to be able to look ahead N moves. Using Alpha-beta pruning, you can expand that to theoretically 2*N moves, but more realistically 3*N/4 moves. Neural networks are really appropriate here.

    Perhaps though a genetic algorithm could be used.

提交回复
热议问题