How to build a game on a neural network in Python?

I am new to the neural network. I would like to learn the basics of neural networks by teaching computers how to play checkers. In fact, the games I want to learn are Domineering and Hex .

These games are pretty easy to keep, and the rules are much simpler than chess, but there aren't many people who play. If I can get this idea off the ground, it would be great to experiment with Combinatorial Game Theory .

PyBrain seems a clear winner for Python neural networks, but who can help me create a neural network for my game task? In 2001, the google search appeared Blondie24 , but it uses some genetic algorithms - I do not want to complicate the situation.

+2
source share
1 answer

As soon as you replace โ€œneural networksโ€ with machine learning (or even artificial intelligence, rather, imho), as the comments rightly state, I think you better start with Alpha Beta Trimming , a minimal algorithm, and Industry and related ideas.

Primarily:

  • (, , , ..).
  • , , , ( ), , , .
  • , . Branch and bound , , , .

, , , - , , , : -)

0

All Articles