-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathREADME.md~
16 lines (11 loc) · 1.14 KB
/
README.md~
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Tic-tac-toe
=========
I have recreated the classic game of [Tic-tac-toe](http://en.wikipedia.org/wiki/Tic-tac-toe). This is a game between human vs computer. The objective of the program is to implement the artificial intelligence (AI) of the computer player using an algorithm based on Reinforcement Learning.
The concept of this game is based from "Reinforcement Learning, An Introduction" by Richard S. Sutton and Andrew G. Barto.
System Requirements: Python 2.7 or higher version
| Filename | Description |
|-----------------|--------------------------------------------------------------------------------------------|
| tictactoeRL.py | user vs computer game |
| tictactoeRL2.py | computer vs computer (This is how the program learns) |
| tictactoe.dat | contains data for computer player 1 and is the same data used during user vs computer game |
| tictactoe2.dat | contains data for computer player 2 during computer vs computer game |