├── images ├── image 1 .png ├── image 2.png ├── image 3.png ├── image 4.png ├── image 5.png ├── image 6_cw.png ├── image 7_cw.png ├── image 8_cw.png └── image 9_emptyboard.png ├── Implementation of Tic-Tac-Toe Game using Q-learning Algorithm.pptx ├── README.md └── LICENSE /images/image 1 .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayasurya-Marasani/Tic-Tac-Toe-game-using-Q-Learning-Algorithm/HEAD/images/image 1 .png -------------------------------------------------------------------------------- /images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayasurya-Marasani/Tic-Tac-Toe-game-using-Q-Learning-Algorithm/HEAD/images/image 2.png -------------------------------------------------------------------------------- /images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayasurya-Marasani/Tic-Tac-Toe-game-using-Q-Learning-Algorithm/HEAD/images/image 3.png -------------------------------------------------------------------------------- /images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayasurya-Marasani/Tic-Tac-Toe-game-using-Q-Learning-Algorithm/HEAD/images/image 4.png -------------------------------------------------------------------------------- /images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayasurya-Marasani/Tic-Tac-Toe-game-using-Q-Learning-Algorithm/HEAD/images/image 5.png -------------------------------------------------------------------------------- /images/image 6_cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayasurya-Marasani/Tic-Tac-Toe-game-using-Q-Learning-Algorithm/HEAD/images/image 6_cw.png -------------------------------------------------------------------------------- /images/image 7_cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayasurya-Marasani/Tic-Tac-Toe-game-using-Q-Learning-Algorithm/HEAD/images/image 7_cw.png -------------------------------------------------------------------------------- /images/image 8_cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayasurya-Marasani/Tic-Tac-Toe-game-using-Q-Learning-Algorithm/HEAD/images/image 8_cw.png -------------------------------------------------------------------------------- /images/image 9_emptyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayasurya-Marasani/Tic-Tac-Toe-game-using-Q-Learning-Algorithm/HEAD/images/image 9_emptyboard.png -------------------------------------------------------------------------------- /Implementation of Tic-Tac-Toe Game using Q-learning Algorithm.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jayasurya-Marasani/Tic-Tac-Toe-game-using-Q-Learning-Algorithm/HEAD/Implementation of Tic-Tac-Toe Game using Q-learning Algorithm.pptx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Tic-Tac-Toe Game using Q-Learning Algorithm 2 | 3 | This repository contains a Python implementation of the Tic-Tac-Toe game utilizing the Q-Learning Algorithm. 4 | 5 | ## Demo Video 6 | 7 | Check out the [demo video on YouTube](https://youtu.be/FI3J_-dPZDQ?si=LhwXkO07p_lPM75S) for a visual overview. 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Jayasurya Marasani 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------