An open API service indexing awesome lists of open source software.

https://github.com/fra98/connect-4

Simple Connect-4 AI player based on MCTS and MiniMax algorithms
https://github.com/fra98/connect-4

mcts-algorithm minimax-algorithm python

Last synced: 6 months ago
JSON representation

Simple Connect-4 AI player based on MCTS and MiniMax algorithms

Awesome Lists containing this project

README

          

# Connect-4
Simple AI that plays Connect-4.

## Techniques used:
#### Minimax
- Static open plays for first/second/third move
- MiniMax with Alpha-Beta Pruning
- Optimization on exploration order to obtain more pruning

#### MCTS
- Static open plays for first/second/third move
- Montecarlo Tree Research

## Game modes:
- Human vs AI
- AI vs AI