Update README.md
Browse files
README.md
CHANGED
|
@@ -15,7 +15,8 @@ tags:
|
|
| 15 |
# NeoChess
|
| 16 |

|
| 17 |
NeoChess is a self-learning chess engine written in Python. It uses PyTorch to build a neural network that evaluates chess positions, and it learns by playing games against the Stockfish engine and itself. The core learning mechanism is based on reinforcement learning principles, where the model is rewarded for winning games and penalized for losing.
|
| 18 |
-
|
|
|
|
| 19 |
## How It Works
|
| 20 |
|
| 21 |
The training process is orchestrated by the `selfchess.py` script, which follows these steps:
|
|
|
|
| 15 |
# NeoChess
|
| 16 |

|
| 17 |
NeoChess is a self-learning chess engine written in Python. It uses PyTorch to build a neural network that evaluates chess positions, and it learns by playing games against the Stockfish engine and itself. The core learning mechanism is based on reinforcement learning principles, where the model is rewarded for winning games and penalized for losing.
|
| 18 |
+

|
| 19 |
+
Note that this game was played with the parameter epsilon being set to inf
|
| 20 |
## How It Works
|
| 21 |
|
| 22 |
The training process is orchestrated by the `selfchess.py` script, which follows these steps:
|