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

https://github.com/honzabrecka/q-p

Yet another implementation of tic-tac-toe game using Q-learning.
https://github.com/honzabrecka/q-p

clojurescript machine-learning q-learning tictactoe

Last synced: 2 months ago
JSON representation

Yet another implementation of tic-tac-toe game using Q-learning.

Awesome Lists containing this project

README

          

# q-p

Yet another implementation of tic-tac-toe game using Q-learning.

## Usage

```cljs
(let [{:keys [x o]} (train q-player q-player 200000)]
(play x o))
```

## Next steps

Implement neural network to be able to handle larger grids & more complex states generally.