File size: 489 Bytes
1d98478 175489c 1d98478 175489c 1d98478 175489c 1d98478 175489c 1d98478 175489c 1d98478 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
---
license: mit
tags:
- chess
- reinforcement-learning
- pytorch
---
# ChessHacks Model
Neural network trained to play chess using PyTorch.
## Model Architecture
- Convolutional neural network with residual blocks
- Policy head: predicts move probabilities
- Value head: evaluates board positions
## Usage
```python
from huggingface_hub import hf_hub_download
# Download weights
weights_path = hf_hub_download(
repo_id="HamzaAmmar/chesshacks-model",
filename="best.pt"
)
```
|