├── LICENSE ├── README.md ├── play.py ├── plot_agent_reward.py └── tictactoe ├── agent.py ├── game.py └── teacher.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfeinman/tictactoe-reinforcement-learning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfeinman/tictactoe-reinforcement-learning/HEAD/README.md -------------------------------------------------------------------------------- /play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfeinman/tictactoe-reinforcement-learning/HEAD/play.py -------------------------------------------------------------------------------- /plot_agent_reward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfeinman/tictactoe-reinforcement-learning/HEAD/plot_agent_reward.py -------------------------------------------------------------------------------- /tictactoe/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfeinman/tictactoe-reinforcement-learning/HEAD/tictactoe/agent.py -------------------------------------------------------------------------------- /tictactoe/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfeinman/tictactoe-reinforcement-learning/HEAD/tictactoe/game.py -------------------------------------------------------------------------------- /tictactoe/teacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfeinman/tictactoe-reinforcement-learning/HEAD/tictactoe/teacher.py --------------------------------------------------------------------------------