Skip to content

Nilusche/Chess-Engine-AI-in-Pygame

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AI in Python's Pygame

Learning concepts of AI in Pygame.

Chess engine using different types of agents.

Currently this agent can play using the minimax, negamax, monte carlo tree search or random action selection. Im looking into implementing reinforcement learning just like in alphazero or using basic deep learning. chess

8 Queens Problem using Genetic Algorithm and Backtracking

Gen_algorithm (1) (1)

A*/BFS/DFS Pathfinding Problems

astar

Tic Tac Toe Minimax Algorithm

tictactoe