Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 931 Bytes

README.md

File metadata and controls

23 lines (12 loc) · 931 Bytes

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