bb4 / bb4-Q-learning

A generic Q-Learning with an example Tic-Tac-Toe implementation which uses it
MIT License
2 stars 0 forks source link

make q-learning into generic library independent from TTT #2

Closed barrybecker4 closed 6 years ago

barrybecker4 commented 6 years ago

Currently its tied to tic tac toe, but it does not need to be. Tic tac toe can be used as an example in the tests, but q-learning itself should be a completely generic reinforcement learning strategy that can be applied to a variety of domains.

barrybecker4 commented 6 years ago

Just did this. Common Q-learning is in qlearning/common. The TicTacToe implementation provides and example of how it can be used.