Connect 4 with neural network: evaluation of draft + further steps

Posted by user89818 on Stack Overflow See other posts from Stack Overflow or by user89818
Published on 2010-12-26T16:23:11Z Indexed on 2010/12/30 21:54 UTC
Read the original article Hit count: 260

I would like to build a Connect 4 engine which works using an artificial neural network - just because I'm fascinated by ANNs.

I'be created the following draft of the ANN structure. Would it work? And are these connections right (even the cross ones)?

alt text

Could you help me to draft up an UML class diagram for this ANN?

I want to give the board representation to the ANN as its input. And the output should be the move to chose.

The learning should later be done using backpropagation and the sigmoid function should be applied. The engine will play against human players. And depending on the result of the game, the weights should be adjusted then.

© Stack Overflow or respective owner

Related posts about game-development

Related posts about artificial-intelligence